7
|
1 /* edit.c */
|
|
2 int edit __ARGS((int cmdchar, int startln, long count));
|
|
3 void edit_putchar __ARGS((int c, int highlight));
|
|
4 void edit_unputchar __ARGS((void));
|
|
5 void display_dollar __ARGS((colnr_T col));
|
|
6 void change_indent __ARGS((int type, int amount, int round, int replaced));
|
|
7 void truncate_spaces __ARGS((char_u *line));
|
|
8 void backspace_until_column __ARGS((int col));
|
|
9 int vim_is_ctrl_x_key __ARGS((int c));
|
|
10 int ins_compl_add_infercase __ARGS((char_u *str, int len, char_u *fname, int dir, int reuse));
|
|
11 char_u *find_word_start __ARGS((char_u *ptr));
|
|
12 char_u *find_word_end __ARGS((char_u *ptr));
|
|
13 void ins_compl_check_keys __ARGS((void));
|
|
14 int get_literal __ARGS((void));
|
|
15 void insertchar __ARGS((int c, int flags, int second_indent));
|
|
16 void auto_format __ARGS((int trailblank, int prev_line));
|
|
17 int comp_textwidth __ARGS((int ff));
|
|
18 int stop_arrow __ARGS((void));
|
|
19 void set_last_insert __ARGS((int c));
|
|
20 char_u *add_char2buf __ARGS((int c, char_u *s));
|
|
21 void beginline __ARGS((int flags));
|
|
22 int oneright __ARGS((void));
|
|
23 int oneleft __ARGS((void));
|
|
24 int cursor_up __ARGS((long n, int upd_topline));
|
|
25 int cursor_down __ARGS((long n, int upd_topline));
|
|
26 int stuff_inserted __ARGS((int c, long count, int no_esc));
|
|
27 char_u *get_last_insert __ARGS((void));
|
|
28 char_u *get_last_insert_save __ARGS((void));
|
|
29 void replace_push __ARGS((int c));
|
|
30 void fixthisline __ARGS((int (*get_the_indent)(void)));
|
|
31 void fix_indent __ARGS((void));
|
|
32 int in_cinkeys __ARGS((int keytyped, int when, int line_is_empty));
|
|
33 int hkmap __ARGS((int c));
|
|
34 void ins_scroll __ARGS((void));
|
|
35 void ins_horscroll __ARGS((void));
|
|
36 /* vim: set ft=c : */
|