diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-06-25 13:57:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-06-25 13:57:36 +0200 |
commit | 3a304b23823b089e499063e8211c5695d049f3ba (patch) | |
tree | 32c354f574f5ac9d51d7bcccb43c8c6604669300 /src/proto | |
parent | 74db34cc9162445e3d500ab2d61c5c19ce9af0ca (diff) | |
download | vim-git-3a304b23823b089e499063e8211c5695d049f3ba.tar.gz |
patch 7.4.754v7.4.754
Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson)
Solution: Make it increment all numbers in the Visual area. (Christian
Brabandt)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ops.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ops.pro b/src/proto/ops.pro index c1a1b455e..f9b53c08f 100644 --- a/src/proto/ops.pro +++ b/src/proto/ops.pro @@ -43,7 +43,7 @@ void op_formatexpr __ARGS((oparg_T *oap)); int fex_format __ARGS((linenr_T lnum, long count, int c)); void format_lines __ARGS((linenr_T line_count, int avoid_fex)); int paragraph_start __ARGS((linenr_T lnum)); -int do_addsub __ARGS((int command, linenr_T Prenum1)); +int do_addsub __ARGS((int command, linenr_T Prenum1, int g_cmd)); int read_viminfo_register __ARGS((vir_T *virp, int force)); void write_viminfo_registers __ARGS((FILE *fp)); void x11_export_final_selection __ARGS((void)); |