Mercurial > vim
annotate src/proto/ops.pro @ 18672:a96d6ea9f73e
Added tag v8.1.2327 for changeset df141c730008081d329890595cb3b8350ebd611f
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 21 Nov 2019 17:15:04 +0100 |
parents | fe5afdc03bd2 |
children | 00a1b89256ea |
rev | line source |
---|---|
7 | 1 /* ops.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2 int get_op_type(int char1, int char2); |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
3 int op_is_change(int op); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
4 int get_op_char(int optype); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5 int get_extra_op_char(int optype); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
6 void op_shift(oparg_T *oap, int curs_top, int amount); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
7 void shift_line(int left, int round, int amount, int call_changed_bytes); |
18164
f57481564f2c
patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
8 void stuffescaped(char_u *arg, int literally); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
9 int op_delete(oparg_T *oap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
10 int op_replace(oparg_T *oap, int c); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
11 int swapchar(int op_type, pos_T *pos); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
12 void op_insert(oparg_T *oap, long count1); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
13 int op_change(oparg_T *oap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
14 void adjust_cursor_eol(void); |
11131
8d9ecf09183a
patch 8.0.0453: adding fold marker creates new comment
Christian Brabandt <cb@256bit.org>
parents:
10827
diff
changeset
|
15 char_u *skip_comment(char_u *line, int process, int include_space, int *is_comment); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
16 int do_join(long count, int insert_space, int save_undo, int use_formatoptions, int setmark); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
17 int fex_format(linenr_T lnum, long count, int c); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
18 void format_lines(linenr_T line_count, int avoid_fex); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
19 int paragraph_start(linenr_T lnum); |
18164
f57481564f2c
patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
20 void block_prep(oparg_T *oap, struct block_def *bdp, linenr_T lnum, int is_del); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
21 void op_addsub(oparg_T *oap, linenr_T Prenum1, int g_cmd); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
22 void x11_export_final_selection(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
23 void clear_oparg(oparg_T *oap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
24 void cursor_pos_info(dict_T *dict); |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18164
diff
changeset
|
25 void do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank); |
7 | 26 /* vim: set ft=c : */ |