Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* normal.c */ |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 2 | void init_normal_cmds __ARGS((void)); |
| 3 | void normal_cmd __ARGS((oparg_T *oap, int toplevel)); |
| 4 | void do_pending_operator __ARGS((cmdarg_T *cap, int old_col, int gui_yank)); |
| 5 | int do_mouse __ARGS((oparg_T *oap, int c, int dir, long count, int fixindent)); |
| 6 | void check_visual_highlight __ARGS((void)); |
| 7 | void end_visual_mode __ARGS((void)); |
| 8 | void reset_VIsual_and_resel __ARGS((void)); |
| 9 | void reset_VIsual __ARGS((void)); |
| 10 | int find_ident_under_cursor __ARGS((char_u **string, int find_type)); |
| 11 | int find_ident_at_pos __ARGS((win_T *wp, linenr_T lnum, colnr_T startcol, char_u **string, int find_type)); |
| 12 | void clear_showcmd __ARGS((void)); |
| 13 | int add_to_showcmd __ARGS((int c)); |
| 14 | void add_to_showcmd_c __ARGS((int c)); |
| 15 | void push_showcmd __ARGS((void)); |
| 16 | void pop_showcmd __ARGS((void)); |
| 17 | void do_check_scrollbind __ARGS((int check)); |
| 18 | void check_scrollbind __ARGS((linenr_T topline_diff, long leftcol_diff)); |
| 19 | int find_decl __ARGS((char_u *ptr, int len, int locally, int thisblock, int searchflags)); |
| 20 | void scroll_redraw __ARGS((int up, long count)); |
| 21 | void handle_tabmenu __ARGS((void)); |
| 22 | void do_nv_ident __ARGS((int c1, int c2)); |
| 23 | int get_visual_text __ARGS((cmdarg_T *cap, char_u **pp, int *lenp)); |
| 24 | void start_selection __ARGS((void)); |
| 25 | void may_start_select __ARGS((int c)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 26 | /* vim: set ft=c : */ |