Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame^] | 1 | /* move.c */ |
| 2 | void update_topline_redraw __ARGS((void)); |
| 3 | void update_topline __ARGS((void)); |
| 4 | void update_curswant __ARGS((void)); |
| 5 | void check_cursor_moved __ARGS((win_T *wp)); |
| 6 | void changed_window_setting __ARGS((void)); |
| 7 | void changed_window_setting_win __ARGS((win_T *wp)); |
| 8 | void set_topline __ARGS((win_T *wp, linenr_T lnum)); |
| 9 | void changed_cline_bef_curs __ARGS((void)); |
| 10 | void changed_cline_bef_curs_win __ARGS((win_T *wp)); |
| 11 | void changed_line_abv_curs __ARGS((void)); |
| 12 | void changed_line_abv_curs_win __ARGS((win_T *wp)); |
| 13 | void validate_botline __ARGS((void)); |
| 14 | void invalidate_botline __ARGS((void)); |
| 15 | void invalidate_botline_win __ARGS((win_T *wp)); |
| 16 | void approximate_botline_win __ARGS((win_T *wp)); |
| 17 | int cursor_valid __ARGS((void)); |
| 18 | void validate_cursor __ARGS((void)); |
| 19 | void validate_cline_row __ARGS((void)); |
| 20 | void validate_virtcol __ARGS((void)); |
| 21 | void validate_virtcol_win __ARGS((win_T *wp)); |
| 22 | void validate_cursor_col __ARGS((void)); |
| 23 | int win_col_off __ARGS((win_T *wp)); |
| 24 | int curwin_col_off __ARGS((void)); |
| 25 | int win_col_off2 __ARGS((win_T *wp)); |
| 26 | int curwin_col_off2 __ARGS((void)); |
| 27 | void curs_columns __ARGS((int scroll)); |
| 28 | void scrolldown __ARGS((long line_count, int byfold)); |
| 29 | void scrollup __ARGS((long line_count, int byfold)); |
| 30 | void check_topfill __ARGS((win_T *wp, int down)); |
| 31 | void scrolldown_clamp __ARGS((void)); |
| 32 | void scrollup_clamp __ARGS((void)); |
| 33 | void scroll_cursor_top __ARGS((int min_scroll, int always)); |
| 34 | void set_empty_rows __ARGS((win_T *wp, int used)); |
| 35 | void scroll_cursor_bot __ARGS((int min_scroll, int set_topbot)); |
| 36 | void scroll_cursor_halfway __ARGS((int atend)); |
| 37 | void cursor_correct __ARGS((void)); |
| 38 | int onepage __ARGS((int dir, long count)); |
| 39 | void halfpage __ARGS((int flag, linenr_T Prenum)); |
| 40 | /* vim: set ft=c : */ |