diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-21 20:48:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-21 20:48:04 +0200 |
commit | b20b9e14ddd8db111e886ad0494e15b955159426 (patch) | |
tree | 81bf23be4dbc17d4b793a29f3252448f5f1e7322 /src/proto/edit.pro | |
parent | 4d5c12626c98df23e1a5d953692d946310ddfa9c (diff) | |
download | vim-git-b20b9e14ddd8db111e886ad0494e15b955159426.tar.gz |
patch 8.1.2062: the mouse code is spread outv8.1.2062
Problem: The mouse code is spread out.
Solution: Move all the mouse code to mouse.c. (Yegappan Lakshmanan,
closes #4959)
Diffstat (limited to 'src/proto/edit.pro')
-rw-r--r-- | src/proto/edit.pro | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/proto/edit.pro b/src/proto/edit.pro index db9cf3df6..f1ab20500 100644 --- a/src/proto/edit.pro +++ b/src/proto/edit.pro @@ -7,6 +7,7 @@ char_u *prompt_text(void); int prompt_curpos_editable(void); void edit_unputchar(void); void display_dollar(colnr_T col); +void undisplay_dollar(void); void change_indent(int type, int amount, int round, int replaced, int call_changed_bytes); void truncate_spaces(char_u *line); void backspace_until_column(int col); @@ -36,6 +37,7 @@ void ins_horscroll(void); int ins_eol(int c); int ins_copychar(linenr_T lnum); colnr_T get_nolist_virtcol(void); -int can_cindent_get(void); +int get_can_cindent(void); +void set_can_cindent(int val); int ins_apply_autocmds(event_T event); /* vim: set ft=c : */ |