Mercurial > vim
annotate src/proto/move.pro @ 7266:6ba7182fb7bd v7.4.941
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 24 18:48:14 2015 +0100
patch 7.4.941
Problem: There is no way to ignore case only for tag searches.
Solution: Add the 'tagcase' option. (Gary Johnson)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 24 Nov 2015 19:00:06 +0100 |
parents | 9e119e0ade5d |
children | 21b0a39d13ed |
rev | line source |
---|---|
7 | 1 /* move.c */ |
1125 | 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)); | |
3929 | 27 void curs_columns __ARGS((int may_scroll)); |
1125 | 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)); | |
2340
99c1eba60b2d
Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
40 void do_check_cursorbind __ARGS((void)); |
7 | 41 /* vim: set ft=c : */ |