diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-05 21:29:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-05 21:29:01 +0200 |
commit | 8d3b51084a5bdcd2ee9e31bc03cba0d16c43d428 (patch) | |
tree | 9d639842238d3d284834750ef03b4bc6e550903e /src/proto/normal.pro | |
parent | a0d1fef4ebb693696464c5e22e33269f724b8e0e (diff) | |
download | vim-git-8d3b51084a5bdcd2ee9e31bc03cba0d16c43d428.tar.gz |
patch 8.1.1988: :startinsert! does not work the same way as "A"v8.1.1988
Problem: :startinsert! does not work the same way as "A".
Solution: Use the same code to move the cursor. (closes #4896)
Diffstat (limited to 'src/proto/normal.pro')
-rw-r--r-- | src/proto/normal.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/normal.pro b/src/proto/normal.pro index cc4bf7dfc..dd6222609 100644 --- a/src/proto/normal.pro +++ b/src/proto/normal.pro @@ -23,4 +23,5 @@ void do_nv_ident(int c1, int c2); int get_visual_text(cmdarg_T *cap, char_u **pp, int *lenp); void start_selection(void); void may_start_select(int c); +void set_cursor_for_append_to_line(void); /* vim: set ft=c : */ |