comparison src/proto/ops.pro @ 34387:e6defaa1e46a v9.1.0120

patch 9.1.0120: hard to get visual region using Vim script Commit: https://github.com/vim/vim/commit/3f905ab3c4f66562f4a224bf00f49d98a0b0da91 Author: Shougo Matsushita <Shougo.Matsu@gmail.com> Date: Wed Feb 21 00:02:45 2024 +0100 patch 9.1.0120: hard to get visual region using Vim script Problem: hard to get visual region using Vim script Solution: Add getregion() Vim script function (Shougo Matsushita, Jakub ?uczy?ski) closes: #13998 closes: #11579 Co-authored-by: =?UTF-8?q?Jakub=20=C5=81uczy=C5=84ski?= <doubleloop@o2.pl> Co-authored-by: Shougo Matsushita <Shougo.Matsu@gmail.com> Signed-off-by: Shougo Matsushita <Shougo.Matsu@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 21 Feb 2024 00:15:02 +0100
parents ca6bc7c04163
children
comparison
equal deleted inserted replaced
34386:d9a589d77d3e 34387:e6defaa1e46a
12 int op_change(oparg_T *oap); 12 int op_change(oparg_T *oap);
13 void adjust_cursor_eol(void); 13 void adjust_cursor_eol(void);
14 char_u *skip_comment(char_u *line, int process, int include_space, int *is_comment); 14 char_u *skip_comment(char_u *line, int process, int include_space, int *is_comment);
15 int do_join(long count, int insert_space, int save_undo, int use_formatoptions, int setmark); 15 int do_join(long count, int insert_space, int save_undo, int use_formatoptions, int setmark);
16 void block_prep(oparg_T *oap, struct block_def *bdp, linenr_T lnum, int is_del); 16 void block_prep(oparg_T *oap, struct block_def *bdp, linenr_T lnum, int is_del);
17 void charwise_block_prep(pos_T start, pos_T end, struct block_def *bdp, linenr_T lnum, int inclusive);
17 void op_addsub(oparg_T *oap, linenr_T Prenum1, int g_cmd); 18 void op_addsub(oparg_T *oap, linenr_T Prenum1, int g_cmd);
18 void clear_oparg(oparg_T *oap); 19 void clear_oparg(oparg_T *oap);
19 void cursor_pos_info(dict_T *dict); 20 void cursor_pos_info(dict_T *dict);
20 char *did_set_operatorfunc(optset_T *args); 21 char *did_set_operatorfunc(optset_T *args);
21 void free_operatorfunc_option(void); 22 void free_operatorfunc_option(void);