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