Mercurial > vim
annotate src/normal.c @ 26527:c9231e446fa0
Added tag v8.2.3792 for changeset 33d680d372aa2a38069e01eafd3804cf79e2254c
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 12 Dec 2021 21:15:04 +0100 |
parents | 9596c652420b |
children | 255bc9a08e58 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 /* | |
10 * normal.c: Contains the main routine for processing characters in command | |
11 * mode. Communicates closely with the code in ops.c to handle | |
12 * the operators. | |
13 */ | |
14 | |
15 #include "vim.h" | |
16 | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
17 static int VIsual_mode_orig = NUL; // saved Visual mode |
7 | 18 |
2667 | 19 #ifdef FEAT_EVAL |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
20 static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount); |
2667 | 21 #endif |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
16598
diff
changeset
|
22 static int nv_compare(const void *s1, const void *s2); |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
23 static void unshift_special(cmdarg_T *cap); |
7 | 24 #ifdef FEAT_CMDL_INFO |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
25 static void del_from_showcmd(int); |
7 | 26 #endif |
27 | |
28 /* | |
29 * nv_*(): functions called to handle Normal and Visual mode commands. | |
30 * n_*(): functions called to handle Normal mode commands. | |
31 * v_*(): functions called to handle Visual mode commands. | |
32 */ | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
33 static void nv_ignore(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
34 static void nv_nop(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
35 static void nv_error(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
36 static void nv_help(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
37 static void nv_addsub(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
38 static void nv_page(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
39 static void nv_zet(cmdarg_T *cap); |
7 | 40 #ifdef FEAT_GUI |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
41 static void nv_ver_scrollbar(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
42 static void nv_hor_scrollbar(cmdarg_T *cap); |
7 | 43 #endif |
685 | 44 #ifdef FEAT_GUI_TABLINE |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
45 static void nv_tabline(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
46 static void nv_tabmenu(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
47 #endif |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
48 static void nv_exmode(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
49 static void nv_colon(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
50 static void nv_ctrlg(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
51 static void nv_ctrlh(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
52 static void nv_clear(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
53 static void nv_ctrlo(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
54 static void nv_hat(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
55 static void nv_Zet(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
56 static void nv_ident(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
57 static void nv_tagpop(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
58 static void nv_scroll(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
59 static void nv_right(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
60 static void nv_left(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
61 static void nv_up(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
62 static void nv_down(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
63 static void nv_end(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
64 static void nv_dollar(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
65 static void nv_search(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
66 static void nv_next(cmdarg_T *cap); |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
67 static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt, int *wrapped); |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
68 static void nv_csearch(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
69 static void nv_brackets(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
70 static void nv_percent(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
71 static void nv_brace(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
72 static void nv_mark(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
73 static void nv_findpar(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
74 static void nv_undo(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
75 static void nv_kundo(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
76 static void nv_Replace(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
77 static void nv_replace(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
78 static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
79 static void v_visop(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
80 static void nv_subst(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
81 static void nv_abbrev(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
82 static void nv_optrans(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
83 static void nv_gomark(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
84 static void nv_pcmark(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
85 static void nv_regname(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
86 static void nv_visual(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
87 static void n_start_visual_mode(int c); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
88 static void nv_window(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
89 static void nv_suspend(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
90 static void nv_g_cmd(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
91 static void nv_dot(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
92 static void nv_redo(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
93 static void nv_Undo(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
94 static void nv_tilde(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
95 static void nv_operator(cmdarg_T *cap); |
1490 | 96 #ifdef FEAT_EVAL |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
97 static void set_op_var(int optype); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
98 #endif |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
99 static void nv_lineop(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
100 static void nv_home(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
101 static void nv_pipe(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
102 static void nv_bck_word(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
103 static void nv_wordcmd(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
104 static void nv_beginline(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
105 static void adjust_cursor(oparg_T *oap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
106 static void adjust_for_sel(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
107 static void nv_select(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
108 static void nv_goto(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
109 static void nv_normal(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
110 static void nv_esc(cmdarg_T *oap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
111 static void nv_edit(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
112 static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln); |
7 | 113 #ifdef FEAT_TEXTOBJ |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
114 static void nv_object(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
115 #endif |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
116 static void nv_record(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
117 static void nv_at(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
118 static void nv_halfpage(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
119 static void nv_join(cmdarg_T *cap); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
120 static void nv_put(cmdarg_T *cap); |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
121 static void nv_put_opt(cmdarg_T *cap, int fix_indent); |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
122 static void nv_open(cmdarg_T *cap); |
7 | 123 #ifdef FEAT_NETBEANS_INTG |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
124 static void nv_nbcmd(cmdarg_T *cap); |
7 | 125 #endif |
126 #ifdef FEAT_DND | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
127 static void nv_drop(cmdarg_T *cap); |
7 | 128 #endif |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
129 static void nv_cursorhold(cmdarg_T *cap); |
7 | 130 |
1728 | 131 static char *e_noident = N_("E349: No identifier under cursor"); |
132 | |
7 | 133 /* |
134 * Function to be called for a Normal or Visual mode command. | |
135 * The argument is a cmdarg_T. | |
136 */ | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
137 typedef void (*nv_func_T)(cmdarg_T *cap); |
7 | 138 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
139 // Values for cmd_flags. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
140 #define NV_NCH 0x01 // may need to get a second char |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
141 #define NV_NCH_NOP (0x02|NV_NCH) // get second char when no operator pending |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
142 #define NV_NCH_ALW (0x04|NV_NCH) // always get a second char |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
143 #define NV_LANG 0x08 // second char needs language adjustment |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
144 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
145 #define NV_SS 0x10 // may start selection |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
146 #define NV_SSS 0x20 // may start selection with shift modifier |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
147 #define NV_STS 0x40 // may stop selection without shift modif. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
148 #define NV_RL 0x80 // 'rightleft' modifies command |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
149 #define NV_KEEPREG 0x100 // don't clear regname |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
150 #define NV_NCW 0x200 // not allowed in command-line window |
7 | 151 |
152 /* | |
153 * Generally speaking, every Normal mode command should either clear any | |
154 * pending operator (with *clearop*()), or set the motion type variable | |
155 * oap->motion_type. | |
156 * | |
157 * When a cursor motion command is made, it is marked as being a character or | |
158 * line oriented motion. Then, if an operator is in effect, the operation | |
159 * becomes character or line oriented accordingly. | |
160 */ | |
161 | |
162 /* | |
163 * This table contains one entry for every Normal or Visual mode command. | |
164 * The order doesn't matter, init_normal_cmds() will create a sorted index. | |
165 * It is faster when all keys from zero to '~' are present. | |
166 */ | |
167 static const struct nv_cmd | |
168 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
169 int cmd_char; // (first) command character |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
170 nv_func_T cmd_func; // function for this command |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
171 short_u cmd_flags; // NV_ flags |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
172 short cmd_arg; // value for ca.arg |
7 | 173 } nv_cmds[] = |
174 { | |
175 {NUL, nv_error, 0, 0}, | |
176 {Ctrl_A, nv_addsub, 0, 0}, | |
177 {Ctrl_B, nv_page, NV_STS, BACKWARD}, | |
178 {Ctrl_C, nv_esc, 0, TRUE}, | |
179 {Ctrl_D, nv_halfpage, 0, 0}, | |
180 {Ctrl_E, nv_scroll_line, 0, TRUE}, | |
181 {Ctrl_F, nv_page, NV_STS, FORWARD}, | |
182 {Ctrl_G, nv_ctrlg, 0, 0}, | |
183 {Ctrl_H, nv_ctrlh, 0, 0}, | |
184 {Ctrl_I, nv_pcmark, 0, 0}, | |
185 {NL, nv_down, 0, FALSE}, | |
186 {Ctrl_K, nv_error, 0, 0}, | |
187 {Ctrl_L, nv_clear, 0, 0}, | |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
188 {CAR, nv_down, 0, TRUE}, |
7 | 189 {Ctrl_N, nv_down, NV_STS, FALSE}, |
190 {Ctrl_O, nv_ctrlo, 0, 0}, | |
191 {Ctrl_P, nv_up, NV_STS, FALSE}, | |
167 | 192 {Ctrl_Q, nv_visual, 0, FALSE}, |
7 | 193 {Ctrl_R, nv_redo, 0, 0}, |
194 {Ctrl_S, nv_ignore, 0, 0}, | |
195 {Ctrl_T, nv_tagpop, NV_NCW, 0}, | |
196 {Ctrl_U, nv_halfpage, 0, 0}, | |
197 {Ctrl_V, nv_visual, 0, FALSE}, | |
198 {'V', nv_visual, 0, FALSE}, | |
199 {'v', nv_visual, 0, FALSE}, | |
200 {Ctrl_W, nv_window, 0, 0}, | |
201 {Ctrl_X, nv_addsub, 0, 0}, | |
202 {Ctrl_Y, nv_scroll_line, 0, FALSE}, | |
203 {Ctrl_Z, nv_suspend, 0, 0}, | |
204 {ESC, nv_esc, 0, FALSE}, | |
205 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0}, | |
206 {Ctrl_RSB, nv_ident, NV_NCW, 0}, | |
207 {Ctrl_HAT, nv_hat, NV_NCW, 0}, | |
208 {Ctrl__, nv_error, 0, 0}, | |
209 {' ', nv_right, 0, 0}, | |
210 {'!', nv_operator, 0, 0}, | |
211 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0}, | |
212 {'#', nv_ident, 0, 0}, | |
213 {'$', nv_dollar, 0, 0}, | |
214 {'%', nv_percent, 0, 0}, | |
215 {'&', nv_optrans, 0, 0}, | |
216 {'\'', nv_gomark, NV_NCH_ALW, TRUE}, | |
217 {'(', nv_brace, 0, BACKWARD}, | |
218 {')', nv_brace, 0, FORWARD}, | |
219 {'*', nv_ident, 0, 0}, | |
220 {'+', nv_down, 0, TRUE}, | |
221 {',', nv_csearch, 0, TRUE}, | |
222 {'-', nv_up, 0, TRUE}, | |
223 {'.', nv_dot, NV_KEEPREG, 0}, | |
224 {'/', nv_search, 0, FALSE}, | |
225 {'0', nv_beginline, 0, 0}, | |
226 {'1', nv_ignore, 0, 0}, | |
227 {'2', nv_ignore, 0, 0}, | |
228 {'3', nv_ignore, 0, 0}, | |
229 {'4', nv_ignore, 0, 0}, | |
230 {'5', nv_ignore, 0, 0}, | |
231 {'6', nv_ignore, 0, 0}, | |
232 {'7', nv_ignore, 0, 0}, | |
233 {'8', nv_ignore, 0, 0}, | |
234 {'9', nv_ignore, 0, 0}, | |
235 {':', nv_colon, 0, 0}, | |
236 {';', nv_csearch, 0, FALSE}, | |
237 {'<', nv_operator, NV_RL, 0}, | |
238 {'=', nv_operator, 0, 0}, | |
239 {'>', nv_operator, NV_RL, 0}, | |
240 {'?', nv_search, 0, FALSE}, | |
241 {'@', nv_at, NV_NCH_NOP, FALSE}, | |
242 {'A', nv_edit, 0, 0}, | |
243 {'B', nv_bck_word, 0, 1}, | |
244 {'C', nv_abbrev, NV_KEEPREG, 0}, | |
245 {'D', nv_abbrev, NV_KEEPREG, 0}, | |
246 {'E', nv_wordcmd, 0, TRUE}, | |
247 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD}, | |
248 {'G', nv_goto, 0, TRUE}, | |
249 {'H', nv_scroll, 0, 0}, | |
250 {'I', nv_edit, 0, 0}, | |
251 {'J', nv_join, 0, 0}, | |
252 {'K', nv_ident, 0, 0}, | |
253 {'L', nv_scroll, 0, 0}, | |
254 {'M', nv_scroll, 0, 0}, | |
255 {'N', nv_next, 0, SEARCH_REV}, | |
256 {'O', nv_open, 0, 0}, | |
257 {'P', nv_put, 0, 0}, | |
258 {'Q', nv_exmode, NV_NCW, 0}, | |
259 {'R', nv_Replace, 0, FALSE}, | |
260 {'S', nv_subst, NV_KEEPREG, 0}, | |
261 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD}, | |
262 {'U', nv_Undo, 0, 0}, | |
263 {'W', nv_wordcmd, 0, TRUE}, | |
264 {'X', nv_abbrev, NV_KEEPREG, 0}, | |
265 {'Y', nv_abbrev, NV_KEEPREG, 0}, | |
266 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0}, | |
267 {'[', nv_brackets, NV_NCH_ALW, BACKWARD}, | |
268 {'\\', nv_error, 0, 0}, | |
269 {']', nv_brackets, NV_NCH_ALW, FORWARD}, | |
270 {'^', nv_beginline, 0, BL_WHITE | BL_FIX}, | |
271 {'_', nv_lineop, 0, 0}, | |
272 {'`', nv_gomark, NV_NCH_ALW, FALSE}, | |
273 {'a', nv_edit, NV_NCH, 0}, | |
274 {'b', nv_bck_word, 0, 0}, | |
275 {'c', nv_operator, 0, 0}, | |
276 {'d', nv_operator, 0, 0}, | |
277 {'e', nv_wordcmd, 0, FALSE}, | |
278 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD}, | |
279 {'g', nv_g_cmd, NV_NCH_ALW, FALSE}, | |
280 {'h', nv_left, NV_RL, 0}, | |
281 {'i', nv_edit, NV_NCH, 0}, | |
282 {'j', nv_down, 0, FALSE}, | |
283 {'k', nv_up, 0, FALSE}, | |
284 {'l', nv_right, NV_RL, 0}, | |
285 {'m', nv_mark, NV_NCH_NOP, 0}, | |
286 {'n', nv_next, 0, 0}, | |
287 {'o', nv_open, 0, 0}, | |
288 {'p', nv_put, 0, 0}, | |
289 {'q', nv_record, NV_NCH, 0}, | |
290 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0}, | |
291 {'s', nv_subst, NV_KEEPREG, 0}, | |
292 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD}, | |
293 {'u', nv_undo, 0, 0}, | |
294 {'w', nv_wordcmd, 0, FALSE}, | |
295 {'x', nv_abbrev, NV_KEEPREG, 0}, | |
296 {'y', nv_operator, 0, 0}, | |
297 {'z', nv_zet, NV_NCH_ALW, 0}, | |
298 {'{', nv_findpar, 0, BACKWARD}, | |
299 {'|', nv_pipe, 0, 0}, | |
300 {'}', nv_findpar, 0, FORWARD}, | |
301 {'~', nv_tilde, 0, 0}, | |
302 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
303 // pound sign |
7 | 304 {POUND, nv_ident, 0, 0}, |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
305 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
306 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
307 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT}, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
308 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT}, |
7 | 309 {K_LEFTMOUSE, nv_mouse, 0, 0}, |
310 {K_LEFTMOUSE_NM, nv_mouse, 0, 0}, | |
311 {K_LEFTDRAG, nv_mouse, 0, 0}, | |
312 {K_LEFTRELEASE, nv_mouse, 0, 0}, | |
313 {K_LEFTRELEASE_NM, nv_mouse, 0, 0}, | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
314 {K_MOUSEMOVE, nv_mouse, 0, 0}, |
7 | 315 {K_MIDDLEMOUSE, nv_mouse, 0, 0}, |
316 {K_MIDDLEDRAG, nv_mouse, 0, 0}, | |
317 {K_MIDDLERELEASE, nv_mouse, 0, 0}, | |
318 {K_RIGHTMOUSE, nv_mouse, 0, 0}, | |
319 {K_RIGHTDRAG, nv_mouse, 0, 0}, | |
320 {K_RIGHTRELEASE, nv_mouse, 0, 0}, | |
321 {K_X1MOUSE, nv_mouse, 0, 0}, | |
322 {K_X1DRAG, nv_mouse, 0, 0}, | |
323 {K_X1RELEASE, nv_mouse, 0, 0}, | |
324 {K_X2MOUSE, nv_mouse, 0, 0}, | |
325 {K_X2DRAG, nv_mouse, 0, 0}, | |
326 {K_X2RELEASE, nv_mouse, 0, 0}, | |
819 | 327 {K_IGNORE, nv_ignore, NV_KEEPREG, 0}, |
620 | 328 {K_NOP, nv_nop, 0, 0}, |
7 | 329 {K_INS, nv_edit, 0, 0}, |
330 {K_KINS, nv_edit, 0, 0}, | |
331 {K_BS, nv_ctrlh, 0, 0}, | |
332 {K_UP, nv_up, NV_SSS|NV_STS, FALSE}, | |
333 {K_S_UP, nv_page, NV_SS, BACKWARD}, | |
334 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE}, | |
335 {K_S_DOWN, nv_page, NV_SS, FORWARD}, | |
336 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0}, | |
337 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0}, | |
338 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1}, | |
339 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0}, | |
340 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE}, | |
341 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE}, | |
342 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD}, | |
343 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD}, | |
344 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD}, | |
345 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD}, | |
346 {K_END, nv_end, NV_SSS|NV_STS, FALSE}, | |
347 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE}, | |
348 {K_S_END, nv_end, NV_SS, FALSE}, | |
349 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE}, | |
350 {K_HOME, nv_home, NV_SSS|NV_STS, 0}, | |
351 {K_KHOME, nv_home, NV_SSS|NV_STS, 0}, | |
352 {K_S_HOME, nv_home, NV_SS, 0}, | |
353 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE}, | |
354 {K_DEL, nv_abbrev, 0, 0}, | |
355 {K_KDEL, nv_abbrev, 0, 0}, | |
356 {K_UNDO, nv_kundo, 0, 0}, | |
357 {K_HELP, nv_help, NV_NCW, 0}, | |
358 {K_F1, nv_help, NV_NCW, 0}, | |
359 {K_XF1, nv_help, NV_NCW, 0}, | |
360 {K_SELECT, nv_select, 0, 0}, | |
361 #ifdef FEAT_GUI | |
362 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0}, | |
363 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0}, | |
364 #endif | |
685 | 365 #ifdef FEAT_GUI_TABLINE |
366 {K_TABLINE, nv_tabline, 0, 0}, | |
686 | 367 {K_TABMENU, nv_tabmenu, 0, 0}, |
685 | 368 #endif |
7 | 369 #ifdef FEAT_NETBEANS_INTG |
370 {K_F21, nv_nbcmd, NV_NCH_ALW, 0}, | |
371 #endif | |
372 #ifdef FEAT_DND | |
373 {K_DROP, nv_drop, NV_STS, 0}, | |
374 #endif | |
819 | 375 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0}, |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
376 {K_PS, nv_edit, 0, 0}, |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
377 {K_COMMAND, nv_colon, 0, 0}, |
7 | 378 }; |
379 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
380 // Number of commands in nv_cmds[]. |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
381 #define NV_CMDS_SIZE ARRAY_LENGTH(nv_cmds) |
7 | 382 |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
383 #ifndef PROTO // cproto doesn't like this |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
384 // Sorted index of commands in nv_cmds[]. |
7 | 385 static short nv_cmd_idx[NV_CMDS_SIZE]; |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
386 #endif |
7 | 387 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
388 // The highest index for which |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
389 // nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] |
7 | 390 static int nv_max_linear; |
391 | |
392 /* | |
393 * Compare functions for qsort() below, that checks the command character | |
394 * through the index in nv_cmd_idx[]. | |
395 */ | |
396 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
397 nv_compare(const void *s1, const void *s2) |
7 | 398 { |
399 int c1, c2; | |
400 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
401 // The commands are sorted on absolute value. |
7 | 402 c1 = nv_cmds[*(const short *)s1].cmd_char; |
403 c2 = nv_cmds[*(const short *)s2].cmd_char; | |
404 if (c1 < 0) | |
405 c1 = -c1; | |
406 if (c2 < 0) | |
407 c2 = -c2; | |
408 return c1 - c2; | |
409 } | |
410 | |
411 /* | |
412 * Initialize the nv_cmd_idx[] table. | |
413 */ | |
414 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
415 init_normal_cmds(void) |
7 | 416 { |
417 int i; | |
418 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
419 // Fill the index table with a one to one relation. |
1877 | 420 for (i = 0; i < (int)NV_CMDS_SIZE; ++i) |
7 | 421 nv_cmd_idx[i] = i; |
422 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
423 // Sort the commands by the command character. |
7 | 424 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare); |
425 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
426 // Find the first entry that can't be indexed by the command character. |
1877 | 427 for (i = 0; i < (int)NV_CMDS_SIZE; ++i) |
7 | 428 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char) |
429 break; | |
430 nv_max_linear = i - 1; | |
431 } | |
432 | |
433 /* | |
434 * Search for a command in the commands table. | |
435 * Returns -1 for invalid command. | |
436 */ | |
437 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
438 find_command(int cmdchar) |
7 | 439 { |
440 int i; | |
441 int idx; | |
442 int top, bot; | |
443 int c; | |
444 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
445 // A multi-byte character is never a command. |
7 | 446 if (cmdchar >= 0x100) |
447 return -1; | |
448 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
449 // We use the absolute value of the character. Special keys have a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
450 // negative value, but are sorted on their absolute value. |
7 | 451 if (cmdchar < 0) |
452 cmdchar = -cmdchar; | |
453 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
454 // If the character is in the first part: The character is the index into |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
455 // nv_cmd_idx[]. |
7 | 456 if (cmdchar <= nv_max_linear) |
457 return nv_cmd_idx[cmdchar]; | |
458 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
459 // Perform a binary search. |
7 | 460 bot = nv_max_linear + 1; |
461 top = NV_CMDS_SIZE - 1; | |
462 idx = -1; | |
463 while (bot <= top) | |
464 { | |
465 i = (top + bot) / 2; | |
466 c = nv_cmds[nv_cmd_idx[i]].cmd_char; | |
467 if (c < 0) | |
468 c = -c; | |
469 if (cmdchar == c) | |
470 { | |
471 idx = nv_cmd_idx[i]; | |
472 break; | |
473 } | |
474 if (cmdchar > c) | |
475 bot = i + 1; | |
476 else | |
477 top = i - 1; | |
478 } | |
479 return idx; | |
480 } | |
481 | |
482 /* | |
483 * Execute a command in Normal mode. | |
484 */ | |
485 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
486 normal_cmd( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
487 oparg_T *oap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
488 int toplevel UNUSED) // TRUE when called from main() |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
489 { |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
490 cmdarg_T ca; // command arguments |
7 | 491 int c; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
492 int ctrl_w = FALSE; // got CTRL-W command |
7 | 493 int old_col = curwin->w_curswant; |
494 #ifdef FEAT_CMDL_INFO | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
495 int need_flushbuf; // need to call out_flush() |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
496 #endif |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
497 pos_T old_pos; // cursor position before command |
7 | 498 int mapped_len; |
499 static int old_mapped_len = 0; | |
500 int idx; | |
1751 | 501 #ifdef FEAT_EVAL |
502 int set_prevcount = FALSE; | |
503 #endif | |
21405
5324acb43fea
patch 8.2.1253: CTRL-K in Insert mode gets <CursorHold> inserted
Bram Moolenaar <Bram@vim.org>
parents:
20754
diff
changeset
|
504 int save_did_cursorhold = did_cursorhold; |
7 | 505 |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
506 CLEAR_FIELD(ca); // also resets ca.retval |
7 | 507 ca.oap = oap; |
1692 | 508 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
509 // Use a count remembered from before entering an operator. After typing |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
510 // "3d" we return from normal_cmd() and come back here, the "3" is |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
511 // remembered in "opcount". |
7 | 512 ca.opcount = opcount; |
513 | |
514 /* | |
515 * If there is an operator pending, then the command we take this time | |
516 * will terminate it. Finish_op tells us to finish the operation before | |
517 * returning this time (unless the operation was cancelled). | |
518 */ | |
519 #ifdef CURSOR_SHAPE | |
520 c = finish_op; | |
521 #endif | |
522 finish_op = (oap->op_type != OP_NOP); | |
523 #ifdef CURSOR_SHAPE | |
524 if (finish_op != c) | |
525 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
526 ui_cursor_shape(); // may show different cursor shape |
7 | 527 # ifdef FEAT_MOUSESHAPE |
528 update_mouseshape(-1); | |
529 # endif | |
530 } | |
531 #endif | |
26042
6b39ab99e367
patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents:
25994
diff
changeset
|
532 trigger_modechanged(); |
7 | 533 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
534 // When not finishing an operator and no register name typed, reset the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
535 // count. |
7 | 536 if (!finish_op && !oap->regname) |
1751 | 537 { |
7 | 538 ca.opcount = 0; |
1751 | 539 #ifdef FEAT_EVAL |
540 set_prevcount = TRUE; | |
541 #endif | |
542 } | |
7 | 543 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
544 // Restore counts from before receiving K_CURSORHOLD. This means after |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
545 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
546 // "3 * 2". |
1692 | 547 if (oap->prev_opcount > 0 || oap->prev_count0 > 0) |
548 { | |
549 ca.opcount = oap->prev_opcount; | |
550 ca.count0 = oap->prev_count0; | |
551 oap->prev_opcount = 0; | |
552 oap->prev_count0 = 0; | |
553 } | |
554 | |
7 | 555 mapped_len = typebuf_maplen(); |
556 | |
557 State = NORMAL_BUSY; | |
558 #ifdef USE_ON_FLY_SCROLL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
559 dont_scroll = FALSE; // allow scrolling here |
7 | 560 #endif |
561 | |
2667 | 562 #ifdef FEAT_EVAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
563 // Set v:count here, when called from main() and not a stuffed |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
564 // command, so that v:count can be used in an expression mapping |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
565 // when there is no count. Do set it for redo. |
5649 | 566 if (toplevel && readbuf1_empty()) |
2667 | 567 set_vcount_ca(&ca, &set_prevcount); |
568 #endif | |
569 | |
7 | 570 /* |
571 * Get the command character from the user. | |
572 */ | |
573 c = safe_vgetc(); | |
7703
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
574 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE); |
7 | 575 |
576 /* | |
577 * If a mapping was started in Visual or Select mode, remember the length | |
578 * of the mapping. This is used below to not return to Insert mode for as | |
579 * long as the mapping is being executed. | |
580 */ | |
581 if (restart_edit == 0) | |
582 old_mapped_len = 0; | |
583 else if (old_mapped_len | |
819 | 584 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0)) |
7 | 585 old_mapped_len = typebuf_maplen(); |
586 | |
587 if (c == NUL) | |
588 c = K_ZERO; | |
589 | |
590 /* | |
591 * In Select mode, typed text replaces the selection. | |
592 */ | |
593 if (VIsual_active | |
594 && VIsual_select | |
595 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER)) | |
596 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
597 // Fake a "c"hange command. When "restart_edit" is set (e.g., because |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
598 // 'insertmode' is set) fake a "d"elete command, Insert mode will |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
599 // restart automatically. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
600 // Insert the typed character in the typeahead buffer, so that it can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
601 // be mapped in Insert mode. Required for ":lmap" to work. |
20571
5995db0fe84a
patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents:
20375
diff
changeset
|
602 ins_char_typebuf(vgetc_char, vgetc_mod_mask); |
275 | 603 if (restart_edit != 0) |
604 c = 'd'; | |
605 else | |
606 c = 'c'; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
607 msg_nowait = TRUE; // don't delay going to insert mode |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
608 old_mapped_len = 0; // do go to Insert mode |
7 | 609 } |
610 | |
26468
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26258
diff
changeset
|
611 // If the window was made so small that nothing shows, make it at least one |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26258
diff
changeset
|
612 // line and one column when typing a command. |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26258
diff
changeset
|
613 if (KeyTyped && !KeyStuffed) |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26258
diff
changeset
|
614 win_ensure_size(); |
2fc13817b100
patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents:
26258
diff
changeset
|
615 |
7 | 616 #ifdef FEAT_CMDL_INFO |
617 need_flushbuf = add_to_showcmd(c); | |
618 #endif | |
619 | |
620 getcount: | |
621 if (!(VIsual_active && VIsual_select)) | |
622 { | |
623 /* | |
624 * Handle a count before a command and compute ca.count0. | |
625 * Note that '0' is a command and not the start of a count, but it's | |
626 * part of a count after other digits. | |
627 */ | |
628 while ( (c >= '1' && c <= '9') | |
629 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0'))) | |
630 { | |
631 if (c == K_DEL || c == K_KDEL) | |
632 { | |
633 ca.count0 /= 10; | |
634 #ifdef FEAT_CMDL_INFO | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
635 del_from_showcmd(4); // delete the digit and ~@% |
7 | 636 #endif |
637 } | |
26258
a74c8936794a
patch 8.2.3660: overflow check uses wrong number
Bram Moolenaar <Bram@vim.org>
parents:
26256
diff
changeset
|
638 else if (ca.count0 > 99999999L) |
26256
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
639 { |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
640 ca.count0 = 999999999L; |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
641 } |
7 | 642 else |
26256
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
643 { |
7 | 644 ca.count0 = ca.count0 * 10 + (c - '0'); |
26256
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
645 } |
1425 | 646 #ifdef FEAT_EVAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
647 // Set v:count here, when called from main() and not a stuffed |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
648 // command, so that v:count can be used in an expression mapping |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
649 // right after the count. Do set it for redo. |
5649 | 650 if (toplevel && readbuf1_empty()) |
2667 | 651 set_vcount_ca(&ca, &set_prevcount); |
1425 | 652 #endif |
7 | 653 if (ctrl_w) |
654 { | |
655 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
656 ++allow_keys; // no mapping for nchar, but keys |
7 | 657 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
658 ++no_zero_mapping; // don't map zero here |
1389 | 659 c = plain_vgetc(); |
7 | 660 LANGMAP_ADJUST(c, TRUE); |
661 --no_zero_mapping; | |
662 if (ctrl_w) | |
663 { | |
664 --no_mapping; | |
665 --allow_keys; | |
666 } | |
667 #ifdef FEAT_CMDL_INFO | |
668 need_flushbuf |= add_to_showcmd(c); | |
669 #endif | |
670 } | |
671 | |
672 /* | |
673 * If we got CTRL-W there may be a/another count | |
674 */ | |
675 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP) | |
676 { | |
677 ctrl_w = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
678 ca.opcount = ca.count0; // remember first count |
7 | 679 ca.count0 = 0; |
680 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
681 ++allow_keys; // no mapping for nchar, but keys |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
682 c = plain_vgetc(); // get next character |
7 | 683 LANGMAP_ADJUST(c, TRUE); |
684 --no_mapping; | |
685 --allow_keys; | |
686 #ifdef FEAT_CMDL_INFO | |
687 need_flushbuf |= add_to_showcmd(c); | |
688 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
689 goto getcount; // jump back |
7 | 690 } |
691 } | |
692 | |
1692 | 693 if (c == K_CURSORHOLD) |
694 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
695 // Save the count values so that ca.opcount and ca.count0 are exactly |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
696 // the same when coming back here after handling K_CURSORHOLD. |
1692 | 697 oap->prev_opcount = ca.opcount; |
698 oap->prev_count0 = ca.count0; | |
699 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
700 else if (ca.opcount != 0) |
1692 | 701 { |
702 /* | |
703 * If we're in the middle of an operator (including after entering a | |
704 * yank buffer with '"') AND we had a count before the operator, then | |
705 * that count overrides the current value of ca.count0. | |
706 * What this means effectively, is that commands like "3dw" get turned | |
707 * into "d3w" which makes things fall into place pretty neatly. | |
708 * If you give a count before AND after the operator, they are | |
709 * multiplied. | |
710 */ | |
7 | 711 if (ca.count0) |
26256
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
712 { |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
713 if (ca.opcount >= 999999999L / ca.count0) |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
714 ca.count0 = 999999999L; |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
715 else |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
716 ca.count0 *= ca.opcount; |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
717 } |
7 | 718 else |
719 ca.count0 = ca.opcount; | |
720 } | |
721 | |
722 /* | |
723 * Always remember the count. It will be set to zero (on the next call, | |
724 * above) when there is no pending operator. | |
725 * When called from main(), save the count for use by the "count" built-in | |
726 * variable. | |
727 */ | |
728 ca.opcount = ca.count0; | |
729 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0); | |
730 | |
731 #ifdef FEAT_EVAL | |
732 /* | |
733 * Only set v:count when called from main() and not a stuffed command. | |
5649 | 734 * Do set it for redo. |
7 | 735 */ |
5649 | 736 if (toplevel && readbuf1_empty()) |
1751 | 737 set_vcount(ca.count0, ca.count1, set_prevcount); |
7 | 738 #endif |
739 | |
740 /* | |
741 * Find the command character in the table of commands. | |
742 * For CTRL-W we already got nchar when looking for a count. | |
743 */ | |
744 if (ctrl_w) | |
745 { | |
746 ca.nchar = c; | |
747 ca.cmdchar = Ctrl_W; | |
748 } | |
749 else | |
750 ca.cmdchar = c; | |
751 idx = find_command(ca.cmdchar); | |
752 if (idx < 0) | |
753 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
754 // Not a known command: beep. |
7 | 755 clearopbeep(oap); |
756 goto normal_end; | |
757 } | |
631 | 758 |
633 | 759 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW)) |
631 | 760 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
761 // This command is not allowed while editing a cmdline: beep. |
7 | 762 clearopbeep(oap); |
633 | 763 text_locked_msg(); |
7 | 764 goto normal_end; |
765 } | |
819 | 766 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked()) |
767 goto normal_end; | |
7 | 768 |
769 /* | |
770 * In Visual/Select mode, a few keys are handled in a special way. | |
771 */ | |
772 if (VIsual_active) | |
773 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
774 // when 'keymodel' contains "stopsel" may stop Select/Visual mode |
7 | 775 if (km_stopsel |
776 && (nv_cmds[idx].cmd_flags & NV_STS) | |
777 && !(mod_mask & MOD_MASK_SHIFT)) | |
778 { | |
779 end_visual_mode(); | |
780 redraw_curbuf_later(INVERTED); | |
781 } | |
782 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
783 // Keys that work different when 'keymodel' contains "startsel" |
7 | 784 if (km_startsel) |
785 { | |
786 if (nv_cmds[idx].cmd_flags & NV_SS) | |
787 { | |
788 unshift_special(&ca); | |
789 idx = find_command(ca.cmdchar); | |
840 | 790 if (idx < 0) |
791 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
792 // Just in case |
840 | 793 clearopbeep(oap); |
794 goto normal_end; | |
795 } | |
7 | 796 } |
797 else if ((nv_cmds[idx].cmd_flags & NV_SSS) | |
798 && (mod_mask & MOD_MASK_SHIFT)) | |
799 mod_mask &= ~MOD_MASK_SHIFT; | |
800 } | |
801 } | |
802 | |
803 #ifdef FEAT_RIGHTLEFT | |
804 if (curwin->w_p_rl && KeyTyped && !KeyStuffed | |
805 && (nv_cmds[idx].cmd_flags & NV_RL)) | |
806 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
807 // Invert horizontal movements and operations. Only when typed by the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
808 // user directly, not when the result of a mapping or "x" translated |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
809 // to "dl". |
7 | 810 switch (ca.cmdchar) |
811 { | |
812 case 'l': ca.cmdchar = 'h'; break; | |
813 case K_RIGHT: ca.cmdchar = K_LEFT; break; | |
814 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break; | |
815 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break; | |
816 case 'h': ca.cmdchar = 'l'; break; | |
817 case K_LEFT: ca.cmdchar = K_RIGHT; break; | |
818 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break; | |
819 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break; | |
820 case '>': ca.cmdchar = '<'; break; | |
821 case '<': ca.cmdchar = '>'; break; | |
822 } | |
823 idx = find_command(ca.cmdchar); | |
824 } | |
825 #endif | |
826 | |
827 /* | |
828 * Get an additional character if we need one. | |
829 */ | |
830 if ((nv_cmds[idx].cmd_flags & NV_NCH) | |
831 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP | |
832 && oap->op_type == OP_NOP) | |
833 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW | |
834 || (ca.cmdchar == 'q' | |
835 && oap->op_type == OP_NOP | |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13876
diff
changeset
|
836 && reg_recording == 0 |
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13876
diff
changeset
|
837 && reg_executing == 0) |
7 | 838 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i') |
5735 | 839 && (oap->op_type != OP_NOP || VIsual_active)))) |
7 | 840 { |
841 int *cp; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
842 int repl = FALSE; // get character for replace mode |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
843 int lit = FALSE; // get extra character literally |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
844 int langmap_active = FALSE; // using :lmap mappings |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
845 int lang; // getting a text character |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
846 #ifdef HAVE_INPUT_METHOD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
847 int save_smd; // saved value of p_smd |
7 | 848 #endif |
849 | |
850 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
851 ++allow_keys; // no mapping for nchar, but allow key codes |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
852 // Don't generate a CursorHold event here, most commands can't handle |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
853 // it, e.g., nv_replace(), nv_csearch(). |
1343 | 854 did_cursorhold = TRUE; |
7 | 855 if (ca.cmdchar == 'g') |
856 { | |
857 /* | |
858 * For 'g' get the next character now, so that we can check for | |
859 * "gr", "g'" and "g`". | |
860 */ | |
1389 | 861 ca.nchar = plain_vgetc(); |
7 | 862 LANGMAP_ADJUST(ca.nchar, TRUE); |
863 #ifdef FEAT_CMDL_INFO | |
864 need_flushbuf |= add_to_showcmd(ca.nchar); | |
865 #endif | |
866 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`' | |
5523 | 867 || ca.nchar == Ctrl_BSL) |
7 | 868 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
869 cp = &ca.extra_char; // need to get a third character |
7 | 870 if (ca.nchar != 'r') |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
871 lit = TRUE; // get it literally |
7 | 872 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
873 repl = TRUE; // get it in replace mode |
7 | 874 } |
875 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
876 cp = NULL; // no third character needed |
7 | 877 } |
878 else | |
879 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
880 if (ca.cmdchar == 'r') // get it in replace mode |
7 | 881 repl = TRUE; |
882 cp = &ca.nchar; | |
883 } | |
884 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG)); | |
885 | |
886 /* | |
887 * Get a second or third character. | |
888 */ | |
889 if (cp != NULL) | |
890 { | |
891 if (repl) | |
892 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
893 State = REPLACE; // pretend Replace mode |
18485
63ee3c2b140f
patch 8.1.2237: mode() result depends on whether CURSOR_SHAPE is defined
Bram Moolenaar <Bram@vim.org>
parents:
18477
diff
changeset
|
894 #ifdef CURSOR_SHAPE |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
895 ui_cursor_shape(); // show different cursor shape |
18485
63ee3c2b140f
patch 8.1.2237: mode() result depends on whether CURSOR_SHAPE is defined
Bram Moolenaar <Bram@vim.org>
parents:
18477
diff
changeset
|
896 #endif |
7 | 897 } |
898 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP) | |
899 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
900 // Allow mappings defined with ":lmap". |
7 | 901 --no_mapping; |
902 --allow_keys; | |
903 if (repl) | |
904 State = LREPLACE; | |
905 else | |
906 State = LANGMAP; | |
907 langmap_active = TRUE; | |
908 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
909 #ifdef HAVE_INPUT_METHOD |
7 | 910 save_smd = p_smd; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
911 p_smd = FALSE; // Don't let the IM code show the mode here |
7 | 912 if (lang && curbuf->b_p_iminsert == B_IMODE_IM) |
913 im_set_active(TRUE); | |
914 #endif | |
22000
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
915 if ((State & INSERT) && !p_ek) |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
916 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
917 #ifdef FEAT_JOB_CHANNEL |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
918 ch_log_output = TRUE; |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
919 #endif |
22000
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
920 // Disable bracketed paste and modifyOtherKeys here, we won't |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
921 // recognize the escape sequences with 'esckeys' off. |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
922 out_str(T_BD); |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
923 out_str(T_CTE); |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
924 } |
7 | 925 |
1389 | 926 *cp = plain_vgetc(); |
7 | 927 |
22000
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
928 if ((State & INSERT) && !p_ek) |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
929 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
930 #ifdef FEAT_JOB_CHANNEL |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
931 ch_log_output = TRUE; |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
932 #endif |
22000
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
933 // Re-enable bracketed paste mode and modifyOtherKeys |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
934 out_str(T_BE); |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
935 out_str(T_CTI); |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
936 } |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
937 |
7 | 938 if (langmap_active) |
939 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
940 // Undo the decrement done above |
7 | 941 ++no_mapping; |
942 ++allow_keys; | |
943 State = NORMAL_BUSY; | |
944 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
945 #ifdef HAVE_INPUT_METHOD |
7 | 946 if (lang) |
947 { | |
948 if (curbuf->b_p_iminsert != B_IMODE_LMAP) | |
949 im_save_status(&curbuf->b_p_iminsert); | |
950 im_set_active(FALSE); | |
951 } | |
952 p_smd = save_smd; | |
953 #endif | |
954 State = NORMAL_BUSY; | |
955 #ifdef FEAT_CMDL_INFO | |
956 need_flushbuf |= add_to_showcmd(*cp); | |
957 #endif | |
958 | |
959 if (!lit) | |
960 { | |
961 #ifdef FEAT_DIGRAPHS | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
962 // Typing CTRL-K gets a digraph. |
7 | 963 if (*cp == Ctrl_K |
964 && ((nv_cmds[idx].cmd_flags & NV_LANG) | |
965 || cp == &ca.extra_char) | |
966 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL) | |
967 { | |
968 c = get_digraph(FALSE); | |
969 if (c > 0) | |
970 { | |
971 *cp = c; | |
972 # ifdef FEAT_CMDL_INFO | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
973 // Guessing how to update showcmd here... |
7 | 974 del_from_showcmd(3); |
975 need_flushbuf |= add_to_showcmd(*cp); | |
976 # endif | |
977 } | |
978 } | |
979 #endif | |
980 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
981 // adjust chars > 127, except after "tTfFr" commands |
7 | 982 LANGMAP_ADJUST(*cp, !lang); |
983 #ifdef FEAT_RIGHTLEFT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
984 // adjust Hebrew mapped char |
7 | 985 if (p_hkmap && lang && KeyTyped) |
986 *cp = hkmap(*cp); | |
987 #endif | |
988 } | |
989 | |
990 /* | |
991 * When the next character is CTRL-\ a following CTRL-N means the | |
992 * command is aborted and we go to Normal mode. | |
993 */ | |
994 if (cp == &ca.extra_char | |
995 && ca.nchar == Ctrl_BSL | |
996 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G)) | |
997 { | |
998 ca.cmdchar = Ctrl_BSL; | |
999 ca.nchar = ca.extra_char; | |
1000 idx = find_command(ca.cmdchar); | |
1001 } | |
3908 | 1002 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g') |
3896 | 1003 ca.oap->op_type = get_op_type(*cp, NUL); |
7 | 1004 else if (*cp == Ctrl_BSL) |
1005 { | |
1006 long towait = (p_ttm >= 0 ? p_ttm : p_tm); | |
1007 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1008 // There is a busy wait here when typing "f<C-\>" and then |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1009 // something different from CTRL-N. Can't be avoided. |
7 | 1010 while ((c = vpeekc()) <= 0 && towait > 0L) |
1011 { | |
23648
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
1012 do_sleep(towait > 50L ? 50L : towait, FALSE); |
7 | 1013 towait -= 50L; |
1014 } | |
1015 if (c > 0) | |
1016 { | |
1389 | 1017 c = plain_vgetc(); |
7 | 1018 if (c != Ctrl_N && c != Ctrl_G) |
1019 vungetc(c); | |
1020 else | |
1021 { | |
1022 ca.cmdchar = Ctrl_BSL; | |
1023 ca.nchar = c; | |
1024 idx = find_command(ca.cmdchar); | |
1025 } | |
1026 } | |
1027 } | |
1028 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1029 // When getting a text character and the next character is a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1030 // multi-byte character, it could be a composing character. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1031 // However, don't wait for it to arrive. Also, do enable mapping, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1032 // because if it's put back with vungetc() it's too late to apply |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1033 // mapping. |
6071 | 1034 --no_mapping; |
7 | 1035 while (enc_utf8 && lang && (c = vpeekc()) > 0 |
1036 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1)) | |
1037 { | |
1389 | 1038 c = plain_vgetc(); |
7 | 1039 if (!utf_iscomposing(c)) |
1040 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1041 vungetc(c); // it wasn't, put it back |
7 | 1042 break; |
1043 } | |
1044 else if (ca.ncharC1 == 0) | |
1045 ca.ncharC1 = c; | |
1046 else | |
1047 ca.ncharC2 = c; | |
1048 } | |
6071 | 1049 ++no_mapping; |
7 | 1050 } |
1051 --no_mapping; | |
1052 --allow_keys; | |
1053 } | |
1054 | |
1055 #ifdef FEAT_CMDL_INFO | |
1056 /* | |
1057 * Flush the showcmd characters onto the screen so we can see them while | |
1058 * the command is being executed. Only do this when the shown command was | |
1059 * actually displayed, otherwise this will slow down a lot when executing | |
1060 * mappings. | |
1061 */ | |
1062 if (need_flushbuf) | |
1063 out_flush(); | |
1064 #endif | |
1727 | 1065 if (ca.cmdchar != K_IGNORE) |
21415
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1066 { |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1067 if (ex_normal_busy) |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1068 did_cursorhold = save_did_cursorhold; |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1069 else |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1070 did_cursorhold = FALSE; |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1071 } |
7 | 1072 |
1073 State = NORMAL; | |
1074 | |
1075 if (ca.nchar == ESC) | |
1076 { | |
1077 clearop(oap); | |
1078 if (restart_edit == 0 && goto_im()) | |
1079 restart_edit = 'a'; | |
1080 goto normal_end; | |
1081 } | |
1082 | |
24 | 1083 if (ca.cmdchar != K_IGNORE) |
1084 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1085 msg_didout = FALSE; // don't scroll screen up for normal command |
24 | 1086 msg_col = 0; |
1087 } | |
7 | 1088 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1089 old_pos = curwin->w_cursor; // remember where cursor was |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1090 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1091 // When 'keymodel' contains "startsel" some keys start Select/Visual |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1092 // mode. |
7 | 1093 if (!VIsual_active && km_startsel) |
1094 { | |
1095 if (nv_cmds[idx].cmd_flags & NV_SS) | |
1096 { | |
1097 start_selection(); | |
1098 unshift_special(&ca); | |
1099 idx = find_command(ca.cmdchar); | |
1100 } | |
1101 else if ((nv_cmds[idx].cmd_flags & NV_SSS) | |
1102 && (mod_mask & MOD_MASK_SHIFT)) | |
1103 { | |
1104 start_selection(); | |
1105 mod_mask &= ~MOD_MASK_SHIFT; | |
1106 } | |
1107 } | |
1108 | |
1109 /* | |
1110 * Execute the command! | |
1111 * Call the command function found in the commands table. | |
1112 */ | |
1113 ca.arg = nv_cmds[idx].cmd_arg; | |
1114 (nv_cmds[idx].cmd_func)(&ca); | |
1115 | |
1116 /* | |
1117 * If we didn't start or finish an operator, reset oap->regname, unless we | |
1118 * need it later. | |
1119 */ | |
1120 if (!finish_op | |
1121 && !oap->op_type | |
1122 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG))) | |
1123 { | |
1124 clearop(oap); | |
1125 #ifdef FEAT_EVAL | |
20721
70d561931721
patch 8.2.0913: code for resetting v:register is duplicated
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
1126 reset_reg_var(); |
7 | 1127 #endif |
1128 } | |
1129 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1130 // Get the length of mapped chars again after typing a count, second |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1131 // character or "z333<cr>". |
36 | 1132 if (old_mapped_len > 0) |
1133 old_mapped_len = typebuf_maplen(); | |
1134 | |
7 | 1135 /* |
24586
b7f58be68c02
patch 8.2.2832: operator cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents:
24341
diff
changeset
|
1136 * If an operation is pending, handle it. But not for K_IGNORE or |
b7f58be68c02
patch 8.2.2832: operator cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents:
24341
diff
changeset
|
1137 * K_MOUSEMOVE. |
7 | 1138 */ |
24586
b7f58be68c02
patch 8.2.2832: operator cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents:
24341
diff
changeset
|
1139 if (ca.cmdchar != K_IGNORE && ca.cmdchar != K_MOUSEMOVE) |
18775
5da1ad9165f0
patch 8.1.2377: GUI: when losing focus a pending operator is executed
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
1140 do_pending_operator(&ca, old_col, FALSE); |
7 | 1141 |
1142 /* | |
1143 * Wait for a moment when a message is displayed that will be overwritten | |
1144 * by the mode message. | |
1145 * In Visual mode and with "^O" in Insert mode, a short message will be | |
1146 * overwritten by the mode message. Wait a bit, until a key is hit. | |
1147 * In Visual mode, it's more important to keep the Visual area updated | |
1148 * than keeping a message (e.g. from a /pat search). | |
1149 * Only do this if the command was typed, not from a mapping. | |
1150 * Don't wait when emsg_silent is non-zero. | |
1151 * Also wait a bit after an error message, e.g. for "^O:". | |
1152 * Don't redraw the screen, it would remove the message. | |
1153 */ | |
1154 if ( ((p_smd | |
641 | 1155 && msg_silent == 0 |
7 | 1156 && (restart_edit != 0 |
1157 || (VIsual_active | |
1158 && old_pos.lnum == curwin->w_cursor.lnum | |
1159 && old_pos.col == curwin->w_cursor.col) | |
1160 ) | |
1161 && (clear_cmdline | |
1162 || redraw_cmdline) | |
1163 && (msg_didout || (msg_didany && msg_scroll)) | |
1164 && !msg_nowait | |
1165 && KeyTyped) | |
1166 || (restart_edit != 0 | |
1167 && !VIsual_active | |
1168 && (msg_scroll | |
1169 || emsg_on_display))) | |
1170 && oap->regname == 0 | |
1171 && !(ca.retval & CA_COMMAND_BUSY) | |
1172 && stuff_empty() | |
1173 && typebuf_typed() | |
1174 && emsg_silent == 0 | |
22742
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22176
diff
changeset
|
1175 && !in_assert_fails |
7 | 1176 && !did_wait_return |
1177 && oap->op_type == OP_NOP) | |
1178 { | |
1179 int save_State = State; | |
1180 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1181 // Draw the cursor with the right shape here |
7 | 1182 if (restart_edit != 0) |
1183 State = INSERT; | |
1184 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1185 // If need to redraw, and there is a "keep_msg", redraw before the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1186 // delay |
7 | 1187 if (must_redraw && keep_msg != NULL && !emsg_on_display) |
1188 { | |
1189 char_u *kmsg; | |
1190 | |
1191 kmsg = keep_msg; | |
1192 keep_msg = NULL; | |
19681
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1193 // Showmode() will clear keep_msg, but we want to use it anyway. |
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1194 // First update w_topline. |
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1195 setcursor(); |
7 | 1196 update_screen(0); |
18045
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1197 // now reset it, otherwise it's put in the history again |
7 | 1198 keep_msg = kmsg; |
18045
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1199 |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1200 kmsg = vim_strsave(keep_msg); |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1201 if (kmsg != NULL) |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1202 { |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1203 msg_attr((char *)kmsg, keep_msg_attr); |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1204 vim_free(kmsg); |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1205 } |
7 | 1206 } |
1207 setcursor(); | |
19681
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1208 #ifdef CURSOR_SHAPE |
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1209 ui_cursor_shape(); // may show different cursor shape |
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1210 #endif |
7 | 1211 cursor_on(); |
1212 out_flush(); | |
1213 if (msg_scroll || emsg_on_display) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1214 ui_delay(1003L, TRUE); // wait at least one second |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1215 ui_delay(3003L, FALSE); // wait up to three seconds |
7 | 1216 State = save_State; |
1217 | |
1218 msg_scroll = FALSE; | |
1219 emsg_on_display = FALSE; | |
1220 } | |
1221 | |
1222 /* | |
1223 * Finish up after executing a Normal mode command. | |
1224 */ | |
1225 normal_end: | |
1226 | |
1227 msg_nowait = FALSE; | |
1228 | |
20754
e6a5a5ef4034
patch 8.2.0929: v:register is not cleared after an operator was executed
Bram Moolenaar <Bram@vim.org>
parents:
20721
diff
changeset
|
1229 #ifdef FEAT_EVAL |
e6a5a5ef4034
patch 8.2.0929: v:register is not cleared after an operator was executed
Bram Moolenaar <Bram@vim.org>
parents:
20721
diff
changeset
|
1230 if (finish_op) |
e6a5a5ef4034
patch 8.2.0929: v:register is not cleared after an operator was executed
Bram Moolenaar <Bram@vim.org>
parents:
20721
diff
changeset
|
1231 reset_reg_var(); |
e6a5a5ef4034
patch 8.2.0929: v:register is not cleared after an operator was executed
Bram Moolenaar <Bram@vim.org>
parents:
20721
diff
changeset
|
1232 #endif |
e6a5a5ef4034
patch 8.2.0929: v:register is not cleared after an operator was executed
Bram Moolenaar <Bram@vim.org>
parents:
20721
diff
changeset
|
1233 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1234 // Reset finish_op, in case it was set |
7 | 1235 #ifdef CURSOR_SHAPE |
1236 c = finish_op; | |
1237 #endif | |
1238 finish_op = FALSE; | |
26042
6b39ab99e367
patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents:
25994
diff
changeset
|
1239 trigger_modechanged(); |
7 | 1240 #ifdef CURSOR_SHAPE |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1241 // Redraw the cursor with another shape, if we were in Operator-pending |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1242 // mode or did a replace command. |
7 | 1243 if (c || ca.cmdchar == 'r') |
1244 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1245 ui_cursor_shape(); // may show different cursor shape |
7 | 1246 # ifdef FEAT_MOUSESHAPE |
1247 update_mouseshape(-1); | |
1248 # endif | |
1249 } | |
1250 #endif | |
1251 | |
1252 #ifdef FEAT_CMDL_INFO | |
1692 | 1253 if (oap->op_type == OP_NOP && oap->regname == 0 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
1254 && ca.cmdchar != K_CURSORHOLD) |
7 | 1255 clear_showcmd(); |
1256 #endif | |
1257 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1258 checkpcmark(); // check if we moved since setting pcmark |
7 | 1259 vim_free(ca.searchbuf); |
1260 | |
1261 if (has_mbyte) | |
1262 mb_adjust_cursor(); | |
1263 | |
1264 if (curwin->w_p_scb && toplevel) | |
1265 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1266 validate_cursor(); // may need to update w_leftcol |
7 | 1267 do_check_scrollbind(TRUE); |
1268 } | |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1269 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1270 if (curwin->w_p_crb && toplevel) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1271 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1272 validate_cursor(); // may need to update w_leftcol |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1273 do_check_cursorbind(); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1274 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1275 |
12134
e83c6c10320c
patch 8.0.0947: entering terminal using C-O C-W C-W goes to Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11993
diff
changeset
|
1276 #ifdef FEAT_TERMINAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1277 // don't go to Insert mode if a terminal has a running job |
12467
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
1278 if (term_job_running(curbuf->b_term)) |
12134
e83c6c10320c
patch 8.0.0947: entering terminal using C-O C-W C-W goes to Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11993
diff
changeset
|
1279 restart_edit = 0; |
e83c6c10320c
patch 8.0.0947: entering terminal using C-O C-W C-W goes to Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11993
diff
changeset
|
1280 #endif |
e83c6c10320c
patch 8.0.0947: entering terminal using C-O C-W C-W goes to Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11993
diff
changeset
|
1281 |
7 | 1282 /* |
1283 * May restart edit(), if we got here with CTRL-O in Insert mode (but not | |
1284 * if still inside a mapping that started in Visual mode). | |
1285 * May switch from Visual to Select mode after CTRL-O command. | |
1286 */ | |
1287 if ( oap->op_type == OP_NOP | |
1288 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0) | |
1289 || restart_VIsual_select == 1) | |
1290 && !(ca.retval & CA_COMMAND_BUSY) | |
1291 && stuff_empty() | |
1292 && oap->regname == 0) | |
1293 { | |
1294 if (restart_VIsual_select == 1) | |
1295 { | |
1296 VIsual_select = TRUE; | |
26042
6b39ab99e367
patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents:
25994
diff
changeset
|
1297 trigger_modechanged(); |
7 | 1298 showmode(); |
1299 restart_VIsual_select = 0; | |
1300 } | |
5735 | 1301 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0) |
7 | 1302 (void)edit(restart_edit, FALSE, 1L); |
1303 } | |
1304 | |
1305 if (restart_VIsual_select == 2) | |
1306 restart_VIsual_select = 1; | |
1307 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1308 // Save count before an operator for next time. |
7 | 1309 opcount = ca.opcount; |
1310 } | |
1311 | |
2667 | 1312 #ifdef FEAT_EVAL |
1313 /* | |
1314 * Set v:count and v:count1 according to "cap". | |
1315 * Set v:prevcount only when "set_prevcount" is TRUE. | |
1316 */ | |
1317 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1318 set_vcount_ca(cmdarg_T *cap, int *set_prevcount) |
2667 | 1319 { |
1320 long count = cap->count0; | |
1321 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1322 // multiply with cap->opcount the same way as above |
2667 | 1323 if (cap->opcount != 0) |
1324 count = cap->opcount * (count == 0 ? 1 : count); | |
1325 set_vcount(count, count == 0 ? 1 : count, *set_prevcount); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1326 *set_prevcount = FALSE; // only set v:prevcount once |
2667 | 1327 } |
1328 #endif | |
1329 | |
7 | 1330 /* |
19681
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1331 * Check if highlighting for Visual mode is possible, give a warning message |
7 | 1332 * if not. |
1333 */ | |
1334 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1335 check_visual_highlight(void) |
7 | 1336 { |
1337 static int did_check = FALSE; | |
1338 | |
1339 if (full_screen) | |
1340 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1341 if (!did_check && HL_ATTR(HLF_V) == 0) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1342 msg(_("Warning: terminal cannot highlight")); |
7 | 1343 did_check = TRUE; |
1344 } | |
1345 } | |
1346 | |
23021
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1347 #if defined(FEAT_CLIPBOARD) && defined(FEAT_EVAL) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1348 /* |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1349 * Call yank_do_autocmd() for "regname". |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1350 */ |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1351 static void |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1352 call_yank_do_autocmd(int regname) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1353 { |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1354 oparg_T oa; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1355 yankreg_T *reg; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1356 |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1357 clear_oparg(&oa); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1358 oa.regname = regname; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1359 oa.op_type = OP_YANK; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1360 oa.is_VIsual = TRUE; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1361 reg = get_register(regname, TRUE); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1362 yank_do_autocmd(&oa, reg); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1363 free_register(reg); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1364 } |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1365 #endif |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1366 |
7 | 1367 /* |
638 | 1368 * End Visual mode. |
24788
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1369 * This function or the next should ALWAYS be called to end Visual mode, except |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1370 * from do_pending_operator(). |
7 | 1371 */ |
1372 void | |
24788
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1373 end_visual_mode() |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1374 { |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1375 end_visual_mode_keep_button(); |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1376 reset_held_button(); |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1377 } |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1378 |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1379 void |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1380 end_visual_mode_keep_button() |
7 | 1381 { |
1382 #ifdef FEAT_CLIPBOARD | |
1383 /* | |
1384 * If we are using the clipboard, then remember what was selected in case | |
1385 * we need to paste it somewhere while we still own the selection. | |
1386 * Only do this when the clipboard is already owned. Don't want to grab | |
1387 * the selection when hitting ESC. | |
1388 */ | |
1389 if (clip_star.available && clip_star.owned) | |
1390 clip_auto_select(); | |
23021
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1391 |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1392 # if defined(FEAT_EVAL) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1393 // Emit a TextYankPost for the automatic copy of the selection into the |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1394 // star and/or plus register. |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1395 if (has_textyankpost()) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1396 { |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1397 if (clip_isautosel_star()) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1398 call_yank_do_autocmd('*'); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1399 if (clip_isautosel_plus()) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1400 call_yank_do_autocmd('+'); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1401 } |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1402 # endif |
7 | 1403 #endif |
1404 | |
1405 VIsual_active = FALSE; | |
1406 setmouse(); | |
1407 mouse_dragging = 0; | |
1408 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1409 // Save the current VIsual area for '< and '> marks, and "gv" |
690 | 1410 curbuf->b_visual.vi_mode = VIsual_mode; |
1411 curbuf->b_visual.vi_start = VIsual; | |
1412 curbuf->b_visual.vi_end = curwin->w_cursor; | |
1413 curbuf->b_visual.vi_curswant = curwin->w_curswant; | |
7 | 1414 #ifdef FEAT_EVAL |
1415 curbuf->b_visual_mode_eval = VIsual_mode; | |
1416 #endif | |
1417 if (!virtual_active()) | |
1418 curwin->w_cursor.coladd = 0; | |
6979 | 1419 may_clear_cmdline(); |
7 | 1420 |
844 | 1421 adjust_cursor_eol(); |
26042
6b39ab99e367
patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents:
25994
diff
changeset
|
1422 trigger_modechanged(); |
7 | 1423 } |
1424 | |
1425 /* | |
1426 * Reset VIsual_active and VIsual_reselect. | |
1427 */ | |
1428 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1429 reset_VIsual_and_resel(void) |
7 | 1430 { |
1431 if (VIsual_active) | |
1432 { | |
1433 end_visual_mode(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1434 redraw_curbuf_later(INVERTED); // delete the inversion later |
7 | 1435 } |
1436 VIsual_reselect = FALSE; | |
1437 } | |
1438 | |
1439 /* | |
1440 * Reset VIsual_active and VIsual_reselect if it's set. | |
1441 */ | |
1442 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1443 reset_VIsual(void) |
7 | 1444 { |
1445 if (VIsual_active) | |
1446 { | |
1447 end_visual_mode(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1448 redraw_curbuf_later(INVERTED); // delete the inversion later |
7 | 1449 VIsual_reselect = FALSE; |
1450 } | |
1451 } | |
1452 | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1453 void |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1454 restore_visual_mode(void) |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1455 { |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1456 if (VIsual_mode_orig != NUL) |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1457 { |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1458 curbuf->b_visual.vi_mode = VIsual_mode_orig; |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1459 VIsual_mode_orig = NUL; |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1460 } |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1461 } |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1462 |
7 | 1463 /* |
1464 * Check for a balloon-eval special item to include when searching for an | |
1465 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid! | |
1466 * Returns TRUE if the character at "*ptr" should be included. | |
1467 * "dir" is FORWARD or BACKWARD, the direction of searching. | |
1468 * "*colp" is in/decremented if "ptr[-dir]" should also be included. | |
1469 * "bnp" points to a counter for square brackets. | |
1470 */ | |
1471 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1472 find_is_eval_item( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1473 char_u *ptr, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1474 int *colp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1475 int *bnp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1476 int dir) |
7 | 1477 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1478 // Accept everything inside []. |
7 | 1479 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD)) |
1480 ++*bnp; | |
1481 if (*bnp > 0) | |
1482 { | |
1483 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD)) | |
1484 --*bnp; | |
1485 return TRUE; | |
1486 } | |
1487 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1488 // skip over "s.var" |
7 | 1489 if (*ptr == '.') |
1490 return TRUE; | |
1491 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1492 // two-character item: s->var |
7 | 1493 if (ptr[dir == BACKWARD ? 0 : 1] == '>' |
1494 && ptr[dir == BACKWARD ? -1 : 0] == '-') | |
1495 { | |
1496 *colp += dir; | |
1497 return TRUE; | |
1498 } | |
1499 return FALSE; | |
1500 } | |
1501 | |
1502 /* | |
1503 * Find the identifier under or to the right of the cursor. | |
1504 * "find_type" can have one of three values: | |
1505 * FIND_IDENT: find an identifier (keyword) | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1506 * FIND_STRING: find any non-white text |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1507 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred. |
184 | 1508 * FIND_EVAL: find text useful for C program debugging |
7 | 1509 * |
1510 * There are three steps: | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1511 * 1. Search forward for the start of an identifier/text. Doesn't move if |
7 | 1512 * already on one. |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1513 * 2. Search backward for the start of this identifier/text. |
7 | 1514 * This doesn't match the real Vi but I like it a little better and it |
1515 * shouldn't bother anyone. | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1516 * 3. Search forward to the end of this identifier/text. |
7 | 1517 * When FIND_IDENT isn't defined, we backup until a blank. |
1518 * | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1519 * Returns the length of the text, or zero if no text is found. |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1520 * If text is found, a pointer to the text is put in "*text". This |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1521 * points into the current buffer line and is not always NUL terminated. |
7 | 1522 */ |
1523 int | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1524 find_ident_under_cursor(char_u **text, int find_type) |
7 | 1525 { |
1526 return find_ident_at_pos(curwin, curwin->w_cursor.lnum, | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1527 curwin->w_cursor.col, text, NULL, find_type); |
7 | 1528 } |
1529 | |
1530 /* | |
1531 * Like find_ident_under_cursor(), but for any window and any position. | |
1532 * However: Uses 'iskeyword' from the current window!. | |
1533 */ | |
1534 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1535 find_ident_at_pos( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1536 win_T *wp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1537 linenr_T lnum, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1538 colnr_T startcol, |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1539 char_u **text, |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1540 int *textcol, // column where "text" starts, can be NULL |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1541 int find_type) |
7 | 1542 { |
1543 char_u *ptr; | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1544 int col = 0; // init to shut up GCC |
7 | 1545 int i; |
1546 int this_class = 0; | |
1547 int prev_class; | |
1548 int prevcol; | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1549 int bn = 0; // bracket nesting |
7 | 1550 |
1551 /* | |
1552 * if i == 0: try to find an identifier | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1553 * if i == 1: try to find any non-white text |
7 | 1554 */ |
1555 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE); | |
1556 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i) | |
1557 { | |
1558 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1559 * 1. skip to start of identifier/text |
7 | 1560 */ |
1561 col = startcol; | |
1562 if (has_mbyte) | |
1563 { | |
1564 while (ptr[col] != NUL) | |
1565 { | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1566 // Stop at a ']' to evaluate "a[x]". |
7 | 1567 if ((find_type & FIND_EVAL) && ptr[col] == ']') |
1568 break; | |
1569 this_class = mb_get_class(ptr + col); | |
1570 if (this_class != 0 && (i == 1 || this_class != 1)) | |
1571 break; | |
474 | 1572 col += (*mb_ptr2len)(ptr + col); |
7 | 1573 } |
1574 } | |
1575 else | |
1576 while (ptr[col] != NUL | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1577 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col])) |
7 | 1578 && (!(find_type & FIND_EVAL) || ptr[col] != ']') |
1579 ) | |
1580 ++col; | |
1581 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1582 // When starting on a ']' count it, so that we include the '['. |
7 | 1583 bn = ptr[col] == ']'; |
1584 | |
1585 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1586 * 2. Back up to start of identifier/text. |
7 | 1587 */ |
1588 if (has_mbyte) | |
1589 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1590 // Remember class of character under cursor. |
7 | 1591 if ((find_type & FIND_EVAL) && ptr[col] == ']') |
1592 this_class = mb_get_class((char_u *)"a"); | |
1593 else | |
1594 this_class = mb_get_class(ptr + col); | |
835 | 1595 while (col > 0 && this_class != 0) |
7 | 1596 { |
1597 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1); | |
1598 prev_class = mb_get_class(ptr + prevcol); | |
1599 if (this_class != prev_class | |
1600 && (i == 0 | |
1601 || prev_class == 0 | |
1602 || (find_type & FIND_IDENT)) | |
1603 && (!(find_type & FIND_EVAL) | |
1604 || prevcol == 0 | |
1605 || !find_is_eval_item(ptr + prevcol, &prevcol, | |
1606 &bn, BACKWARD)) | |
1607 ) | |
1608 break; | |
1609 col = prevcol; | |
1610 } | |
1611 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1612 // If we don't want just any old text, or we've found an |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1613 // identifier, stop searching. |
7 | 1614 if (this_class > 2) |
1615 this_class = 2; | |
1616 if (!(find_type & FIND_STRING) || this_class == 2) | |
1617 break; | |
1618 } | |
1619 else | |
1620 { | |
1621 while (col > 0 | |
1622 && ((i == 0 | |
1623 ? vim_iswordc(ptr[col - 1]) | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1624 : (!VIM_ISWHITE(ptr[col - 1]) |
7 | 1625 && (!(find_type & FIND_IDENT) |
1626 || !vim_iswordc(ptr[col - 1])))) | |
1627 || ((find_type & FIND_EVAL) | |
1628 && col > 1 | |
1629 && find_is_eval_item(ptr + col - 1, &col, | |
1630 &bn, BACKWARD)) | |
1631 )) | |
1632 --col; | |
1633 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1634 // If we don't want just any old text, or we've found an |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1635 // identifier, stop searching. |
7 | 1636 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col])) |
1637 break; | |
1638 } | |
1639 } | |
1640 | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1641 if (ptr[col] == NUL || (i == 0 |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1642 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col])))) |
7 | 1643 { |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1644 // didn't find an identifier or text |
16908
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1645 if ((find_type & FIND_NOERROR) == 0) |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1646 { |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1647 if (find_type & FIND_STRING) |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1648 emsg(_("E348: No string under cursor")); |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1649 else |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1650 emsg(_(e_noident)); |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1651 } |
7 | 1652 return 0; |
1653 } | |
1654 ptr += col; | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1655 *text = ptr; |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1656 if (textcol != NULL) |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1657 *textcol = col; |
7 | 1658 |
1659 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1660 * 3. Find the end if the identifier/text. |
7 | 1661 */ |
1662 bn = 0; | |
1663 startcol -= col; | |
1664 col = 0; | |
1665 if (has_mbyte) | |
1666 { | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1667 // Search for point of changing multibyte character class. |
7 | 1668 this_class = mb_get_class(ptr); |
1669 while (ptr[col] != NUL | |
1670 && ((i == 0 ? mb_get_class(ptr + col) == this_class | |
1671 : mb_get_class(ptr + col) != 0) | |
1672 || ((find_type & FIND_EVAL) | |
1673 && col <= (int)startcol | |
1674 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) | |
1675 )) | |
474 | 1676 col += (*mb_ptr2len)(ptr + col); |
7 | 1677 } |
1678 else | |
1679 while ((i == 0 ? vim_iswordc(ptr[col]) | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1680 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col]))) |
7 | 1681 || ((find_type & FIND_EVAL) |
1682 && col <= (int)startcol | |
1683 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) | |
1684 ) | |
1685 ++col; | |
1686 | |
1687 return col; | |
1688 } | |
1689 | |
1690 /* | |
1691 * Prepare for redo of a normal command. | |
1692 */ | |
1693 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1694 prep_redo_cmd(cmdarg_T *cap) |
7 | 1695 { |
1696 prep_redo(cap->oap->regname, cap->count0, | |
1697 NUL, cap->cmdchar, NUL, NUL, cap->nchar); | |
1698 } | |
1699 | |
1700 /* | |
1701 * Prepare for redo of any command. | |
1702 * Note that only the last argument can be a multi-byte char. | |
1703 */ | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1704 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1705 prep_redo( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1706 int regname, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1707 long num, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1708 int cmd1, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1709 int cmd2, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1710 int cmd3, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1711 int cmd4, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1712 int cmd5) |
7 | 1713 { |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1714 prep_redo_num2(regname, num, cmd1, cmd2, 0L, cmd3, cmd4, cmd5); |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1715 } |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1716 |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1717 /* |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1718 * Prepare for redo of any command with extra count after "cmd2". |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1719 */ |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1720 void |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1721 prep_redo_num2( |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1722 int regname, |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1723 long num1, |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1724 int cmd1, |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1725 int cmd2, |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1726 long num2, |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1727 int cmd3, |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1728 int cmd4, |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1729 int cmd5) |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1730 { |
7 | 1731 ResetRedobuff(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1732 if (regname != 0) // yank from specified buffer |
7 | 1733 { |
1734 AppendCharToRedobuff('"'); | |
1735 AppendCharToRedobuff(regname); | |
1736 } | |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1737 if (num1 != 0) |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1738 AppendNumberToRedobuff(num1); |
7 | 1739 if (cmd1 != NUL) |
1740 AppendCharToRedobuff(cmd1); | |
1741 if (cmd2 != NUL) | |
1742 AppendCharToRedobuff(cmd2); | |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1743 if (num2 != 0) |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1744 AppendNumberToRedobuff(num2); |
7 | 1745 if (cmd3 != NUL) |
1746 AppendCharToRedobuff(cmd3); | |
1747 if (cmd4 != NUL) | |
1748 AppendCharToRedobuff(cmd4); | |
1749 if (cmd5 != NUL) | |
1750 AppendCharToRedobuff(cmd5); | |
1751 } | |
1752 | |
1753 /* | |
1754 * check for operator active and clear it | |
1755 * | |
1756 * return TRUE if operator was active | |
1757 */ | |
1758 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1759 checkclearop(oparg_T *oap) |
7 | 1760 { |
1761 if (oap->op_type == OP_NOP) | |
1762 return FALSE; | |
1763 clearopbeep(oap); | |
1764 return TRUE; | |
1765 } | |
1766 | |
1767 /* | |
1131 | 1768 * Check for operator or Visual active. Clear active operator. |
7 | 1769 * |
1131 | 1770 * Return TRUE if operator or Visual was active. |
7 | 1771 */ |
1772 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1773 checkclearopq(oparg_T *oap) |
7 | 1774 { |
5735 | 1775 if (oap->op_type == OP_NOP && !VIsual_active) |
7 | 1776 return FALSE; |
1777 clearopbeep(oap); | |
1778 return TRUE; | |
1779 } | |
1780 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1781 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1782 clearop(oparg_T *oap) |
7 | 1783 { |
1784 oap->op_type = OP_NOP; | |
1785 oap->regname = 0; | |
1786 oap->motion_force = NUL; | |
1787 oap->use_reg_one = FALSE; | |
24800
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24788
diff
changeset
|
1788 motion_force = NUL; |
7 | 1789 } |
1790 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1791 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1792 clearopbeep(oparg_T *oap) |
7 | 1793 { |
1794 clearop(oap); | |
1795 beep_flush(); | |
1796 } | |
1797 | |
1798 /* | |
1799 * Remove the shift modifier from a special key. | |
1800 */ | |
1801 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1802 unshift_special(cmdarg_T *cap) |
7 | 1803 { |
1804 switch (cap->cmdchar) | |
1805 { | |
1806 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break; | |
1807 case K_S_LEFT: cap->cmdchar = K_LEFT; break; | |
1808 case K_S_UP: cap->cmdchar = K_UP; break; | |
1809 case K_S_DOWN: cap->cmdchar = K_DOWN; break; | |
1810 case K_S_HOME: cap->cmdchar = K_HOME; break; | |
1811 case K_S_END: cap->cmdchar = K_END; break; | |
1812 } | |
1813 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask); | |
1814 } | |
1815 | |
6979 | 1816 /* |
1817 * If the mode is currently displayed clear the command line or update the | |
1818 * command displayed. | |
1819 */ | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1820 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1821 may_clear_cmdline(void) |
6979 | 1822 { |
1823 if (mode_displayed) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1824 clear_cmdline = TRUE; // unshow visual mode later |
6979 | 1825 #ifdef FEAT_CMDL_INFO |
1826 else | |
1827 clear_showcmd(); | |
1828 #endif | |
1829 } | |
1830 | |
7 | 1831 #if defined(FEAT_CMDL_INFO) || defined(PROTO) |
1832 /* | |
1833 * Routines for displaying a partly typed command | |
1834 */ | |
1835 | |
5735 | 1836 #define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30 |
7 | 1837 static char_u showcmd_buf[SHOWCMD_BUFLEN]; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1838 static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd() |
7 | 1839 static int showcmd_is_clear = TRUE; |
1840 static int showcmd_visual = FALSE; | |
1841 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
1842 static void display_showcmd(void); |
7 | 1843 |
1844 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1845 clear_showcmd(void) |
7 | 1846 { |
1847 if (!p_sc) | |
1848 return; | |
1849 | |
1850 if (VIsual_active && !char_avail()) | |
1851 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
1852 int cursor_bot = LT_POS(VIsual, curwin->w_cursor); |
7 | 1853 long lines; |
1854 colnr_T leftcol, rightcol; | |
1855 linenr_T top, bot; | |
1856 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1857 // Show the size of the Visual area. |
1866 | 1858 if (cursor_bot) |
7 | 1859 { |
1860 top = VIsual.lnum; | |
1861 bot = curwin->w_cursor.lnum; | |
1862 } | |
1863 else | |
1864 { | |
1865 top = curwin->w_cursor.lnum; | |
1866 bot = VIsual.lnum; | |
1867 } | |
1868 # ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1869 // Include closed folds as a whole. |
7009 | 1870 (void)hasFolding(top, &top, NULL); |
1871 (void)hasFolding(bot, NULL, &bot); | |
7 | 1872 # endif |
1873 lines = bot - top + 1; | |
1874 | |
1875 if (VIsual_mode == Ctrl_V) | |
1876 { | |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1877 # ifdef FEAT_LINEBREAK |
1866 | 1878 char_u *saved_sbr = p_sbr; |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18485
diff
changeset
|
1879 char_u *saved_w_sbr = curwin->w_p_sbr; |
1866 | 1880 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1881 // Make 'sbr' empty for a moment to get the correct size. |
1866 | 1882 p_sbr = empty_option; |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18485
diff
changeset
|
1883 curwin->w_p_sbr = empty_option; |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1884 # endif |
7 | 1885 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol); |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1886 # ifdef FEAT_LINEBREAK |
1866 | 1887 p_sbr = saved_sbr; |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18485
diff
changeset
|
1888 curwin->w_p_sbr = saved_w_sbr; |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1889 # endif |
7 | 1890 sprintf((char *)showcmd_buf, "%ldx%ld", lines, |
1891 (long)(rightcol - leftcol + 1)); | |
1892 } | |
1893 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum) | |
1894 sprintf((char *)showcmd_buf, "%ld", lines); | |
1895 else | |
2324
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1896 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1897 char_u *s, *e; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1898 int l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1899 int bytes = 0; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1900 int chars = 0; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1901 |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1902 if (cursor_bot) |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1903 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1904 s = ml_get_pos(&VIsual); |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1905 e = ml_get_cursor(); |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1906 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1907 else |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1908 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1909 s = ml_get_cursor(); |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1910 e = ml_get_pos(&VIsual); |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1911 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1912 while ((*p_sel != 'e') ? s <= e : s < e) |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1913 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1914 l = (*mb_ptr2len)(s); |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1915 if (l == 0) |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1916 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1917 ++bytes; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1918 ++chars; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1919 break; // end of line |
2324
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1920 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1921 bytes += l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1922 ++chars; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1923 s += l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1924 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1925 if (bytes == chars) |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1926 sprintf((char *)showcmd_buf, "%d", chars); |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1927 else |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1928 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes); |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1929 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1930 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate |
7 | 1931 showcmd_visual = TRUE; |
1932 } | |
1933 else | |
1934 { | |
1935 showcmd_buf[0] = NUL; | |
1936 showcmd_visual = FALSE; | |
1937 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1938 // Don't actually display something if there is nothing to clear. |
7 | 1939 if (showcmd_is_clear) |
1940 return; | |
1941 } | |
1942 | |
1943 display_showcmd(); | |
1944 } | |
1945 | |
1946 /* | |
1947 * Add 'c' to string of shown command chars. | |
1948 * Return TRUE if output has been written (and setcursor() has been called). | |
1949 */ | |
1950 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1951 add_to_showcmd(int c) |
7 | 1952 { |
1953 char_u *p; | |
1954 int old_len; | |
1955 int extra_len; | |
1956 int overflow; | |
1957 int i; | |
1958 static int ignore[] = | |
1959 { | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1960 #ifdef FEAT_GUI |
7 | 1961 K_VER_SCROLLBAR, K_HOR_SCROLLBAR, |
1962 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM, | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1963 #endif |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1964 K_IGNORE, K_PS, |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1965 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE, |
7 | 1966 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE, |
1967 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE, | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1968 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT, |
7 | 1969 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE, |
631 | 1970 K_CURSORHOLD, |
7 | 1971 0 |
1972 }; | |
1973 | |
641 | 1974 if (!p_sc || msg_silent != 0) |
7 | 1975 return FALSE; |
1976 | |
1977 if (showcmd_visual) | |
1978 { | |
1979 showcmd_buf[0] = NUL; | |
1980 showcmd_visual = FALSE; | |
1981 } | |
1982 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1983 // Ignore keys that are scrollbar updates and mouse clicks |
7 | 1984 if (IS_SPECIAL(c)) |
1985 for (i = 0; ignore[i] != 0; ++i) | |
1986 if (ignore[i] == c) | |
1987 return FALSE; | |
1988 | |
1989 p = transchar(c); | |
5535 | 1990 if (*p == ' ') |
1991 STRCPY(p, "<20>"); | |
7 | 1992 old_len = (int)STRLEN(showcmd_buf); |
1993 extra_len = (int)STRLEN(p); | |
1994 overflow = old_len + extra_len - SHOWCMD_COLS; | |
1995 if (overflow > 0) | |
1362 | 1996 mch_memmove(showcmd_buf, showcmd_buf + overflow, |
1997 old_len - overflow + 1); | |
7 | 1998 STRCAT(showcmd_buf, p); |
1999 | |
2000 if (char_avail()) | |
2001 return FALSE; | |
2002 | |
2003 display_showcmd(); | |
2004 | |
2005 return TRUE; | |
2006 } | |
2007 | |
2008 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2009 add_to_showcmd_c(int c) |
7 | 2010 { |
2011 if (!add_to_showcmd(c)) | |
2012 setcursor(); | |
2013 } | |
2014 | |
2015 /* | |
2016 * Delete 'len' characters from the end of the shown command. | |
2017 */ | |
2018 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2019 del_from_showcmd(int len) |
7 | 2020 { |
2021 int old_len; | |
2022 | |
2023 if (!p_sc) | |
2024 return; | |
2025 | |
2026 old_len = (int)STRLEN(showcmd_buf); | |
2027 if (len > old_len) | |
2028 len = old_len; | |
2029 showcmd_buf[old_len - len] = NUL; | |
2030 | |
2031 if (!char_avail()) | |
2032 display_showcmd(); | |
2033 } | |
2034 | |
2035 /* | |
2036 * push_showcmd() and pop_showcmd() are used when waiting for the user to type | |
2037 * something and there is a partial mapping. | |
2038 */ | |
2039 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2040 push_showcmd(void) |
7 | 2041 { |
2042 if (p_sc) | |
2043 STRCPY(old_showcmd_buf, showcmd_buf); | |
2044 } | |
2045 | |
2046 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2047 pop_showcmd(void) |
7 | 2048 { |
2049 if (!p_sc) | |
2050 return; | |
2051 | |
2052 STRCPY(showcmd_buf, old_showcmd_buf); | |
2053 | |
2054 display_showcmd(); | |
2055 } | |
2056 | |
2057 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2058 display_showcmd(void) |
7 | 2059 { |
2060 int len; | |
2061 | |
2062 cursor_off(); | |
2063 | |
2064 len = (int)STRLEN(showcmd_buf); | |
2065 if (len == 0) | |
2066 showcmd_is_clear = TRUE; | |
2067 else | |
2068 { | |
2069 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0); | |
2070 showcmd_is_clear = FALSE; | |
2071 } | |
2072 | |
2073 /* | |
1188 | 2074 * clear the rest of an old message by outputting up to SHOWCMD_COLS |
2075 * spaces | |
7 | 2076 */ |
2077 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0); | |
2078 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2079 setcursor(); // put cursor back where it belongs |
7 | 2080 } |
2081 #endif | |
2082 | |
2083 /* | |
2084 * When "check" is FALSE, prepare for commands that scroll the window. | |
2085 * When "check" is TRUE, take care of scroll-binding after the window has | |
2086 * scrolled. Called from normal_cmd() and edit(). | |
2087 */ | |
2088 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2089 do_check_scrollbind(int check) |
7 | 2090 { |
2091 static win_T *old_curwin = NULL; | |
2092 static linenr_T old_topline = 0; | |
2093 #ifdef FEAT_DIFF | |
2094 static int old_topfill = 0; | |
2095 #endif | |
2096 static buf_T *old_buf = NULL; | |
2097 static colnr_T old_leftcol = 0; | |
2098 | |
2099 if (check && curwin->w_p_scb) | |
2100 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2101 // If a ":syncbind" command was just used, don't scroll, only reset |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2102 // the values. |
7 | 2103 if (did_syncbind) |
2104 did_syncbind = FALSE; | |
2105 else if (curwin == old_curwin) | |
2106 { | |
2107 /* | |
2108 * Synchronize other windows, as necessary according to | |
2109 * 'scrollbind'. Don't do this after an ":edit" command, except | |
2110 * when 'diff' is set. | |
2111 */ | |
2112 if ((curwin->w_buffer == old_buf | |
2113 #ifdef FEAT_DIFF | |
2114 || curwin->w_p_diff | |
2115 #endif | |
2116 ) | |
2117 && (curwin->w_topline != old_topline | |
2118 #ifdef FEAT_DIFF | |
2119 || curwin->w_topfill != old_topfill | |
2120 #endif | |
2121 || curwin->w_leftcol != old_leftcol)) | |
2122 { | |
2123 check_scrollbind(curwin->w_topline - old_topline, | |
2124 (long)(curwin->w_leftcol - old_leftcol)); | |
2125 } | |
2126 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2127 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt' |
7 | 2128 { |
2129 /* | |
2130 * When switching between windows, make sure that the relative | |
2131 * vertical offset is valid for the new window. The relative | |
2132 * offset is invalid whenever another 'scrollbind' window has | |
2133 * scrolled to a point that would force the current window to | |
2134 * scroll past the beginning or end of its buffer. When the | |
2135 * resync is performed, some of the other 'scrollbind' windows may | |
2136 * need to jump so that the current window's relative position is | |
2137 * visible on-screen. | |
2138 */ | |
2139 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L); | |
2140 } | |
2141 curwin->w_scbind_pos = curwin->w_topline; | |
2142 } | |
2143 | |
2144 old_curwin = curwin; | |
2145 old_topline = curwin->w_topline; | |
2146 #ifdef FEAT_DIFF | |
2147 old_topfill = curwin->w_topfill; | |
2148 #endif | |
2149 old_buf = curwin->w_buffer; | |
2150 old_leftcol = curwin->w_leftcol; | |
2151 } | |
2152 | |
2153 /* | |
2154 * Synchronize any windows that have "scrollbind" set, based on the | |
2155 * number of rows by which the current window has changed | |
2156 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>) | |
2157 */ | |
2158 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2159 check_scrollbind(linenr_T topline_diff, long leftcol_diff) |
7 | 2160 { |
2161 int want_ver; | |
2162 int want_hor; | |
2163 win_T *old_curwin = curwin; | |
2164 buf_T *old_curbuf = curbuf; | |
2165 int old_VIsual_select = VIsual_select; | |
2166 int old_VIsual_active = VIsual_active; | |
2167 colnr_T tgt_leftcol = curwin->w_leftcol; | |
2168 long topline; | |
2169 long y; | |
2170 | |
2171 /* | |
2172 * check 'scrollopt' string for vertical and horizontal scroll options | |
2173 */ | |
2174 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0); | |
2175 #ifdef FEAT_DIFF | |
2176 want_ver |= old_curwin->w_p_diff; | |
2177 #endif | |
2178 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0)); | |
2179 | |
2180 /* | |
2181 * loop through the scrollbound windows and scroll accordingly | |
2182 */ | |
2183 VIsual_select = VIsual_active = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9399
diff
changeset
|
2184 FOR_ALL_WINDOWS(curwin) |
7 | 2185 { |
2186 curbuf = curwin->w_buffer; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2187 // skip original window and windows with 'noscrollbind' |
7 | 2188 if (curwin != old_curwin && curwin->w_p_scb) |
2189 { | |
2190 /* | |
2191 * do the vertical scroll | |
2192 */ | |
2193 if (want_ver) | |
2194 { | |
2195 #ifdef FEAT_DIFF | |
2196 if (old_curwin->w_p_diff && curwin->w_p_diff) | |
2197 { | |
2198 diff_set_topline(old_curwin, curwin); | |
2199 } | |
2200 else | |
2201 #endif | |
2202 { | |
2203 curwin->w_scbind_pos += topline_diff; | |
2204 topline = curwin->w_scbind_pos; | |
2205 if (topline > curbuf->b_ml.ml_line_count) | |
2206 topline = curbuf->b_ml.ml_line_count; | |
2207 if (topline < 1) | |
2208 topline = 1; | |
2209 | |
2210 y = topline - curwin->w_topline; | |
2211 if (y > 0) | |
2212 scrollup(y, FALSE); | |
2213 else | |
2214 scrolldown(-y, FALSE); | |
2215 } | |
2216 | |
2217 redraw_later(VALID); | |
2218 cursor_correct(); | |
2219 curwin->w_redr_status = TRUE; | |
2220 } | |
2221 | |
2222 /* | |
2223 * do the horizontal scroll | |
2224 */ | |
2225 if (want_hor && curwin->w_leftcol != tgt_leftcol) | |
2226 { | |
2227 curwin->w_leftcol = tgt_leftcol; | |
2228 leftcol_changed(); | |
2229 } | |
2230 } | |
2231 } | |
2232 | |
2233 /* | |
2234 * reset current-window | |
2235 */ | |
2236 VIsual_select = old_VIsual_select; | |
2237 VIsual_active = old_VIsual_active; | |
2238 curwin = old_curwin; | |
2239 curbuf = old_curbuf; | |
2240 } | |
2241 | |
2242 /* | |
2243 * Command character that's ignored. | |
2244 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use | |
2130
279380a812ad
updated for version 7.2.412
Bram Moolenaar <bram@zimbu.org>
parents:
2112
diff
changeset
|
2245 * xon/xoff. |
7 | 2246 */ |
2247 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2248 nv_ignore(cmdarg_T *cap) |
7 | 2249 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2250 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now |
7 | 2251 } |
2252 | |
2253 /* | |
620 | 2254 * Command character that doesn't do anything, but unlike nv_ignore() does |
2255 * start edit(). Used for "startinsert" executed while starting up. | |
2256 */ | |
2257 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2258 nv_nop(cmdarg_T *cap UNUSED) |
620 | 2259 { |
2260 } | |
2261 | |
2262 /* | |
7 | 2263 * Command character doesn't exist. |
2264 */ | |
2265 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2266 nv_error(cmdarg_T *cap) |
7 | 2267 { |
2268 clearopbeep(cap->oap); | |
2269 } | |
2270 | |
2271 /* | |
2272 * <Help> and <F1> commands. | |
2273 */ | |
2274 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2275 nv_help(cmdarg_T *cap) |
7 | 2276 { |
2277 if (!checkclearopq(cap->oap)) | |
2278 ex_help(NULL); | |
2279 } | |
2280 | |
2281 /* | |
2282 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor. | |
2283 */ | |
2284 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2285 nv_addsub(cmdarg_T *cap) |
7 | 2286 { |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
2287 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
2288 if (bt_prompt(curbuf) && !prompt_curpos_editable()) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
2289 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
2290 else |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
2291 #endif |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2292 if (!VIsual_active && cap->oap->op_type == OP_NOP) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2293 { |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2294 prep_redo_cmd(cap); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2295 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2296 op_addsub(cap->oap, cap->count1, cap->arg); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2297 cap->oap->op_type = OP_NOP; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2298 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2299 else if (VIsual_active) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2300 nv_operator(cap); |
6868 | 2301 else |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2302 clearop(cap->oap); |
7 | 2303 } |
2304 | |
2305 /* | |
2306 * CTRL-F, CTRL-B, etc: Scroll page up or down. | |
2307 */ | |
2308 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2309 nv_page(cmdarg_T *cap) |
7 | 2310 { |
2311 if (!checkclearop(cap->oap)) | |
819 | 2312 { |
2313 if (mod_mask & MOD_MASK_CTRL) | |
2314 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2315 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward |
819 | 2316 if (cap->arg == BACKWARD) |
2317 goto_tabpage(-(int)cap->count1); | |
2318 else | |
2319 goto_tabpage((int)cap->count0); | |
2320 } | |
2321 else | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12467
diff
changeset
|
2322 (void)onepage(cap->arg, cap->count1); |
819 | 2323 } |
7 | 2324 } |
2325 | |
2326 /* | |
2327 * Implementation of "gd" and "gD" command. | |
2328 */ | |
2329 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2330 nv_gd( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2331 oparg_T *oap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2332 int nchar, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2333 int thisblock) // 1 for "1gd" and "1gD" |
7 | 2334 { |
2335 int len; | |
503 | 2336 char_u *ptr; |
2337 | |
2338 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0 | |
8923
face93b02af4
commit https://github.com/vim/vim/commit/1538fc34fae3fae39773ca43f6ff52401fce61d8
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
2339 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START) |
26101
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2340 == FAIL) |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2341 { |
503 | 2342 clearopbeep(oap); |
26101
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2343 } |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2344 else |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2345 { |
503 | 2346 #ifdef FEAT_FOLDING |
26101
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2347 if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP) |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2348 foldOpenCursor(); |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2349 #endif |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2350 // clear any search statistics |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2351 if (messaging() && !msg_silent && !shortmess(SHM_SEARCHCOUNT)) |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2352 clear_cmdline = TRUE; |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2353 } |
503 | 2354 } |
2355 | |
2356 /* | |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2357 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2358 * otherwise. |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2359 */ |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2360 static int |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2361 is_ident(char_u *line, int offset) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2362 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2363 int i; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2364 int incomment = FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2365 int instring = 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2366 int prev = 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2367 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2368 for (i = 0; i < offset && line[i] != NUL; i++) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2369 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2370 if (instring != 0) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2371 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2372 if (prev != '\\' && line[i] == instring) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2373 instring = 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2374 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2375 else if ((line[i] == '"' || line[i] == '\'') && !incomment) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2376 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2377 instring = line[i]; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2378 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2379 else |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2380 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2381 if (incomment) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2382 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2383 if (prev == '*' && line[i] == '/') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2384 incomment = FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2385 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2386 else if (prev == '/' && line[i] == '*') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2387 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2388 incomment = TRUE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2389 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2390 else if (prev == '/' && line[i] == '/') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2391 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2392 return FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2393 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2394 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2395 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2396 prev = line[i]; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2397 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2398 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2399 return incomment == FALSE && instring == 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2400 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2401 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2402 /* |
523 | 2403 * Search for variable declaration of "ptr[len]". |
2404 * When "locally" is TRUE in the current function ("gd"), otherwise in the | |
2405 * current file ("gD"). | |
2406 * When "thisblock" is TRUE check the {} block scope. | |
503 | 2407 * Return FAIL when not found. |
2408 */ | |
2409 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2410 find_decl( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2411 char_u *ptr, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2412 int len, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2413 int locally, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2414 int thisblock, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2415 int flags_arg) // flags passed to searchit() |
503 | 2416 { |
7 | 2417 char_u *pat; |
2418 pos_T old_pos; | |
503 | 2419 pos_T par_pos; |
2420 pos_T found_pos; | |
7 | 2421 int t; |
2422 int save_p_ws; | |
2423 int save_p_scs; | |
503 | 2424 int retval = OK; |
944 | 2425 int incll; |
9315
1b4946fa3777
commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
2426 int searchflags = flags_arg; |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2427 int valid; |
503 | 2428 |
2429 if ((pat = alloc(len + 7)) == NULL) | |
2430 return FAIL; | |
268 | 2431 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2432 // Put "\V" before the pattern to avoid that the special meaning of "." |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2433 // and "~" causes trouble. |
268 | 2434 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s", |
2435 len, ptr); | |
7 | 2436 old_pos = curwin->w_cursor; |
2437 save_p_ws = p_ws; | |
2438 save_p_scs = p_scs; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2439 p_ws = FALSE; // don't wrap around end of file now |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2440 p_scs = FALSE; // don't switch ignorecase off now |
7 | 2441 |
2442 /* | |
2443 * With "gD" go to line 1. | |
2444 * With "gd" Search back for the start of the current function, then go | |
2445 * back until a blank line. If this fails go to line 1. | |
2446 */ | |
944 | 2447 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE)) |
7 | 2448 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2449 setpcmark(); // Set in findpar() otherwise |
7 | 2450 curwin->w_cursor.lnum = 1; |
539 | 2451 par_pos = curwin->w_cursor; |
7 | 2452 } |
2453 else | |
2454 { | |
539 | 2455 par_pos = curwin->w_cursor; |
7 | 2456 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL) |
2457 --curwin->w_cursor.lnum; | |
2458 } | |
2459 curwin->w_cursor.col = 0; | |
2460 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2461 // Search forward for the identifier, ignore comment lines. |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
2462 CLEAR_POS(&found_pos); |
503 | 2463 for (;;) |
2464 { | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
2465 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD, |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
2466 pat, 1L, searchflags, RE_LAST, NULL); |
503 | 2467 if (curwin->w_cursor.lnum >= old_pos.lnum) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2468 t = FAIL; // match after start is failure too |
523 | 2469 |
718 | 2470 if (thisblock && t != FAIL) |
523 | 2471 { |
2472 pos_T *pos; | |
2473 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2474 // Check that the block the match is in doesn't end before the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2475 // position where we started the search from. |
523 | 2476 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD, |
2477 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL | |
2478 && pos->lnum < old_pos.lnum) | |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2479 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2480 // There can't be a useful match before the end of this block. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2481 // Skip to the end. |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2482 curwin->w_cursor = *pos; |
523 | 2483 continue; |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2484 } |
523 | 2485 } |
2486 | |
503 | 2487 if (t == FAIL) |
2488 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2489 // If we previously found a valid position, use it. |
503 | 2490 if (found_pos.lnum != 0) |
2491 { | |
2492 curwin->w_cursor = found_pos; | |
2493 t = OK; | |
2494 } | |
2495 break; | |
2496 } | |
3562 | 2497 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0) |
503 | 2498 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2499 // Ignore this line, continue at start of next line. |
503 | 2500 ++curwin->w_cursor.lnum; |
2501 curwin->w_cursor.col = 0; | |
2502 continue; | |
2503 } | |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2504 valid = is_ident(ml_get_curline(), curwin->w_cursor.col); |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2505 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2506 // If the current position is not a valid identifier and a previous |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2507 // match is present, favor that one instead. |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2508 if (!valid && found_pos.lnum != 0) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2509 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2510 curwin->w_cursor = found_pos; |
503 | 2511 break; |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2512 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2513 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2514 // Global search: use first valid match found |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2515 if (valid && !locally) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2516 break; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2517 if (valid && curwin->w_cursor.lnum >= par_pos.lnum) |
503 | 2518 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2519 // If we previously found a valid position, use it. |
503 | 2520 if (found_pos.lnum != 0) |
2521 curwin->w_cursor = found_pos; | |
2522 break; | |
2523 } | |
2524 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2525 // For finding a local variable and the match is before the "{" or |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2526 // inside a comment, continue searching. For K&R style function |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2527 // declarations this skips the function header without types. |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2528 if (!valid) |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
2529 CLEAR_POS(&found_pos); |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2530 else |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2531 found_pos = curwin->w_cursor; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2532 // Remove SEARCH_START from flags to avoid getting stuck at one |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2533 // position. |
9315
1b4946fa3777
commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
2534 searchflags &= ~SEARCH_START; |
503 | 2535 } |
2536 | |
2537 if (t == FAIL) | |
2538 { | |
2539 retval = FAIL; | |
7 | 2540 curwin->w_cursor = old_pos; |
2541 } | |
2542 else | |
2543 { | |
2544 curwin->w_set_curswant = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2545 // "n" searches forward now |
7 | 2546 reset_search_dir(); |
2547 } | |
2548 | |
2549 vim_free(pat); | |
2550 p_ws = save_p_ws; | |
2551 p_scs = save_p_scs; | |
503 | 2552 |
2553 return retval; | |
7 | 2554 } |
2555 | |
2556 /* | |
2557 * Move 'dist' lines in direction 'dir', counting lines by *screen* | |
2558 * lines rather than lines in the file. | |
2559 * 'dist' must be positive. | |
2560 * | |
2561 * Return OK if able to move cursor, FAIL otherwise. | |
2562 */ | |
2563 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2564 nv_screengo(oparg_T *oap, int dir, long dist) |
7 | 2565 { |
2566 int linelen = linetabsize(ml_get_curline()); | |
2567 int retval = OK; | |
2568 int atend = FALSE; | |
2569 int n; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2570 int col_off1; // margin offset for first screen line |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2571 int col_off2; // margin offset for wrapped screen line |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2572 int width1; // text width for first screen line |
26094
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2573 int width2; // text width for wrapped screen line |
7 | 2574 |
2575 oap->motion_type = MCHAR; | |
5192
c28202427d71
updated for version 7.4a.022
Bram Moolenaar <bram@vim.org>
parents:
5162
diff
changeset
|
2576 oap->inclusive = (curwin->w_curswant == MAXCOL); |
7 | 2577 |
2578 col_off1 = curwin_col_off(); | |
2579 col_off2 = col_off1 - curwin_col_off2(); | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
2580 width1 = curwin->w_width - col_off1; |
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
2581 width2 = curwin->w_width - col_off2; |
6559 | 2582 if (width2 == 0) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2583 width2 = 1; // avoid divide by zero |
7 | 2584 |
2585 if (curwin->w_width != 0) | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
2586 { |
7 | 2587 /* |
2588 * Instead of sticking at the last character of the buffer line we | |
2589 * try to stick in the last column of the screen. | |
2590 */ | |
2591 if (curwin->w_curswant == MAXCOL) | |
2592 { | |
2593 atend = TRUE; | |
2594 validate_virtcol(); | |
2595 if (width1 <= 0) | |
2596 curwin->w_curswant = 0; | |
2597 else | |
2598 { | |
2599 curwin->w_curswant = width1 - 1; | |
2600 if (curwin->w_virtcol > curwin->w_curswant) | |
2601 curwin->w_curswant += ((curwin->w_virtcol | |
2602 - curwin->w_curswant - 1) / width2 + 1) * width2; | |
2603 } | |
2604 } | |
2605 else | |
2606 { | |
2607 if (linelen > width1) | |
2608 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; | |
2609 else | |
2610 n = width1; | |
18291
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2611 if (curwin->w_curswant >= (colnr_T)n) |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2612 curwin->w_curswant = n - 1; |
7 | 2613 } |
2614 | |
2615 while (dist--) | |
2616 { | |
2617 if (dir == BACKWARD) | |
2618 { | |
24341
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2619 if ((long)curwin->w_curswant >= width1 |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2620 #ifdef FEAT_FOLDING |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2621 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL) |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2622 #endif |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2623 ) |
18291
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2624 // Move back within the line. This can give a negative value |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2625 // for w_curswant if width1 < width2 (with cpoptions+=n), |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2626 // which will get clipped to column 0. |
7 | 2627 curwin->w_curswant -= width2; |
2628 else | |
2629 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2630 // to previous line |
23687
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2631 #ifdef FEAT_FOLDING |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2632 // Move to the start of a closed fold. Don't do that when |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2633 // 'foldopen' contains "all": it will open in a moment. |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2634 if (!(fdo_flags & FDO_ALL)) |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2635 (void)hasFolding(curwin->w_cursor.lnum, |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2636 &curwin->w_cursor.lnum, NULL); |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2637 #endif |
7 | 2638 if (curwin->w_cursor.lnum == 1) |
2639 { | |
2640 retval = FAIL; | |
2641 break; | |
2642 } | |
2643 --curwin->w_cursor.lnum; | |
23687
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
2644 |
7 | 2645 linelen = linetabsize(ml_get_curline()); |
2646 if (linelen > width1) | |
2647 curwin->w_curswant += (((linelen - width1 - 1) / width2) | |
2648 + 1) * width2; | |
2649 } | |
2650 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2651 else // dir == FORWARD |
7 | 2652 { |
2653 if (linelen > width1) | |
2654 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; | |
2655 else | |
2656 n = width1; | |
24341
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2657 if (curwin->w_curswant + width2 < (colnr_T)n |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2658 #ifdef FEAT_FOLDING |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2659 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL) |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2660 #endif |
0e1b8b98f9f4
patch 8.2.2711: "gj" in a closed fold does not move out of the fold
Bram Moolenaar <Bram@vim.org>
parents:
24012
diff
changeset
|
2661 ) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2662 // move forward within line |
7 | 2663 curwin->w_curswant += width2; |
2664 else | |
2665 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2666 // to next line |
7 | 2667 #ifdef FEAT_FOLDING |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2668 // Move to the end of a closed fold. |
7 | 2669 (void)hasFolding(curwin->w_cursor.lnum, NULL, |
2670 &curwin->w_cursor.lnum); | |
2671 #endif | |
2672 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count) | |
2673 { | |
2674 retval = FAIL; | |
2675 break; | |
2676 } | |
2677 curwin->w_cursor.lnum++; | |
2678 curwin->w_curswant %= width2; | |
18291
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2679 // Check if the cursor has moved below the number display |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2680 // when width1 < width2 (with cpoptions+=n). Subtract width2 |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2681 // to get a negative value for w_curswant, which will get |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2682 // clipped to column 0. |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2683 if (curwin->w_curswant >= width1) |
11f68eb58fda
patch 8.1.2140: "gk" and "gj" do not work correctly in number column
Bram Moolenaar <Bram@vim.org>
parents:
18219
diff
changeset
|
2684 curwin->w_curswant -= width2; |
2911 | 2685 linelen = linetabsize(ml_get_curline()); |
7 | 2686 } |
2687 } | |
2688 } | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
2689 } |
7 | 2690 |
5600 | 2691 if (virtual_active() && atend) |
2692 coladvance(MAXCOL); | |
2693 else | |
2694 coladvance(curwin->w_curswant); | |
7 | 2695 |
2696 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap) | |
2697 { | |
6178 | 2698 colnr_T virtcol; |
26094
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2699 int c; |
6178 | 2700 |
7 | 2701 /* |
2702 * Check for landing on a character that got split at the end of the | |
2703 * last line. We want to advance a screenline, not end up in the same | |
2704 * screenline or move two screenlines. | |
2705 */ | |
2706 validate_virtcol(); | |
6178 | 2707 virtcol = curwin->w_virtcol; |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2708 #if defined(FEAT_LINEBREAK) |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18485
diff
changeset
|
2709 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL) |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18485
diff
changeset
|
2710 virtcol -= vim_strsize(get_showbreak_value(curwin)); |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2711 #endif |
6178 | 2712 |
26094
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2713 c = (*mb_ptr2char)(ml_get_cursor()); |
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2714 if (dir == FORWARD && virtcol < curwin->w_curswant |
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2715 && (curwin->w_curswant <= (colnr_T)width1) |
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2716 && !vim_isprintc(c) && c > 255) |
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2717 oneright(); |
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2718 |
6178 | 2719 if (virtcol > curwin->w_curswant |
7 | 2720 && (curwin->w_curswant < (colnr_T)width1 |
2721 ? (curwin->w_curswant > (colnr_T)width1 / 2) | |
2722 : ((curwin->w_curswant - width1) % width2 | |
2723 > (colnr_T)width2 / 2))) | |
2724 --curwin->w_cursor.col; | |
2725 } | |
2726 | |
2727 if (atend) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2728 curwin->w_curswant = MAXCOL; // stick in the last column |
7 | 2729 |
2730 return retval; | |
2731 } | |
2732 | |
2733 /* | |
2734 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down. | |
2735 * cap->arg must be TRUE for CTRL-E. | |
2736 */ | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
2737 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2738 nv_scroll_line(cmdarg_T *cap) |
7 | 2739 { |
2740 if (!checkclearop(cap->oap)) | |
2741 scroll_redraw(cap->arg, cap->count1); | |
2742 } | |
2743 | |
2744 /* | |
2745 * Scroll "count" lines up or down, and redraw. | |
2746 */ | |
2747 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2748 scroll_redraw(int up, long count) |
7 | 2749 { |
2750 linenr_T prev_topline = curwin->w_topline; | |
2751 #ifdef FEAT_DIFF | |
2752 int prev_topfill = curwin->w_topfill; | |
2753 #endif | |
2754 linenr_T prev_lnum = curwin->w_cursor.lnum; | |
2755 | |
2756 if (up) | |
2757 scrollup(count, TRUE); | |
2758 else | |
2759 scrolldown(count, TRUE); | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15697
diff
changeset
|
2760 if (get_scrolloff_value()) |
7 | 2761 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2762 // Adjust the cursor position for 'scrolloff'. Mark w_topline as |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2763 // valid, otherwise the screen jumps back at the end of the file. |
7 | 2764 cursor_correct(); |
2765 check_cursor_moved(curwin); | |
2766 curwin->w_valid |= VALID_TOPLINE; | |
2767 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2768 // If moved back to where we were, at least move the cursor, otherwise |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2769 // we get stuck at one position. Don't move the cursor up if the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2770 // first line of the buffer is already on the screen |
7 | 2771 while (curwin->w_topline == prev_topline |
2772 #ifdef FEAT_DIFF | |
2773 && curwin->w_topfill == prev_topfill | |
2774 #endif | |
2775 ) | |
2776 { | |
2777 if (up) | |
2778 { | |
2779 if (curwin->w_cursor.lnum > prev_lnum | |
2780 || cursor_down(1L, FALSE) == FAIL) | |
2781 break; | |
2782 } | |
2783 else | |
2784 { | |
2785 if (curwin->w_cursor.lnum < prev_lnum | |
2786 || prev_topline == 1L | |
2787 || cursor_up(1L, FALSE) == FAIL) | |
2788 break; | |
2789 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2790 // Mark w_topline as valid, otherwise the screen jumps back at the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2791 // end of the file. |
7 | 2792 check_cursor_moved(curwin); |
2793 curwin->w_valid |= VALID_TOPLINE; | |
2794 } | |
2795 } | |
2796 if (curwin->w_cursor.lnum != prev_lnum) | |
2797 coladvance(curwin->w_curswant); | |
2798 redraw_later(VALID); | |
2799 } | |
2800 | |
2801 /* | |
2802 * Commands that start with "z". | |
2803 */ | |
2804 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2805 nv_zet(cmdarg_T *cap) |
7 | 2806 { |
2807 long n; | |
2808 colnr_T col; | |
2809 int nchar = cap->nchar; | |
2810 #ifdef FEAT_FOLDING | |
2811 long old_fdl = curwin->w_p_fdl; | |
2812 int old_fen = curwin->w_p_fen; | |
2813 #endif | |
737 | 2814 #ifdef FEAT_SPELL |
710 | 2815 int undo = FALSE; |
2816 #endif | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15697
diff
changeset
|
2817 long siso = get_sidescrolloff_value(); |
7 | 2818 |
2819 if (VIM_ISDIGIT(nchar)) | |
2820 { | |
2821 /* | |
2822 * "z123{nchar}": edit the count before obtaining {nchar} | |
2823 */ | |
2824 if (checkclearop(cap->oap)) | |
2825 return; | |
2826 n = nchar - '0'; | |
2827 for (;;) | |
2828 { | |
2829 #ifdef USE_ON_FLY_SCROLL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2830 dont_scroll = TRUE; // disallow scrolling here |
7 | 2831 #endif |
2832 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2833 ++allow_keys; // no mapping for nchar, but allow key codes |
1389 | 2834 nchar = plain_vgetc(); |
7 | 2835 LANGMAP_ADJUST(nchar, TRUE); |
2836 --no_mapping; | |
2837 --allow_keys; | |
2838 #ifdef FEAT_CMDL_INFO | |
2839 (void)add_to_showcmd(nchar); | |
2840 #endif | |
2841 if (nchar == K_DEL || nchar == K_KDEL) | |
2842 n /= 10; | |
2843 else if (VIM_ISDIGIT(nchar)) | |
2844 n = n * 10 + (nchar - '0'); | |
2845 else if (nchar == CAR) | |
2846 { | |
2847 #ifdef FEAT_GUI | |
2848 need_mouse_correct = TRUE; | |
2849 #endif | |
2850 win_setheight((int)n); | |
2851 break; | |
2852 } | |
2853 else if (nchar == 'l' | |
2854 || nchar == 'h' | |
2855 || nchar == K_LEFT | |
229 | 2856 || nchar == K_RIGHT) |
7 | 2857 { |
2858 cap->count1 = n ? n * cap->count1 : cap->count1; | |
2859 goto dozet; | |
2860 } | |
2861 else | |
2862 { | |
2863 clearopbeep(cap->oap); | |
2864 break; | |
2865 } | |
2866 } | |
2867 cap->oap->op_type = OP_NOP; | |
2868 return; | |
2869 } | |
2870 | |
2871 dozet: | |
2872 if ( | |
2873 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2874 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2875 // and "zC" only in Visual mode. "zj" and "zk" are motion |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2876 // commands. |
7 | 2877 cap->nchar != 'f' && cap->nchar != 'F' |
2878 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar)) | |
2879 && cap->nchar != 'j' && cap->nchar != 'k' | |
2880 && | |
2881 #endif | |
2882 checkclearop(cap->oap)) | |
2883 return; | |
2884 | |
2885 /* | |
2886 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb": | |
2887 * If line number given, set cursor. | |
2888 */ | |
2889 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL) | |
2890 && cap->count0 | |
2891 && cap->count0 != curwin->w_cursor.lnum) | |
2892 { | |
2893 setpcmark(); | |
2894 if (cap->count0 > curbuf->b_ml.ml_line_count) | |
2895 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
2896 else | |
2897 curwin->w_cursor.lnum = cap->count0; | |
22 | 2898 check_cursor_col(); |
7 | 2899 } |
2900 | |
2901 switch (nchar) | |
2902 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2903 // "z+", "z<CR>" and "zt": put cursor at top of screen |
7 | 2904 case '+': |
2905 if (cap->count0 == 0) | |
2906 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2907 // No count given: put cursor at the line below screen |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2908 validate_botline(); // make sure w_botline is valid |
7 | 2909 if (curwin->w_botline > curbuf->b_ml.ml_line_count) |
2910 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
2911 else | |
2912 curwin->w_cursor.lnum = curwin->w_botline; | |
2913 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2914 // FALLTHROUGH |
7 | 2915 case NL: |
2916 case CAR: | |
2917 case K_KENTER: | |
2918 beginline(BL_WHITE | BL_FIX); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2919 // FALLTHROUGH |
7 | 2920 |
2921 case 't': scroll_cursor_top(0, TRUE); | |
2922 redraw_later(VALID); | |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2923 set_fraction(curwin); |
7 | 2924 break; |
2925 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2926 // "z." and "zz": put cursor in middle of screen |
7 | 2927 case '.': beginline(BL_WHITE | BL_FIX); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2928 // FALLTHROUGH |
7 | 2929 |
2930 case 'z': scroll_cursor_halfway(TRUE); | |
2931 redraw_later(VALID); | |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2932 set_fraction(curwin); |
7 | 2933 break; |
2934 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2935 // "z^", "z-" and "zb": put cursor at bottom of screen |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2936 case '^': // Strange Vi behavior: <count>z^ finds line at top of window |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2937 // when <count> is at bottom of window, and puts that one at |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2938 // bottom of window. |
7 | 2939 if (cap->count0 != 0) |
2940 { | |
2941 scroll_cursor_bot(0, TRUE); | |
2942 curwin->w_cursor.lnum = curwin->w_topline; | |
2943 } | |
2944 else if (curwin->w_topline == 1) | |
2945 curwin->w_cursor.lnum = 1; | |
2946 else | |
2947 curwin->w_cursor.lnum = curwin->w_topline - 1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2948 // FALLTHROUGH |
7 | 2949 case '-': |
2950 beginline(BL_WHITE | BL_FIX); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2951 // FALLTHROUGH |
7 | 2952 |
2953 case 'b': scroll_cursor_bot(0, TRUE); | |
2954 redraw_later(VALID); | |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2955 set_fraction(curwin); |
7 | 2956 break; |
2957 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2958 // "zH" - scroll screen right half-page |
7 | 2959 case 'H': |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
2960 cap->count1 *= curwin->w_width / 2; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2961 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2962 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2963 // "zh" - scroll screen to the right |
7 | 2964 case 'h': |
2965 case K_LEFT: | |
2966 if (!curwin->w_p_wrap) | |
2967 { | |
2968 if ((colnr_T)cap->count1 > curwin->w_leftcol) | |
2969 curwin->w_leftcol = 0; | |
2970 else | |
2971 curwin->w_leftcol -= (colnr_T)cap->count1; | |
2972 leftcol_changed(); | |
2973 } | |
2974 break; | |
2975 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2976 // "zL" - scroll screen left half-page |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
2977 case 'L': cap->count1 *= curwin->w_width / 2; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2978 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2979 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2980 // "zl" - scroll screen to the left |
7 | 2981 case 'l': |
2982 case K_RIGHT: | |
2983 if (!curwin->w_p_wrap) | |
2984 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2985 // scroll the window left |
7 | 2986 curwin->w_leftcol += (colnr_T)cap->count1; |
2987 leftcol_changed(); | |
2988 } | |
2989 break; | |
2990 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2991 // "zs" - scroll screen, cursor at the start |
7 | 2992 case 's': if (!curwin->w_p_wrap) |
2993 { | |
2994 #ifdef FEAT_FOLDING | |
2995 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2996 col = 0; // like the cursor is in col 0 |
7 | 2997 else |
2998 #endif | |
2999 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL); | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15697
diff
changeset
|
3000 if ((long)col > siso) |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15697
diff
changeset
|
3001 col -= siso; |
7 | 3002 else |
3003 col = 0; | |
3004 if (curwin->w_leftcol != col) | |
3005 { | |
3006 curwin->w_leftcol = col; | |
3007 redraw_later(NOT_VALID); | |
3008 } | |
3009 } | |
3010 break; | |
3011 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3012 // "ze" - scroll screen, cursor at the end |
7 | 3013 case 'e': if (!curwin->w_p_wrap) |
3014 { | |
3015 #ifdef FEAT_FOLDING | |
3016 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3017 col = 0; // like the cursor is in col 0 |
7 | 3018 else |
3019 #endif | |
3020 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col); | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
3021 n = curwin->w_width - curwin_col_off(); |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15697
diff
changeset
|
3022 if ((long)col + siso < n) |
7 | 3023 col = 0; |
3024 else | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15697
diff
changeset
|
3025 col = col + siso - n + 1; |
7 | 3026 if (curwin->w_leftcol != col) |
3027 { | |
3028 curwin->w_leftcol = col; | |
3029 redraw_later(NOT_VALID); | |
3030 } | |
3031 } | |
3032 break; | |
3033 | |
24752
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
3034 // "zp", "zP" in block mode put without addind trailing spaces |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
3035 case 'P': |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
3036 case 'p': nv_put(cap); |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
3037 break; |
24866
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
3038 // "zy" Yank without trailing spaces |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
3039 case 'y': nv_operator(cap); |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
3040 break; |
7 | 3041 #ifdef FEAT_FOLDING |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3042 // "zF": create fold command |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3043 // "zf": create fold operator |
7 | 3044 case 'F': |
3045 case 'f': if (foldManualAllowed(TRUE)) | |
3046 { | |
3047 cap->nchar = 'f'; | |
3048 nv_operator(cap); | |
3049 curwin->w_p_fen = TRUE; | |
3050 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3051 // "zF" is like "zfzf" |
7 | 3052 if (nchar == 'F' && cap->oap->op_type == OP_FOLD) |
3053 { | |
3054 nv_operator(cap); | |
3055 finish_op = TRUE; | |
3056 } | |
3057 } | |
3058 else | |
3059 clearopbeep(cap->oap); | |
3060 break; | |
3061 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3062 // "zd": delete fold at cursor |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3063 // "zD": delete fold at cursor recursively |
7 | 3064 case 'd': |
3065 case 'D': if (foldManualAllowed(FALSE)) | |
3066 { | |
3067 if (VIsual_active) | |
3068 nv_operator(cap); | |
3069 else | |
3070 deleteFold(curwin->w_cursor.lnum, | |
3071 curwin->w_cursor.lnum, nchar == 'D', FALSE); | |
3072 } | |
3073 break; | |
3074 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3075 // "zE": erase all folds |
7 | 3076 case 'E': if (foldmethodIsManual(curwin)) |
3077 { | |
3078 clearFolding(curwin); | |
3079 changed_window_setting(); | |
3080 } | |
3081 else if (foldmethodIsMarker(curwin)) | |
3082 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count, | |
3083 TRUE, FALSE); | |
3084 else | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
3085 emsg(_("E352: Cannot erase folds with current 'foldmethod'")); |
7 | 3086 break; |
3087 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3088 // "zn": fold none: reset 'foldenable' |
7 | 3089 case 'n': curwin->w_p_fen = FALSE; |
3090 break; | |
3091 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3092 // "zN": fold Normal: set 'foldenable' |
7 | 3093 case 'N': curwin->w_p_fen = TRUE; |
3094 break; | |
3095 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3096 // "zi": invert folding: toggle 'foldenable' |
7 | 3097 case 'i': curwin->w_p_fen = !curwin->w_p_fen; |
3098 break; | |
3099 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3100 // "za": open closed fold or close open fold at cursor |
7 | 3101 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) |
3102 openFold(curwin->w_cursor.lnum, cap->count1); | |
3103 else | |
3104 { | |
3105 closeFold(curwin->w_cursor.lnum, cap->count1); | |
3106 curwin->w_p_fen = TRUE; | |
3107 } | |
3108 break; | |
3109 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3110 // "zA": open fold at cursor recursively |
7 | 3111 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) |
3112 openFoldRecurse(curwin->w_cursor.lnum); | |
3113 else | |
3114 { | |
3115 closeFoldRecurse(curwin->w_cursor.lnum); | |
3116 curwin->w_p_fen = TRUE; | |
3117 } | |
3118 break; | |
3119 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3120 // "zo": open fold at cursor or Visual area |
7 | 3121 case 'o': if (VIsual_active) |
3122 nv_operator(cap); | |
3123 else | |
3124 openFold(curwin->w_cursor.lnum, cap->count1); | |
3125 break; | |
3126 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3127 // "zO": open fold recursively |
7 | 3128 case 'O': if (VIsual_active) |
3129 nv_operator(cap); | |
3130 else | |
3131 openFoldRecurse(curwin->w_cursor.lnum); | |
3132 break; | |
3133 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3134 // "zc": close fold at cursor or Visual area |
7 | 3135 case 'c': if (VIsual_active) |
3136 nv_operator(cap); | |
3137 else | |
3138 closeFold(curwin->w_cursor.lnum, cap->count1); | |
3139 curwin->w_p_fen = TRUE; | |
3140 break; | |
3141 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3142 // "zC": close fold recursively |
7 | 3143 case 'C': if (VIsual_active) |
3144 nv_operator(cap); | |
3145 else | |
3146 closeFoldRecurse(curwin->w_cursor.lnum); | |
3147 curwin->w_p_fen = TRUE; | |
3148 break; | |
3149 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3150 // "zv": open folds at the cursor |
7 | 3151 case 'v': foldOpenCursor(); |
3152 break; | |
3153 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3154 // "zx": re-apply 'foldlevel' and open folds at the cursor |
7 | 3155 case 'x': curwin->w_p_fen = TRUE; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3156 curwin->w_foldinvalid = TRUE; // recompute folds |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3157 newFoldLevel(); // update right now |
7 | 3158 foldOpenCursor(); |
3159 break; | |
3160 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3161 // "zX": undo manual opens/closes, re-apply 'foldlevel' |
7 | 3162 case 'X': curwin->w_p_fen = TRUE; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3163 curwin->w_foldinvalid = TRUE; // recompute folds |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3164 old_fdl = -1; // force an update |
7 | 3165 break; |
3166 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3167 // "zm": fold more |
7 | 3168 case 'm': if (curwin->w_p_fdl > 0) |
6725 | 3169 { |
3170 curwin->w_p_fdl -= cap->count1; | |
3171 if (curwin->w_p_fdl < 0) | |
3172 curwin->w_p_fdl = 0; | |
3173 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3174 old_fdl = -1; // force an update |
7 | 3175 curwin->w_p_fen = TRUE; |
3176 break; | |
3177 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3178 // "zM": close all folds |
7 | 3179 case 'M': curwin->w_p_fdl = 0; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3180 old_fdl = -1; // force an update |
7 | 3181 curwin->w_p_fen = TRUE; |
3182 break; | |
3183 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3184 // "zr": reduce folding |
6725 | 3185 case 'r': curwin->w_p_fdl += cap->count1; |
3186 { | |
3187 int d = getDeepestNesting(); | |
3188 | |
3189 if (curwin->w_p_fdl >= d) | |
3190 curwin->w_p_fdl = d; | |
3191 } | |
7 | 3192 break; |
3193 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3194 // "zR": open all folds |
7 | 3195 case 'R': curwin->w_p_fdl = getDeepestNesting(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3196 old_fdl = -1; // force an update |
7 | 3197 break; |
3198 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3199 case 'j': // "zj" move to next fold downwards |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3200 case 'k': // "zk" move to next fold upwards |
7 | 3201 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD, |
3202 cap->count1) == FAIL) | |
3203 clearopbeep(cap->oap); | |
3204 break; | |
3205 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3206 #endif // FEAT_FOLDING |
7 | 3207 |
737 | 3208 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3209 case 'u': // "zug" and "zuw": undo "zg" and "zw" |
710 | 3210 ++no_mapping; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3211 ++allow_keys; // no mapping for nchar, but allow key codes |
1389 | 3212 nchar = plain_vgetc(); |
710 | 3213 LANGMAP_ADJUST(nchar, TRUE); |
3214 --no_mapping; | |
3215 --allow_keys; | |
3216 #ifdef FEAT_CMDL_INFO | |
3217 (void)add_to_showcmd(nchar); | |
3218 #endif | |
3219 if (vim_strchr((char_u *)"gGwW", nchar) == NULL) | |
3220 { | |
3221 clearopbeep(cap->oap); | |
3222 break; | |
3223 } | |
3224 undo = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3225 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3226 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3227 case 'g': // "zg": add good word to word list |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3228 case 'w': // "zw": add wrong word to word list |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3229 case 'G': // "zG": add good word to temp word list |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3230 case 'W': // "zW": add wrong word to temp word list |
310 | 3231 { |
3232 char_u *ptr = NULL; | |
3233 int len; | |
3234 | |
3235 if (checkclearop(cap->oap)) | |
3236 break; | |
3237 if (VIsual_active && get_visual_text(cap, &ptr, &len) | |
3238 == FAIL) | |
3239 return; | |
501 | 3240 if (ptr == NULL) |
3241 { | |
3242 pos_T pos = curwin->w_cursor; | |
3243 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3244 // Find bad word under the cursor. When 'spell' is |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3245 // off this fails and find_ident_under_cursor() is |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3246 // used below. |
5374 | 3247 emsg_off++; |
534 | 3248 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL); |
5374 | 3249 emsg_off--; |
501 | 3250 if (len != 0 && curwin->w_cursor.col <= pos.col) |
3251 ptr = ml_get_pos(&curwin->w_cursor); | |
3252 curwin->w_cursor = pos; | |
3253 } | |
3254 | |
310 | 3255 if (ptr == NULL && (len = find_ident_under_cursor(&ptr, |
3256 FIND_IDENT)) == 0) | |
3257 return; | |
17682
3dbff5d37520
patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrare
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3258 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W' |
3dbff5d37520
patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrare
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3259 ? SPELL_ADD_BAD : SPELL_ADD_GOOD, |
710 | 3260 (nchar == 'G' || nchar == 'W') |
3261 ? 0 : (int)cap->count1, | |
3262 undo); | |
310 | 3263 } |
316 | 3264 break; |
323 | 3265 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3266 case '=': // "z=": suggestions for a badly spelled word |
638 | 3267 if (!checkclearop(cap->oap)) |
485 | 3268 spell_suggest((int)cap->count0); |
323 | 3269 break; |
310 | 3270 #endif |
3271 | |
7 | 3272 default: clearopbeep(cap->oap); |
3273 } | |
3274 | |
3275 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3276 // Redraw when 'foldenable' changed |
7 | 3277 if (old_fen != curwin->w_p_fen) |
3278 { | |
3279 # ifdef FEAT_DIFF | |
3280 win_T *wp; | |
3281 | |
3282 if (foldmethodIsDiff(curwin) && curwin->w_p_scb) | |
3283 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3284 // Adjust 'foldenable' in diff-synced windows. |
7 | 3285 FOR_ALL_WINDOWS(wp) |
3286 { | |
3287 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb) | |
3288 { | |
3289 wp->w_p_fen = curwin->w_p_fen; | |
3290 changed_window_setting_win(wp); | |
3291 } | |
3292 } | |
3293 } | |
3294 # endif | |
3295 changed_window_setting(); | |
3296 } | |
3297 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3298 // Redraw when 'foldlevel' changed. |
7 | 3299 if (old_fdl != curwin->w_p_fdl) |
3300 newFoldLevel(); | |
3301 #endif | |
3302 } | |
3303 | |
3304 #ifdef FEAT_GUI | |
3305 /* | |
3306 * Vertical scrollbar movement. | |
3307 */ | |
3308 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3309 nv_ver_scrollbar(cmdarg_T *cap) |
7 | 3310 { |
3311 if (cap->oap->op_type != OP_NOP) | |
3312 clearopbeep(cap->oap); | |
3313 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3314 // Even if an operator was pending, we still want to scroll |
7 | 3315 gui_do_scroll(); |
3316 } | |
3317 | |
3318 /* | |
3319 * Horizontal scrollbar movement. | |
3320 */ | |
3321 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3322 nv_hor_scrollbar(cmdarg_T *cap) |
7 | 3323 { |
3324 if (cap->oap->op_type != OP_NOP) | |
3325 clearopbeep(cap->oap); | |
3326 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3327 // Even if an operator was pending, we still want to scroll |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3328 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 3329 } |
3330 #endif | |
3331 | |
690 | 3332 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
685 | 3333 /* |
3334 * Click in GUI tab. | |
3335 */ | |
3336 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3337 nv_tabline(cmdarg_T *cap) |
685 | 3338 { |
3339 if (cap->oap->op_type != OP_NOP) | |
3340 clearopbeep(cap->oap); | |
3341 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3342 // Even if an operator was pending, we still want to jump tabs. |
685 | 3343 goto_tabpage(current_tab); |
3344 } | |
686 | 3345 |
3346 /* | |
3347 * Selected item in tab line menu. | |
3348 */ | |
3349 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3350 nv_tabmenu(cmdarg_T *cap) |
686 | 3351 { |
3352 if (cap->oap->op_type != OP_NOP) | |
3353 clearopbeep(cap->oap); | |
3354 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3355 // Even if an operator was pending, we still want to jump tabs. |
690 | 3356 handle_tabmenu(); |
3357 } | |
3358 | |
3359 /* | |
3360 * Handle selecting an item of the GUI tab line menu. | |
3361 * Used in Normal and Insert mode. | |
3362 */ | |
3363 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3364 handle_tabmenu(void) |
690 | 3365 { |
686 | 3366 switch (current_tabmenu) |
3367 { | |
3368 case TABLINE_MENU_CLOSE: | |
3369 if (current_tab == 0) | |
3370 do_cmdline_cmd((char_u *)"tabclose"); | |
3371 else | |
3372 { | |
3373 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d", | |
3374 current_tab); | |
3375 do_cmdline_cmd(IObuff); | |
3376 } | |
3377 break; | |
3378 | |
3379 case TABLINE_MENU_NEW: | |
6631 | 3380 if (current_tab == 0) |
3381 do_cmdline_cmd((char_u *)"$tabnew"); | |
3382 else | |
3383 { | |
3384 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew", | |
3385 current_tab - 1); | |
3386 do_cmdline_cmd(IObuff); | |
3387 } | |
686 | 3388 break; |
3389 | |
3390 case TABLINE_MENU_OPEN: | |
6631 | 3391 if (current_tab == 0) |
3392 do_cmdline_cmd((char_u *)"browse $tabnew"); | |
3393 else | |
3394 { | |
3395 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew", | |
3396 current_tab - 1); | |
3397 do_cmdline_cmd(IObuff); | |
3398 } | |
686 | 3399 break; |
3400 } | |
3401 } | |
685 | 3402 #endif |
3403 | |
7 | 3404 /* |
3405 * "Q" command. | |
3406 */ | |
3407 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3408 nv_exmode(cmdarg_T *cap) |
7 | 3409 { |
3410 /* | |
3411 * Ignore 'Q' in Visual mode, just give a beep. | |
3412 */ | |
3413 if (VIsual_active) | |
6949 | 3414 vim_beep(BO_EX); |
5735 | 3415 else if (!checkclearop(cap->oap)) |
7 | 3416 do_exmode(FALSE); |
3417 } | |
3418 | |
3419 /* | |
3420 * Handle a ":" command. | |
3421 */ | |
3422 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3423 nv_colon(cmdarg_T *cap) |
7 | 3424 { |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3425 int old_p_im; |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3426 int cmd_result; |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3427 int is_cmdkey = cap->cmdchar == K_COMMAND; |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3428 |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3429 if (VIsual_active && !is_cmdkey) |
7 | 3430 nv_operator(cap); |
3431 else | |
3432 { | |
3433 if (cap->oap->op_type != OP_NOP) | |
3434 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3435 // Using ":" as a movement is characterwise exclusive. |
7 | 3436 cap->oap->motion_type = MCHAR; |
3437 cap->oap->inclusive = FALSE; | |
3438 } | |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3439 else if (cap->count0 && !is_cmdkey) |
7 | 3440 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3441 // translate "count:" into ":.,.+(count - 1)" |
7 | 3442 stuffcharReadbuff('.'); |
3443 if (cap->count0 > 1) | |
3444 { | |
3445 stuffReadbuff((char_u *)",.+"); | |
3446 stuffnumReadbuff((long)cap->count0 - 1L); | |
3447 } | |
3448 } | |
3449 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3450 // When typing, don't type below an old message |
7 | 3451 if (KeyTyped) |
3452 compute_cmdrow(); | |
3453 | |
3454 old_p_im = p_im; | |
3455 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3456 // get a command line and execute it |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3457 cmd_result = do_cmdline(NULL, is_cmdkey ? getcmdkeycmd : getexline, NULL, |
7 | 3458 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0); |
3459 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3460 // If 'insertmode' changed, enter or exit Insert mode |
7 | 3461 if (p_im != old_p_im) |
3462 { | |
3463 if (p_im) | |
3464 restart_edit = 'i'; | |
3465 else | |
3466 restart_edit = 0; | |
3467 } | |
3468 | |
4256 | 3469 if (cmd_result == FAIL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3470 // The Ex command failed, do not execute the operator. |
4256 | 3471 clearop(cap->oap); |
3472 else if (cap->oap->op_type != OP_NOP | |
7 | 3473 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count |
3474 || cap->oap->start.col > | |
4256 | 3475 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum)) |
3476 || did_emsg | |
3477 )) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3478 // The start of the operator has become invalid by the Ex command. |
7 | 3479 clearopbeep(cap->oap); |
3480 } | |
3481 } | |
3482 | |
3483 /* | |
3484 * Handle CTRL-G command. | |
3485 */ | |
3486 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3487 nv_ctrlg(cmdarg_T *cap) |
7 | 3488 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3489 if (VIsual_active) // toggle Selection/Visual mode |
7 | 3490 { |
3491 VIsual_select = !VIsual_select; | |
26042
6b39ab99e367
patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents:
25994
diff
changeset
|
3492 trigger_modechanged(); |
7 | 3493 showmode(); |
3494 } | |
5735 | 3495 else if (!checkclearop(cap->oap)) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3496 // print full name if count given or :cd used |
7 | 3497 fileinfo((int)cap->count0, FALSE, TRUE); |
3498 } | |
3499 | |
3500 /* | |
3501 * Handle CTRL-H <Backspace> command. | |
3502 */ | |
3503 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3504 nv_ctrlh(cmdarg_T *cap) |
7 | 3505 { |
3506 if (VIsual_active && VIsual_select) | |
3507 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3508 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode |
7 | 3509 v_visop(cap); |
3510 } | |
3511 else | |
3512 nv_left(cap); | |
3513 } | |
3514 | |
3515 /* | |
3516 * CTRL-L: clear screen and redraw. | |
3517 */ | |
3518 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3519 nv_clear(cmdarg_T *cap) |
7 | 3520 { |
3521 if (!checkclearop(cap->oap)) | |
3522 { | |
3523 #ifdef FEAT_SYN_HL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3524 // Clear all syntax states to force resyncing. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3525 syn_stack_free_all(curwin->w_s); |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3526 # ifdef FEAT_RELTIME |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3527 { |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3528 win_T *wp; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3529 |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3530 FOR_ALL_WINDOWS(wp) |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3531 wp->w_s->b_syn_slow = FALSE; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3532 } |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3533 # endif |
7 | 3534 #endif |
3535 redraw_later(CLEAR); | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3536 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3537 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3538 if (!gui.in_use) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3539 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16447
diff
changeset
|
3540 resize_console_buf(); |
15866
6ddcd10aa7af
patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
3541 #endif |
7 | 3542 } |
3543 } | |
3544 | |
3545 /* | |
3546 * CTRL-O: In Select mode: switch to Visual mode for one command. | |
3547 * Otherwise: Go to older pcmark. | |
3548 */ | |
3549 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3550 nv_ctrlo(cmdarg_T *cap) |
7 | 3551 { |
3552 if (VIsual_active && VIsual_select) | |
3553 { | |
3554 VIsual_select = FALSE; | |
26042
6b39ab99e367
patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents:
25994
diff
changeset
|
3555 trigger_modechanged(); |
7 | 3556 showmode(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3557 restart_VIsual_select = 2; // restart Select mode later |
7 | 3558 } |
3559 else | |
3560 { | |
3561 cap->count1 = -cap->count1; | |
3562 nv_pcmark(cap); | |
3563 } | |
3564 } | |
3565 | |
3566 /* | |
15006
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3567 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is |
1fd8e32532f7
patch 8.1.0514: CTRL-W ^ does not work when alternate buffer has no name
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
3568 * not named. |
7 | 3569 */ |
3570 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3571 nv_hat(cmdarg_T *cap) |
7 | 3572 { |
3573 if (!checkclearopq(cap->oap)) | |
3574 (void)buflist_getfile((int)cap->count0, (linenr_T)0, | |
3575 GETF_SETMARK|GETF_ALT, FALSE); | |
3576 } | |
3577 | |
3578 /* | |
3579 * "Z" commands. | |
3580 */ | |
3581 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3582 nv_Zet(cmdarg_T *cap) |
7 | 3583 { |
3584 if (!checkclearopq(cap->oap)) | |
3585 { | |
3586 switch (cap->nchar) | |
3587 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3588 // "ZZ": equivalent to ":x". |
7 | 3589 case 'Z': do_cmdline_cmd((char_u *)"x"); |
3590 break; | |
3591 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3592 // "ZQ": equivalent to ":q!" (Elvis compatible). |
7 | 3593 case 'Q': do_cmdline_cmd((char_u *)"q!"); |
3594 break; | |
3595 | |
3596 default: clearopbeep(cap->oap); | |
3597 } | |
3598 } | |
3599 } | |
3600 | |
3601 /* | |
3602 * Call nv_ident() as if "c1" was used, with "c2" as next character. | |
3603 */ | |
3604 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3605 do_nv_ident(int c1, int c2) |
7 | 3606 { |
3607 oparg_T oa; | |
3608 cmdarg_T ca; | |
3609 | |
3610 clear_oparg(&oa); | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
3611 CLEAR_FIELD(ca); |
7 | 3612 ca.oap = &oa; |
3613 ca.cmdchar = c1; | |
3614 ca.nchar = c2; | |
3615 nv_ident(&ca); | |
3616 } | |
3617 | |
3618 /* | |
3619 * Handle the commands that use the word under the cursor. | |
3620 * [g] CTRL-] :ta to current identifier | |
3621 * [g] 'K' run program for current identifier | |
3622 * [g] '*' / to current identifier or string | |
3623 * [g] '#' ? to current identifier or string | |
3624 * g ']' :tselect for current identifier | |
3625 */ | |
3626 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3627 nv_ident(cmdarg_T *cap) |
7 | 3628 { |
3629 char_u *ptr = NULL; | |
3630 char_u *buf; | |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3631 unsigned buflen; |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
3632 char_u *newbuf; |
7 | 3633 char_u *p; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3634 char_u *kp; // value of 'keywordprg' |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3635 int kp_help; // 'keywordprg' is ":he" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3636 int kp_ex; // 'keywordprg' starts with ":" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3637 int n = 0; // init for GCC |
7 | 3638 int cmdchar; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3639 int g_cmd; // "g" command |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3640 int tag_cmd = FALSE; |
7 | 3641 char_u *aux_ptr; |
3642 int isman; | |
3643 int isman_s; | |
3644 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3645 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]" |
7 | 3646 { |
3647 cmdchar = cap->nchar; | |
3648 g_cmd = TRUE; | |
3649 } | |
3650 else | |
3651 { | |
3652 cmdchar = cap->cmdchar; | |
3653 g_cmd = FALSE; | |
3654 } | |
3655 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3656 if (cmdchar == POUND) // the pound sign, '#' for English keyboards |
7 | 3657 cmdchar = '#'; |
3658 | |
3659 /* | |
3660 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode. | |
3661 */ | |
3662 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K') | |
3663 { | |
3664 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL) | |
3665 return; | |
3666 if (checkclearopq(cap->oap)) | |
3667 return; | |
3668 } | |
3669 | |
3670 if (ptr == NULL && (n = find_ident_under_cursor(&ptr, | |
3671 (cmdchar == '*' || cmdchar == '#') | |
3672 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0) | |
3673 { | |
3674 clearop(cap->oap); | |
3675 return; | |
3676 } | |
3677 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3678 // Allocate buffer to put the command in. Inserting backslashes can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3679 // double the length of the word. p_kp / curbuf->b_p_kp could be added |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3680 // and some numbers. |
7 | 3681 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp); |
3682 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0 | |
3683 || STRCMP(kp, ":help") == 0); | |
12236
55cf556d8ce1
patch 8.0.0998: strange error when using K while only spaces are selected
Christian Brabandt <cb@256bit.org>
parents:
12164
diff
changeset
|
3684 if (kp_help && *skipwhite(ptr) == NUL) |
55cf556d8ce1
patch 8.0.0998: strange error when using K while only spaces are selected
Christian Brabandt <cb@256bit.org>
parents:
12164
diff
changeset
|
3685 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3686 emsg(_(e_noident)); // found white space only |
12236
55cf556d8ce1
patch 8.0.0998: strange error when using K while only spaces are selected
Christian Brabandt <cb@256bit.org>
parents:
12164
diff
changeset
|
3687 return; |
55cf556d8ce1
patch 8.0.0998: strange error when using K while only spaces are selected
Christian Brabandt <cb@256bit.org>
parents:
12164
diff
changeset
|
3688 } |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3689 kp_ex = (*kp == ':'); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3690 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp)); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3691 buf = alloc(buflen); |
7 | 3692 if (buf == NULL) |
3693 return; | |
3694 buf[0] = NUL; | |
3695 | |
3696 switch (cmdchar) | |
3697 { | |
3698 case '*': | |
3699 case '#': | |
3700 /* | |
3701 * Put cursor at start of word, makes search skip the word | |
3702 * under the cursor. | |
3703 * Call setpcmark() first, so "*``" puts the cursor back where | |
3704 * it was. | |
3705 */ | |
3706 setpcmark(); | |
3707 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline()); | |
3708 | |
3709 if (!g_cmd && vim_iswordp(ptr)) | |
3710 STRCPY(buf, "\\<"); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3711 no_smartcase = TRUE; // don't use 'smartcase' now |
7 | 3712 break; |
3713 | |
3714 case 'K': | |
3715 if (kp_help) | |
3716 STRCPY(buf, "he! "); | |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3717 else if (kp_ex) |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3718 { |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3719 if (cap->count0 != 0) |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3720 vim_snprintf((char *)buf, buflen, "%s %ld", |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3721 kp, cap->count0); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3722 else |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3723 STRCPY(buf, kp); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3724 STRCAT(buf, " "); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3725 } |
7 | 3726 else |
3727 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3728 // An external command will probably use an argument starting |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3729 // with "-" as an option. To avoid trouble we skip the "-". |
1728 | 3730 while (*ptr == '-' && n > 0) |
3731 { | |
1712 | 3732 ++ptr; |
1728 | 3733 --n; |
3734 } | |
3735 if (n == 0) | |
3736 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3737 emsg(_(e_noident)); // found dashes only |
1728 | 3738 vim_free(buf); |
3739 return; | |
3740 } | |
1712 | 3741 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3742 // When a count is given, turn it into a range. Is this |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3743 // really what we want? |
7 | 3744 isman = (STRCMP(kp, "man") == 0); |
3745 isman_s = (STRCMP(kp, "man -s") == 0); | |
3746 if (cap->count0 != 0 && !(isman || isman_s)) | |
3747 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1); | |
3748 | |
3749 STRCAT(buf, "! "); | |
3750 if (cap->count0 == 0 && isman_s) | |
3751 STRCAT(buf, "man"); | |
3752 else | |
3753 STRCAT(buf, kp); | |
3754 STRCAT(buf, " "); | |
3755 if (cap->count0 != 0 && (isman || isman_s)) | |
3756 { | |
3757 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0); | |
3758 STRCAT(buf, " "); | |
3759 } | |
3760 } | |
3761 break; | |
3762 | |
3763 case ']': | |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3764 tag_cmd = TRUE; |
7 | 3765 #ifdef FEAT_CSCOPE |
3766 if (p_cst) | |
3767 STRCPY(buf, "cstag "); | |
3768 else | |
3769 #endif | |
3770 STRCPY(buf, "ts "); | |
3771 break; | |
3772 | |
3773 default: | |
2112
6b5d641bcdd4
updated for version 7.2.395
Bram Moolenaar <bram@zimbu.org>
parents:
2049
diff
changeset
|
3774 tag_cmd = TRUE; |
7 | 3775 if (curbuf->b_help) |
3776 STRCPY(buf, "he! "); | |
3777 else | |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3778 { |
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3779 if (g_cmd) |
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3780 STRCPY(buf, "tj "); |
21941
f65e76638eb5
patch 8.2.1520: Vim9: CTRL-] used in :def function does not work
Bram Moolenaar <Bram@vim.org>
parents:
21703
diff
changeset
|
3781 else if (cap->count0 == 0) |
f65e76638eb5
patch 8.2.1520: Vim9: CTRL-] used in :def function does not work
Bram Moolenaar <Bram@vim.org>
parents:
21703
diff
changeset
|
3782 STRCPY(buf, "ta "); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3783 else |
21941
f65e76638eb5
patch 8.2.1520: Vim9: CTRL-] used in :def function does not work
Bram Moolenaar <Bram@vim.org>
parents:
21703
diff
changeset
|
3784 sprintf((char *)buf, ":%ldta ", cap->count0); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3785 } |
7 | 3786 } |
3787 | |
3788 /* | |
3789 * Now grab the chars in the identifier | |
3790 */ | |
1712 | 3791 if (cmdchar == 'K' && !kp_help) |
3792 { | |
1728 | 3793 ptr = vim_strnsave(ptr, n); |
10330
71ca6a16e818
commit https://github.com/vim/vim/commit/426f3754223c8ff8a1bc51d6ba1eba11e8982ebc
Christian Brabandt <cb@256bit.org>
parents:
10251
diff
changeset
|
3794 if (kp_ex) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3795 // Escape the argument properly for an Ex command |
25994
e8873138ffbb
patch 8.2.3530: ":buf {a}" fails while ":edit {a}" works
Bram Moolenaar <Bram@vim.org>
parents:
25921
diff
changeset
|
3796 p = vim_strsave_fnameescape(ptr, VSE_NONE); |
10330
71ca6a16e818
commit https://github.com/vim/vim/commit/426f3754223c8ff8a1bc51d6ba1eba11e8982ebc
Christian Brabandt <cb@256bit.org>
parents:
10251
diff
changeset
|
3797 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3798 // Escape the argument properly for a shell command |
10330
71ca6a16e818
commit https://github.com/vim/vim/commit/426f3754223c8ff8a1bc51d6ba1eba11e8982ebc
Christian Brabandt <cb@256bit.org>
parents:
10251
diff
changeset
|
3799 p = vim_strsave_shellescape(ptr, TRUE, TRUE); |
1728 | 3800 vim_free(ptr); |
1712 | 3801 if (p == NULL) |
3802 { | |
3803 vim_free(buf); | |
3804 return; | |
3805 } | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16742
diff
changeset
|
3806 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1); |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
3807 if (newbuf == NULL) |
1712 | 3808 { |
3809 vim_free(buf); | |
3810 vim_free(p); | |
3811 return; | |
3812 } | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
3813 buf = newbuf; |
1712 | 3814 STRCAT(buf, p); |
3815 vim_free(p); | |
3816 } | |
7 | 3817 else |
1712 | 3818 { |
3819 if (cmdchar == '*') | |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3820 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\"); |
1712 | 3821 else if (cmdchar == '#') |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3822 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\"); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3823 else if (tag_cmd) |
2603 | 3824 { |
3825 if (curbuf->b_help) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3826 // ":help" handles unescaped argument |
2603 | 3827 aux_ptr = (char_u *)""; |
3828 else | |
3829 aux_ptr = (char_u *)"\\|\"\n["; | |
3830 } | |
1712 | 3831 else |
3832 aux_ptr = (char_u *)"\\|\"\n*?["; | |
3833 | |
3834 p = buf + STRLEN(buf); | |
3835 while (n-- > 0) | |
3836 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3837 // put a backslash before \ and some others |
1712 | 3838 if (vim_strchr(aux_ptr, *ptr) != NULL) |
3839 *p++ = '\\'; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3840 // When current byte is a part of multibyte character, copy all |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3841 // bytes of that character. |
1712 | 3842 if (has_mbyte) |
3843 { | |
3844 int i; | |
3845 int len = (*mb_ptr2len)(ptr) - 1; | |
3846 | |
3847 for (i = 0; i < len && n >= 1; ++i, --n) | |
3848 *p++ = *ptr++; | |
3849 } | |
3850 *p++ = *ptr++; | |
3851 } | |
3852 *p = NUL; | |
3853 } | |
7 | 3854 |
3855 /* | |
3856 * Execute the command. | |
3857 */ | |
3858 if (cmdchar == '*' || cmdchar == '#') | |
3859 { | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3860 if (!g_cmd && (has_mbyte |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3861 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr)) |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3862 : vim_iswordc(ptr[-1]))) |
7 | 3863 STRCAT(buf, "\\>"); |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17520
diff
changeset
|
3864 |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17520
diff
changeset
|
3865 // put pattern in search history |
2024 | 3866 init_history(); |
7 | 3867 add_to_history(HIST_SEARCH, buf, TRUE, NUL); |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17520
diff
changeset
|
3868 |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3869 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL); |
7 | 3870 } |
3871 else | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3872 { |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3873 g_tag_at_cursor = TRUE; |
7 | 3874 do_cmdline_cmd(buf); |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3875 g_tag_at_cursor = FALSE; |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3876 } |
7 | 3877 |
3878 vim_free(buf); | |
3879 } | |
3880 | |
3881 /* | |
3882 * Get visually selected text, within one line only. | |
3883 * Returns FAIL if more than one line selected. | |
3884 */ | |
344 | 3885 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3886 get_visual_text( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3887 cmdarg_T *cap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3888 char_u **pp, // return: start of selected text |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3889 int *lenp) // return: length of selected text |
7 | 3890 { |
3891 if (VIsual_mode != 'V') | |
3892 unadjust_for_sel(); | |
3893 if (VIsual.lnum != curwin->w_cursor.lnum) | |
3894 { | |
344 | 3895 if (cap != NULL) |
3896 clearopbeep(cap->oap); | |
7 | 3897 return FAIL; |
3898 } | |
3899 if (VIsual_mode == 'V') | |
3900 { | |
3901 *pp = ml_get_curline(); | |
3902 *lenp = (int)STRLEN(*pp); | |
3903 } | |
3904 else | |
3905 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
3906 if (LT_POS(curwin->w_cursor, VIsual)) |
7 | 3907 { |
3908 *pp = ml_get_pos(&curwin->w_cursor); | |
3909 *lenp = VIsual.col - curwin->w_cursor.col + 1; | |
3910 } | |
3911 else | |
3912 { | |
3913 *pp = ml_get_pos(&VIsual); | |
3914 *lenp = curwin->w_cursor.col - VIsual.col + 1; | |
3915 } | |
26159
34606aec52b3
patch 8.2.3611: crash when using CTRL-W f without finding a file name
Bram Moolenaar <Bram@vim.org>
parents:
26157
diff
changeset
|
3916 if (**pp == NUL) |
34606aec52b3
patch 8.2.3611: crash when using CTRL-W f without finding a file name
Bram Moolenaar <Bram@vim.org>
parents:
26157
diff
changeset
|
3917 *lenp = 0; |
34606aec52b3
patch 8.2.3611: crash when using CTRL-W f without finding a file name
Bram Moolenaar <Bram@vim.org>
parents:
26157
diff
changeset
|
3918 if (has_mbyte && *lenp > 0) |
34606aec52b3
patch 8.2.3611: crash when using CTRL-W f without finding a file name
Bram Moolenaar <Bram@vim.org>
parents:
26157
diff
changeset
|
3919 // Correct the length to include all bytes of the last character. |
474 | 3920 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1; |
7 | 3921 } |
3922 reset_VIsual_and_resel(); | |
3923 return OK; | |
3924 } | |
3925 | |
3926 /* | |
3927 * CTRL-T: backwards in tag stack | |
3928 */ | |
3929 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3930 nv_tagpop(cmdarg_T *cap) |
7 | 3931 { |
3932 if (!checkclearopq(cap->oap)) | |
3933 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE); | |
3934 } | |
3935 | |
3936 /* | |
3937 * Handle scrolling command 'H', 'L' and 'M'. | |
3938 */ | |
3939 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3940 nv_scroll(cmdarg_T *cap) |
7 | 3941 { |
3942 int used = 0; | |
3943 long n; | |
3944 #ifdef FEAT_FOLDING | |
3945 linenr_T lnum; | |
3946 #endif | |
3947 int half; | |
3948 | |
3949 cap->oap->motion_type = MLINE; | |
3950 setpcmark(); | |
3951 | |
3952 if (cap->cmdchar == 'L') | |
3953 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3954 validate_botline(); // make sure curwin->w_botline is valid |
7 | 3955 curwin->w_cursor.lnum = curwin->w_botline - 1; |
3956 if (cap->count1 - 1 >= curwin->w_cursor.lnum) | |
3957 curwin->w_cursor.lnum = 1; | |
3958 else | |
9 | 3959 { |
3960 #ifdef FEAT_FOLDING | |
3961 if (hasAnyFolding(curwin)) | |
3962 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3963 // Count a fold for one screen line. |
9 | 3964 for (n = cap->count1 - 1; n > 0 |
3965 && curwin->w_cursor.lnum > curwin->w_topline; --n) | |
3966 { | |
3967 (void)hasFolding(curwin->w_cursor.lnum, | |
3968 &curwin->w_cursor.lnum, NULL); | |
3969 --curwin->w_cursor.lnum; | |
3970 } | |
3971 } | |
3972 else | |
3973 #endif | |
3974 curwin->w_cursor.lnum -= cap->count1 - 1; | |
3975 } | |
7 | 3976 } |
3977 else | |
3978 { | |
3979 if (cap->cmdchar == 'M') | |
3980 { | |
3981 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3982 // Don't count filler lines above the window. |
7 | 3983 used -= diff_check_fill(curwin, curwin->w_topline) |
3984 - curwin->w_topfill; | |
3985 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3986 validate_botline(); // make sure w_empty_rows is valid |
7 | 3987 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2; |
3988 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n) | |
3989 { | |
3990 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3991 // Count half he number of filler lines to be "below this |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3992 // line" and half to be "above the next line". |
7 | 3993 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline |
3994 + n) / 2 >= half) | |
3995 { | |
3996 --n; | |
3997 break; | |
3998 } | |
3999 #endif | |
4000 used += plines(curwin->w_topline + n); | |
4001 if (used >= half) | |
4002 break; | |
4003 #ifdef FEAT_FOLDING | |
4004 if (hasFolding(curwin->w_topline + n, NULL, &lnum)) | |
4005 n = lnum - curwin->w_topline; | |
4006 #endif | |
4007 } | |
4008 if (n > 0 && used > curwin->w_height) | |
4009 --n; | |
4010 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4011 else // (cap->cmdchar == 'H') |
9 | 4012 { |
7 | 4013 n = cap->count1 - 1; |
9 | 4014 #ifdef FEAT_FOLDING |
4015 if (hasAnyFolding(curwin)) | |
4016 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4017 // Count a fold for one screen line. |
9 | 4018 lnum = curwin->w_topline; |
4019 while (n-- > 0 && lnum < curwin->w_botline - 1) | |
4020 { | |
7009 | 4021 (void)hasFolding(lnum, NULL, &lnum); |
9 | 4022 ++lnum; |
4023 } | |
4024 n = lnum - curwin->w_topline; | |
4025 } | |
4026 #endif | |
4027 } | |
7 | 4028 curwin->w_cursor.lnum = curwin->w_topline + n; |
4029 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
4030 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4031 } | |
4032 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4033 // Correct for 'so', except when an operator is pending. |
12646
b908a3682f6e
patch 8.0.1201: "yL" is affected by 'scrolloff'
Christian Brabandt <cb@256bit.org>
parents:
12519
diff
changeset
|
4034 if (cap->oap->op_type == OP_NOP) |
b908a3682f6e
patch 8.0.1201: "yL" is affected by 'scrolloff'
Christian Brabandt <cb@256bit.org>
parents:
12519
diff
changeset
|
4035 cursor_correct(); |
7 | 4036 beginline(BL_SOL | BL_FIX); |
4037 } | |
4038 | |
4039 /* | |
4040 * Cursor right commands. | |
4041 */ | |
4042 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4043 nv_right(cmdarg_T *cap) |
7 | 4044 { |
4045 long n; | |
5735 | 4046 int past_line; |
7 | 4047 |
180 | 4048 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) |
4049 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4050 // <C-Right> and <S-Right> move a word or WORD right |
180 | 4051 if (mod_mask & MOD_MASK_CTRL) |
4052 cap->arg = TRUE; | |
4053 nv_wordcmd(cap); | |
4054 return; | |
4055 } | |
4056 | |
7 | 4057 cap->oap->motion_type = MCHAR; |
4058 cap->oap->inclusive = FALSE; | |
5735 | 4059 past_line = (VIsual_active && *p_sel != 'o'); |
4060 | |
7 | 4061 /* |
5735 | 4062 * In virtual edit mode, there's no such thing as "past_line", as lines |
4063 * are (theoretically) infinitely long. | |
7 | 4064 */ |
4065 if (virtual_active()) | |
5735 | 4066 past_line = 0; |
7 | 4067 |
4068 for (n = cap->count1; n > 0; --n) | |
4069 { | |
5735 | 4070 if ((!past_line && oneright() == FAIL) |
4071 || (past_line && *ml_get_cursor() == NUL) | |
1877 | 4072 ) |
7 | 4073 { |
4074 /* | |
714 | 4075 * <Space> wraps to next line if 'whichwrap' has 's'. |
4076 * 'l' wraps to next line if 'whichwrap' has 'l'. | |
4077 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'. | |
7 | 4078 */ |
4079 if ( ((cap->cmdchar == ' ' | |
4080 && vim_strchr(p_ww, 's') != NULL) | |
4081 || (cap->cmdchar == 'l' | |
4082 && vim_strchr(p_ww, 'l') != NULL) | |
229 | 4083 || (cap->cmdchar == K_RIGHT |
7 | 4084 && vim_strchr(p_ww, '>') != NULL)) |
4085 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
4086 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4087 // When deleting we also count the NL as a character. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4088 // Set cap->oap->inclusive when last char in the line is |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4089 // included, move to next line after that |
714 | 4090 if ( cap->oap->op_type != OP_NOP |
7 | 4091 && !cap->oap->inclusive |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
4092 && !LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 4093 cap->oap->inclusive = TRUE; |
4094 else | |
4095 { | |
4096 ++curwin->w_cursor.lnum; | |
4097 curwin->w_cursor.col = 0; | |
4098 curwin->w_cursor.coladd = 0; | |
4099 curwin->w_set_curswant = TRUE; | |
4100 cap->oap->inclusive = FALSE; | |
4101 } | |
4102 continue; | |
4103 } | |
4104 if (cap->oap->op_type == OP_NOP) | |
4105 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4106 // Only beep and flush if not moved at all |
7 | 4107 if (n == cap->count1) |
4108 beep_flush(); | |
4109 } | |
4110 else | |
4111 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
4112 if (!LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 4113 cap->oap->inclusive = TRUE; |
4114 } | |
4115 break; | |
4116 } | |
5735 | 4117 else if (past_line) |
7 | 4118 { |
4119 curwin->w_set_curswant = TRUE; | |
4120 if (virtual_active()) | |
4121 oneright(); | |
4122 else | |
5735 | 4123 { |
7 | 4124 if (has_mbyte) |
18128
aeabc666a119
patch 8.1.2059: fix for "x" deleting a fold has side effects
Bram Moolenaar <Bram@vim.org>
parents:
18114
diff
changeset
|
4125 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor()); |
7 | 4126 else |
4127 ++curwin->w_cursor.col; | |
4128 } | |
4129 } | |
4130 } | |
4131 #ifdef FEAT_FOLDING | |
4132 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped | |
4133 && cap->oap->op_type == OP_NOP) | |
4134 foldOpenCursor(); | |
4135 #endif | |
4136 } | |
4137 | |
4138 /* | |
4139 * Cursor left commands. | |
4140 * | |
4141 * Returns TRUE when operator end should not be adjusted. | |
4142 */ | |
4143 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4144 nv_left(cmdarg_T *cap) |
7 | 4145 { |
4146 long n; | |
4147 | |
180 | 4148 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) |
4149 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4150 // <C-Left> and <S-Left> move a word or WORD left |
180 | 4151 if (mod_mask & MOD_MASK_CTRL) |
4152 cap->arg = 1; | |
4153 nv_bck_word(cap); | |
4154 return; | |
4155 } | |
4156 | |
7 | 4157 cap->oap->motion_type = MCHAR; |
4158 cap->oap->inclusive = FALSE; | |
4159 for (n = cap->count1; n > 0; --n) | |
4160 { | |
4161 if (oneleft() == FAIL) | |
4162 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4163 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4164 // 'h' wraps to previous line if 'whichwrap' has 'h'. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4165 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'. |
7 | 4166 if ( (((cap->cmdchar == K_BS |
4167 || cap->cmdchar == Ctrl_H) | |
4168 && vim_strchr(p_ww, 'b') != NULL) | |
4169 || (cap->cmdchar == 'h' | |
4170 && vim_strchr(p_ww, 'h') != NULL) | |
229 | 4171 || (cap->cmdchar == K_LEFT |
7 | 4172 && vim_strchr(p_ww, '<') != NULL)) |
4173 && curwin->w_cursor.lnum > 1) | |
4174 { | |
4175 --(curwin->w_cursor.lnum); | |
4176 coladvance((colnr_T)MAXCOL); | |
4177 curwin->w_set_curswant = TRUE; | |
4178 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4179 // When the NL before the first char has to be deleted we |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4180 // put the cursor on the NUL after the previous line. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4181 // This is a very special case, be careful! |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4182 // Don't adjust op_end now, otherwise it won't work. |
7 | 4183 if ( (cap->oap->op_type == OP_DELETE |
4184 || cap->oap->op_type == OP_CHANGE) | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
4185 && !LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 4186 { |
5682 | 4187 char_u *cp = ml_get_cursor(); |
4188 | |
4189 if (*cp != NUL) | |
4190 { | |
4191 if (has_mbyte) | |
4192 curwin->w_cursor.col += (*mb_ptr2len)(cp); | |
4193 else | |
4194 ++curwin->w_cursor.col; | |
4195 } | |
7 | 4196 cap->retval |= CA_NO_ADJ_OP_END; |
4197 } | |
4198 continue; | |
4199 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4200 // Only beep and flush if not moved at all |
7 | 4201 else if (cap->oap->op_type == OP_NOP && n == cap->count1) |
4202 beep_flush(); | |
4203 break; | |
4204 } | |
4205 } | |
4206 #ifdef FEAT_FOLDING | |
4207 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped | |
4208 && cap->oap->op_type == OP_NOP) | |
4209 foldOpenCursor(); | |
4210 #endif | |
4211 } | |
4212 | |
4213 /* | |
4214 * Cursor up commands. | |
4215 * cap->arg is TRUE for "-": Move cursor to first non-blank. | |
4216 */ | |
4217 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4218 nv_up(cmdarg_T *cap) |
7 | 4219 { |
180 | 4220 if (mod_mask & MOD_MASK_SHIFT) |
4221 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4222 // <S-Up> is page up |
180 | 4223 cap->arg = BACKWARD; |
4224 nv_page(cap); | |
4225 } | |
4226 else | |
4227 { | |
4228 cap->oap->motion_type = MLINE; | |
4229 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) | |
4230 clearopbeep(cap->oap); | |
4231 else if (cap->arg) | |
4232 beginline(BL_WHITE | BL_FIX); | |
4233 } | |
7 | 4234 } |
4235 | |
4236 /* | |
4237 * Cursor down commands. | |
4238 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank. | |
4239 */ | |
4240 static void | |
10192
758f3d5a463d
commit https://github.com/vim/vim/commit/1b010058235fb803c1d4f42a02d2883921be8ef4
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
4241 nv_down(cmdarg_T *cap) |
7 | 4242 { |
180 | 4243 if (mod_mask & MOD_MASK_SHIFT) |
4244 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4245 // <S-Down> is page down |
180 | 4246 cap->arg = FORWARD; |
4247 nv_page(cap); | |
4248 } | |
14397
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
4249 #if defined(FEAT_QUICKFIX) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4250 // Quickfix window only: view the result under the cursor. |
14397
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
4251 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR) |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
4252 qf_view_result(FALSE); |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
4253 #endif |
180 | 4254 else |
7 | 4255 { |
4256 #ifdef FEAT_CMDWIN | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4257 // In the cmdline window a <CR> executes the command. |
170 | 4258 if (cmdwin_type != 0 && cap->cmdchar == CAR) |
7 | 4259 cmdwin_result = CAR; |
4260 else | |
4261 #endif | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4262 #ifdef FEAT_JOB_CHANNEL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4263 // In a prompt buffer a <CR> in the last line invokes the callback. |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4264 if (bt_prompt(curbuf) && cap->cmdchar == CAR |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4265 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4266 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4267 invoke_prompt_callback(); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4268 if (restart_edit == 0) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4269 restart_edit = 'a'; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4270 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4271 else |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4272 #endif |
7 | 4273 { |
4274 cap->oap->motion_type = MLINE; | |
4275 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) | |
4276 clearopbeep(cap->oap); | |
4277 else if (cap->arg) | |
4278 beginline(BL_WHITE | BL_FIX); | |
4279 } | |
4280 } | |
4281 } | |
4282 | |
4283 #ifdef FEAT_SEARCHPATH | |
4284 /* | |
4285 * Grab the file name under the cursor and edit it. | |
4286 */ | |
4287 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4288 nv_gotofile(cmdarg_T *cap) |
7 | 4289 { |
4290 char_u *ptr; | |
681 | 4291 linenr_T lnum = -1; |
7 | 4292 |
633 | 4293 if (text_locked()) |
7 | 4294 { |
4295 clearopbeep(cap->oap); | |
633 | 4296 text_locked_msg(); |
7 | 4297 return; |
4298 } | |
819 | 4299 if (curbuf_locked()) |
4300 { | |
4301 clearop(cap->oap); | |
4302 return; | |
4303 } | |
20375
b790d00d5ccb
patch 8.2.0743: can move to another buffer from a terminal in popup window
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4304 #ifdef FEAT_PROP_POPUP |
b790d00d5ccb
patch 8.2.0743: can move to another buffer from a terminal in popup window
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4305 if (ERROR_IF_TERM_POPUP_WINDOW) |
b790d00d5ccb
patch 8.2.0743: can move to another buffer from a terminal in popup window
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4306 return; |
b790d00d5ccb
patch 8.2.0743: can move to another buffer from a terminal in popup window
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4307 #endif |
7 | 4308 |
681 | 4309 ptr = grab_file_name(cap->count1, &lnum); |
7 | 4310 |
4311 if (ptr != NULL) | |
4312 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4313 // do autowrite if necessary |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11892
diff
changeset
|
4314 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf)) |
7009 | 4315 (void)autowrite(curbuf, FALSE); |
7 | 4316 setpcmark(); |
11436
69b52a770b29
patch 8.0.0602: when gF fails to edit the file the cursor still moves
Christian Brabandt <cb@256bit.org>
parents:
11366
diff
changeset
|
4317 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST, |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11892
diff
changeset
|
4318 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK |
11436
69b52a770b29
patch 8.0.0602: when gF fails to edit the file the cursor still moves
Christian Brabandt <cb@256bit.org>
parents:
11366
diff
changeset
|
4319 && cap->nchar == 'F' && lnum >= 0) |
681 | 4320 { |
4321 curwin->w_cursor.lnum = lnum; | |
4322 check_cursor_lnum(); | |
4323 beginline(BL_SOL | BL_FIX); | |
4324 } | |
7 | 4325 vim_free(ptr); |
4326 } | |
4327 else | |
4328 clearop(cap->oap); | |
4329 } | |
4330 #endif | |
4331 | |
4332 /* | |
4333 * <End> command: to end of current line or last line. | |
4334 */ | |
4335 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4336 nv_end(cmdarg_T *cap) |
7 | 4337 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4338 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line |
180 | 4339 { |
4340 cap->arg = TRUE; | |
7 | 4341 nv_goto(cap); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4342 cap->count1 = 1; // to end of current line |
7 | 4343 } |
4344 nv_dollar(cap); | |
4345 } | |
4346 | |
4347 /* | |
4348 * Handle the "$" command. | |
4349 */ | |
4350 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4351 nv_dollar(cmdarg_T *cap) |
7 | 4352 { |
4353 cap->oap->motion_type = MCHAR; | |
4354 cap->oap->inclusive = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4355 // In virtual mode when off the edge of a line and an operator |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4356 // is pending (whew!) keep the cursor where it is. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4357 // Otherwise, send it to the end of the line. |
7 | 4358 if (!virtual_active() || gchar_cursor() != NUL |
4359 || cap->oap->op_type == OP_NOP) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4360 curwin->w_curswant = MAXCOL; // so we stay at the end |
7 | 4361 if (cursor_down((long)(cap->count1 - 1), |
4362 cap->oap->op_type == OP_NOP) == FAIL) | |
4363 clearopbeep(cap->oap); | |
4364 #ifdef FEAT_FOLDING | |
4365 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4366 foldOpenCursor(); | |
4367 #endif | |
4368 } | |
4369 | |
4370 /* | |
4371 * Implementation of '?' and '/' commands. | |
4372 * If cap->arg is TRUE don't set PC mark. | |
4373 */ | |
4374 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4375 nv_search(cmdarg_T *cap) |
7 | 4376 { |
4377 oparg_T *oap = cap->oap; | |
10098
72e4b7f90465
commit https://github.com/vim/vim/commit/dda933d06c06c2792bd686d059f6ad19191ad30b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4378 pos_T save_cursor = curwin->w_cursor; |
7 | 4379 |
4380 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13) | |
4381 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4382 // Translate "g??" to "g?g?" |
7 | 4383 cap->cmdchar = 'g'; |
4384 cap->nchar = '?'; | |
4385 nv_operator(cap); | |
4386 return; | |
4387 } | |
4388 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4389 // When using 'incsearch' the cursor may be moved to set a different search |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4390 // start position. |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
4391 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE); |
7 | 4392 |
4393 if (cap->searchbuf == NULL) | |
4394 { | |
4395 clearop(oap); | |
4396 return; | |
4397 } | |
4398 | |
6620 | 4399 (void)normal_search(cap, cap->cmdchar, cap->searchbuf, |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
4400 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor)) |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4401 ? 0 : SEARCH_MARK, NULL); |
7 | 4402 } |
4403 | |
4404 /* | |
4405 * Handle "N" and "n" commands. | |
4406 * cap->arg is SEARCH_REV for "N", 0 for "n". | |
4407 */ | |
4408 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4409 nv_next(cmdarg_T *cap) |
7 | 4410 { |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4411 pos_T old = curwin->w_cursor; |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4412 int wrapped = FALSE; |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4413 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped); |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4414 |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4415 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor)) |
6620 | 4416 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4417 // Avoid getting stuck on the current cursor position, which can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4418 // happen when an offset is given and the cursor is on the last char |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4419 // in the buffer: Repeat with count + 1. |
6620 | 4420 cap->count1 += 1; |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4421 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL); |
6620 | 4422 cap->count1 -= 1; |
4423 } | |
7 | 4424 } |
4425 | |
4426 /* | |
4427 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat). | |
4428 * Uses only cap->count1 and cap->oap from "cap". | |
6620 | 4429 * Return 0 for failure, 1 for found, 2 for found and line offset added. |
4430 */ | |
4431 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4432 normal_search( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4433 cmdarg_T *cap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4434 int dir, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4435 char_u *pat, |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4436 int opt, // extra flags for do_search() |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4437 int *wrapped) |
7 | 4438 { |
4439 int i; | |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4440 searchit_arg_T sia; |
7 | 4441 |
4442 cap->oap->motion_type = MCHAR; | |
4443 cap->oap->inclusive = FALSE; | |
4444 cap->oap->use_reg_one = TRUE; | |
4445 curwin->w_set_curswant = TRUE; | |
4446 | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
4447 CLEAR_FIELD(sia); |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
4448 i = do_search(cap->oap, dir, dir, pat, cap->count1, |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4449 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia); |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4450 if (wrapped != NULL) |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4451 *wrapped = sia.sa_wrapped; |
7 | 4452 if (i == 0) |
4453 clearop(cap->oap); | |
4454 else | |
4455 { | |
4456 if (i == 2) | |
4457 cap->oap->motion_type = MLINE; | |
4458 curwin->w_cursor.coladd = 0; | |
4459 #ifdef FEAT_FOLDING | |
4460 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) | |
4461 foldOpenCursor(); | |
4462 #endif | |
4463 } | |
4464 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4465 // "/$" will put the cursor after the end of the line, may need to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4466 // correct that here |
7 | 4467 check_cursor(); |
6620 | 4468 return i; |
7 | 4469 } |
4470 | |
4471 /* | |
4472 * Character search commands. | |
4473 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for | |
4474 * ',' and FALSE for ';'. | |
4475 * cap->nchar is NUL for ',' and ';' (repeat the search) | |
4476 */ | |
4477 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4478 nv_csearch(cmdarg_T *cap) |
7 | 4479 { |
4480 int t_cmd; | |
4481 | |
4482 if (cap->cmdchar == 't' || cap->cmdchar == 'T') | |
4483 t_cmd = TRUE; | |
4484 else | |
4485 t_cmd = FALSE; | |
4486 | |
4487 cap->oap->motion_type = MCHAR; | |
4488 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL) | |
4489 clearopbeep(cap->oap); | |
4490 else | |
4491 { | |
4492 curwin->w_set_curswant = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4493 // Include a Tab for "tx" and for "dfx". |
7 | 4494 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD |
4495 && (t_cmd || cap->oap->op_type != OP_NOP)) | |
4496 { | |
4497 colnr_T scol, ecol; | |
4498 | |
4499 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol); | |
4500 curwin->w_cursor.coladd = ecol - scol; | |
4501 } | |
4502 else | |
4503 curwin->w_cursor.coladd = 0; | |
4504 adjust_for_sel(cap); | |
4505 #ifdef FEAT_FOLDING | |
4506 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4507 foldOpenCursor(); | |
4508 #endif | |
4509 } | |
4510 } | |
4511 | |
4512 /* | |
4513 * "[" and "]" commands. | |
4514 * cap->arg is BACKWARD for "[" and FORWARD for "]". | |
4515 */ | |
4516 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4517 nv_brackets(cmdarg_T *cap) |
7 | 4518 { |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4519 pos_T new_pos = {0, 0, 0}; |
7 | 4520 pos_T prev_pos; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4521 pos_T *pos = NULL; // init for GCC |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4522 pos_T old_pos; // cursor position before command |
7 | 4523 int flag; |
4524 long n; | |
4525 int findc; | |
4526 int c; | |
4527 | |
4528 cap->oap->motion_type = MCHAR; | |
4529 cap->oap->inclusive = FALSE; | |
4530 old_pos = curwin->w_cursor; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4531 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error. |
7 | 4532 |
4533 #ifdef FEAT_SEARCHPATH | |
4534 /* | |
4535 * "[f" or "]f" : Edit file under the cursor (same as "gf") | |
4536 */ | |
4537 if (cap->nchar == 'f') | |
4538 nv_gotofile(cap); | |
4539 else | |
4540 #endif | |
4541 | |
4542 #ifdef FEAT_FIND_ID | |
4543 /* | |
1188 | 4544 * Find the occurrence(s) of the identifier or define under cursor |
4545 * in current and included files or jump to the first occurrence. | |
7 | 4546 * |
4547 * search list jump | |
4548 * fwd bwd fwd bwd fwd bwd | |
4549 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I" | |
4550 * define "]d" "[d" "]D" "[D" "]^D" "[^D" | |
4551 */ | |
4552 if (vim_strchr((char_u *) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4553 # ifdef EBCDIC |
7 | 4554 "iI\005dD\067", |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4555 # else |
7 | 4556 "iI\011dD\004", |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4557 # endif |
7 | 4558 cap->nchar) != NULL) |
4559 { | |
4560 char_u *ptr; | |
4561 int len; | |
4562 | |
4563 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) | |
4564 clearop(cap->oap); | |
4565 else | |
4566 { | |
4567 find_pattern_in_path(ptr, 0, len, TRUE, | |
4568 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE, | |
4569 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY, | |
4570 cap->count1, | |
4571 isupper(cap->nchar) ? ACTION_SHOW_ALL : | |
4572 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO, | |
4573 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1, | |
4574 (linenr_T)MAXLNUM); | |
4575 curwin->w_set_curswant = TRUE; | |
4576 } | |
4577 } | |
4578 else | |
4579 #endif | |
4580 | |
4581 /* | |
4582 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')' | |
4583 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct. | |
4584 * "[/", "[*", "]/", "]*": go to Nth comment start/end. | |
4585 * "[m" or "]m" search for prev/next start of (Java) method. | |
4586 * "[M" or "]M" search for prev/next end of (Java) method. | |
4587 */ | |
4588 if ( (cap->cmdchar == '[' | |
4589 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL) | |
4590 || (cap->cmdchar == ']' | |
4591 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL)) | |
4592 { | |
4593 if (cap->nchar == '*') | |
4594 cap->nchar = '/'; | |
4595 prev_pos.lnum = 0; | |
4596 if (cap->nchar == 'm' || cap->nchar == 'M') | |
4597 { | |
4598 if (cap->cmdchar == '[') | |
4599 findc = '{'; | |
4600 else | |
4601 findc = '}'; | |
4602 n = 9999; | |
4603 } | |
4604 else | |
4605 { | |
4606 findc = cap->nchar; | |
4607 n = cap->count1; | |
4608 } | |
4609 for ( ; n > 0; --n) | |
4610 { | |
4611 if ((pos = findmatchlimit(cap->oap, findc, | |
4612 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL) | |
4613 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4614 if (new_pos.lnum == 0) // nothing found |
7 | 4615 { |
4616 if (cap->nchar != 'm' && cap->nchar != 'M') | |
4617 clearopbeep(cap->oap); | |
4618 } | |
4619 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4620 pos = &new_pos; // use last one found |
7 | 4621 break; |
4622 } | |
4623 prev_pos = new_pos; | |
4624 curwin->w_cursor = *pos; | |
4625 new_pos = *pos; | |
4626 } | |
4627 curwin->w_cursor = old_pos; | |
4628 | |
4629 /* | |
4630 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only | |
4631 * brought us to the match for "[m" and "]M" when inside a method. | |
4632 * Try finding the '{' or '}' we want to be at. | |
4633 * Also repeat for the given count. | |
4634 */ | |
4635 if (cap->nchar == 'm' || cap->nchar == 'M') | |
4636 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4637 // norm is TRUE for "]M" and "[m" |
7 | 4638 int norm = ((findc == '{') == (cap->nchar == 'm')); |
4639 | |
4640 n = cap->count1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4641 // found a match: we were inside a method |
7 | 4642 if (prev_pos.lnum != 0) |
4643 { | |
4644 pos = &prev_pos; | |
4645 curwin->w_cursor = prev_pos; | |
4646 if (norm) | |
4647 --n; | |
4648 } | |
4649 else | |
4650 pos = NULL; | |
4651 while (n > 0) | |
4652 { | |
4653 for (;;) | |
4654 { | |
4655 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0) | |
4656 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4657 // if not found anything, that's an error |
7 | 4658 if (pos == NULL) |
4659 clearopbeep(cap->oap); | |
4660 n = 0; | |
4661 break; | |
4662 } | |
4663 c = gchar_cursor(); | |
4664 if (c == '{' || c == '}') | |
4665 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4666 // Must have found end/start of class: use it. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4667 // Or found the place to be at. |
7 | 4668 if ((c == findc && norm) || (n == 1 && !norm)) |
4669 { | |
4670 new_pos = curwin->w_cursor; | |
4671 pos = &new_pos; | |
4672 n = 0; | |
4673 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4674 // if no match found at all, we started outside of the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4675 // class and we're inside now. Just go on. |
7 | 4676 else if (new_pos.lnum == 0) |
4677 { | |
4678 new_pos = curwin->w_cursor; | |
4679 pos = &new_pos; | |
4680 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4681 // found start/end of other method: go to match |
7 | 4682 else if ((pos = findmatchlimit(cap->oap, findc, |
4683 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, | |
4684 0)) == NULL) | |
4685 n = 0; | |
4686 else | |
4687 curwin->w_cursor = *pos; | |
4688 break; | |
4689 } | |
4690 } | |
4691 --n; | |
4692 } | |
4693 curwin->w_cursor = old_pos; | |
4694 if (pos == NULL && new_pos.lnum != 0) | |
4695 clearopbeep(cap->oap); | |
4696 } | |
4697 if (pos != NULL) | |
4698 { | |
4699 setpcmark(); | |
4700 curwin->w_cursor = *pos; | |
4701 curwin->w_set_curswant = TRUE; | |
4702 #ifdef FEAT_FOLDING | |
4703 if ((fdo_flags & FDO_BLOCK) && KeyTyped | |
4704 && cap->oap->op_type == OP_NOP) | |
4705 foldOpenCursor(); | |
4706 #endif | |
4707 } | |
4708 } | |
4709 | |
4710 /* | |
4711 * "[[", "[]", "]]" and "][": move to start or end of function | |
4712 */ | |
4713 else if (cap->nchar == '[' || cap->nchar == ']') | |
4714 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4715 if (cap->nchar == cap->cmdchar) // "]]" or "[[" |
7 | 4716 flag = '{'; |
4717 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4718 flag = '}'; // "][" or "[]" |
7 | 4719 |
4720 curwin->w_set_curswant = TRUE; | |
4721 /* | |
4722 * Imitate strange Vi behaviour: When using "]]" with an operator | |
4723 * we also stop at '}'. | |
4724 */ | |
503 | 4725 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag, |
7 | 4726 (cap->oap->op_type != OP_NOP |
4727 && cap->arg == FORWARD && flag == '{'))) | |
4728 clearopbeep(cap->oap); | |
4729 else | |
4730 { | |
4731 if (cap->oap->op_type == OP_NOP) | |
4732 beginline(BL_WHITE | BL_FIX); | |
4733 #ifdef FEAT_FOLDING | |
4734 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4735 foldOpenCursor(); | |
4736 #endif | |
4737 } | |
4738 } | |
4739 | |
4740 /* | |
4741 * "[p", "[P", "]P" and "]p": put with indent adjustment | |
4742 */ | |
4743 else if (cap->nchar == 'p' || cap->nchar == 'P') | |
4744 { | |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
4745 nv_put_opt(cap, TRUE); |
7 | 4746 } |
4747 | |
4748 /* | |
4749 * "['", "[`", "]'" and "]`": jump to next mark | |
4750 */ | |
4751 else if (cap->nchar == '\'' || cap->nchar == '`') | |
4752 { | |
4753 pos = &curwin->w_cursor; | |
4754 for (n = cap->count1; n > 0; --n) | |
4755 { | |
4756 prev_pos = *pos; | |
4757 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD, | |
4758 cap->nchar == '\''); | |
4759 if (pos == NULL) | |
4760 break; | |
4761 } | |
4762 if (pos == NULL) | |
4763 pos = &prev_pos; | |
4764 nv_cursormark(cap, cap->nchar == '\'', pos); | |
4765 } | |
4766 | |
4767 /* | |
4768 * [ or ] followed by a middle mouse click: put selected text with | |
4769 * indent adjustment. Any other button just does as usual. | |
4770 */ | |
2130
279380a812ad
updated for version 7.2.412
Bram Moolenaar <bram@zimbu.org>
parents:
2112
diff
changeset
|
4771 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE) |
7 | 4772 { |
4773 (void)do_mouse(cap->oap, cap->nchar, | |
4774 (cap->cmdchar == ']') ? FORWARD : BACKWARD, | |
4775 cap->count1, PUT_FIXINDENT); | |
4776 } | |
4777 | |
4778 #ifdef FEAT_FOLDING | |
4779 /* | |
4780 * "[z" and "]z": move to start or end of open fold. | |
4781 */ | |
4782 else if (cap->nchar == 'z') | |
4783 { | |
4784 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD, | |
4785 cap->count1) == FAIL) | |
4786 clearopbeep(cap->oap); | |
4787 } | |
4788 #endif | |
4789 | |
4790 #ifdef FEAT_DIFF | |
4791 /* | |
4792 * "[c" and "]c": move to next or previous diff-change. | |
4793 */ | |
4794 else if (cap->nchar == 'c') | |
4795 { | |
4796 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD, | |
4797 cap->count1) == FAIL) | |
4798 clearopbeep(cap->oap); | |
4799 } | |
4800 #endif | |
4801 | |
737 | 4802 #ifdef FEAT_SPELL |
236 | 4803 /* |
4804 * "[s", "[S", "]s" and "]S": move to next spell error. | |
4805 */ | |
4806 else if (cap->nchar == 's' || cap->nchar == 'S') | |
4807 { | |
249 | 4808 setpcmark(); |
4809 for (n = 0; n < cap->count1; ++n) | |
498 | 4810 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD, |
4811 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0) | |
249 | 4812 { |
4813 clearopbeep(cap->oap); | |
4814 break; | |
4815 } | |
13088
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
4816 else |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
4817 curwin->w_set_curswant = TRUE; |
819 | 4818 # ifdef FEAT_FOLDING |
4819 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) | |
4820 foldOpenCursor(); | |
4821 # endif | |
236 | 4822 } |
4823 #endif | |
4824 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4825 // Not a valid cap->nchar. |
7 | 4826 else |
4827 clearopbeep(cap->oap); | |
4828 } | |
4829 | |
4830 /* | |
4831 * Handle Normal mode "%" command. | |
4832 */ | |
4833 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4834 nv_percent(cmdarg_T *cap) |
7 | 4835 { |
4836 pos_T *pos; | |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2281
diff
changeset
|
4837 #if defined(FEAT_FOLDING) |
7 | 4838 linenr_T lnum = curwin->w_cursor.lnum; |
4839 #endif | |
4840 | |
4841 cap->oap->inclusive = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4842 if (cap->count0) // {cnt}% : goto {cnt} percentage in file |
7 | 4843 { |
4844 if (cap->count0 > 100) | |
4845 clearopbeep(cap->oap); | |
4846 else | |
4847 { | |
4848 cap->oap->motion_type = MLINE; | |
4849 setpcmark(); | |
24010
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4850 // Round up, so 'normal 100%' always jumps at the line line. |
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4851 // Beyond 21474836 lines, (ml_line_count * 100 + 99) would |
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4852 // overflow on 32-bits, so use a formula with less accuracy |
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4853 // to avoid overflows. |
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4854 if (curbuf->b_ml.ml_line_count >= 21474836) |
7 | 4855 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L) |
4856 / 100L * cap->count0; | |
4857 else | |
4858 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count * | |
4859 cap->count0 + 99L) / 100L; | |
23762
0f89d58eb3e3
patch 8.2.2422: crash when deleting with line number out of range
Bram Moolenaar <Bram@vim.org>
parents:
23687
diff
changeset
|
4860 if (curwin->w_cursor.lnum < 1) |
0f89d58eb3e3
patch 8.2.2422: crash when deleting with line number out of range
Bram Moolenaar <Bram@vim.org>
parents:
23687
diff
changeset
|
4861 curwin->w_cursor.lnum = 1; |
7 | 4862 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
4863 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4864 beginline(BL_SOL | BL_FIX); | |
4865 } | |
4866 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4867 else // "%" : go to matching paren |
7 | 4868 { |
4869 cap->oap->motion_type = MCHAR; | |
4870 cap->oap->use_reg_one = TRUE; | |
4871 if ((pos = findmatch(cap->oap, NUL)) == NULL) | |
4872 clearopbeep(cap->oap); | |
4873 else | |
4874 { | |
4875 setpcmark(); | |
4876 curwin->w_cursor = *pos; | |
4877 curwin->w_set_curswant = TRUE; | |
4878 curwin->w_cursor.coladd = 0; | |
4879 adjust_for_sel(cap); | |
4880 } | |
4881 } | |
4882 #ifdef FEAT_FOLDING | |
4883 if (cap->oap->op_type == OP_NOP | |
4884 && lnum != curwin->w_cursor.lnum | |
4885 && (fdo_flags & FDO_PERCENT) | |
4886 && KeyTyped) | |
4887 foldOpenCursor(); | |
4888 #endif | |
4889 } | |
4890 | |
4891 /* | |
4892 * Handle "(" and ")" commands. | |
4893 * cap->arg is BACKWARD for "(" and FORWARD for ")". | |
4894 */ | |
4895 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4896 nv_brace(cmdarg_T *cap) |
7 | 4897 { |
4898 cap->oap->motion_type = MCHAR; | |
4899 cap->oap->use_reg_one = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4900 // The motion used to be inclusive for "(", but that is not what Vi does. |
620 | 4901 cap->oap->inclusive = FALSE; |
7 | 4902 curwin->w_set_curswant = TRUE; |
4903 | |
4904 if (findsent(cap->arg, cap->count1) == FAIL) | |
4905 clearopbeep(cap->oap); | |
4906 else | |
4907 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4908 // Don't leave the cursor on the NUL past end of line. |
1505 | 4909 adjust_cursor(cap->oap); |
7 | 4910 curwin->w_cursor.coladd = 0; |
4911 #ifdef FEAT_FOLDING | |
4912 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4913 foldOpenCursor(); | |
4914 #endif | |
4915 } | |
4916 } | |
4917 | |
4918 /* | |
4919 * "m" command: Mark a position. | |
4920 */ | |
4921 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4922 nv_mark(cmdarg_T *cap) |
7 | 4923 { |
4924 if (!checkclearop(cap->oap)) | |
4925 { | |
4926 if (setmark(cap->nchar) == FAIL) | |
4927 clearopbeep(cap->oap); | |
4928 } | |
4929 } | |
4930 | |
4931 /* | |
4932 * "{" and "}" commands. | |
4933 * cmd->arg is BACKWARD for "{" and FORWARD for "}". | |
4934 */ | |
4935 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4936 nv_findpar(cmdarg_T *cap) |
7 | 4937 { |
4938 cap->oap->motion_type = MCHAR; | |
4939 cap->oap->inclusive = FALSE; | |
4940 cap->oap->use_reg_one = TRUE; | |
4941 curwin->w_set_curswant = TRUE; | |
503 | 4942 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE)) |
7 | 4943 clearopbeep(cap->oap); |
4944 else | |
4945 { | |
4946 curwin->w_cursor.coladd = 0; | |
4947 #ifdef FEAT_FOLDING | |
4948 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4949 foldOpenCursor(); | |
4950 #endif | |
4951 } | |
4952 } | |
4953 | |
4954 /* | |
4955 * "u" command: Undo or make lower case. | |
4956 */ | |
4957 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4958 nv_undo(cmdarg_T *cap) |
7 | 4959 { |
5735 | 4960 if (cap->oap->op_type == OP_LOWER || VIsual_active) |
7 | 4961 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4962 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" |
7 | 4963 cap->cmdchar = 'g'; |
4964 cap->nchar = 'u'; | |
4965 nv_operator(cap); | |
4966 } | |
4967 else | |
4968 nv_kundo(cap); | |
4969 } | |
4970 | |
4971 /* | |
4972 * <Undo> command. | |
4973 */ | |
4974 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4975 nv_kundo(cmdarg_T *cap) |
7 | 4976 { |
4977 if (!checkclearopq(cap->oap)) | |
4978 { | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4979 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4980 if (bt_prompt(curbuf)) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4981 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4982 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4983 return; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4984 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
4985 #endif |
7 | 4986 u_undo((int)cap->count1); |
4987 curwin->w_set_curswant = TRUE; | |
4988 } | |
4989 } | |
4990 | |
4991 /* | |
4992 * Handle the "r" command. | |
4993 */ | |
4994 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4995 nv_replace(cmdarg_T *cap) |
7 | 4996 { |
4997 char_u *ptr; | |
4998 int had_ctrl_v; | |
4999 long n; | |
5000 | |
5001 if (checkclearop(cap->oap)) | |
5002 return; | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5003 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5004 if (bt_prompt(curbuf) && !prompt_curpos_editable()) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5005 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5006 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5007 return; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5008 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5009 #endif |
7 | 5010 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5011 // get another character |
7 | 5012 if (cap->nchar == Ctrl_V) |
5013 { | |
5014 had_ctrl_v = Ctrl_V; | |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
23021
diff
changeset
|
5015 cap->nchar = get_literal(FALSE); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5016 // Don't redo a multibyte character with CTRL-V. |
7 | 5017 if (cap->nchar > DEL) |
5018 had_ctrl_v = NUL; | |
5019 } | |
5020 else | |
5021 had_ctrl_v = NUL; | |
5022 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5023 // Abort if the character is a special key. |
1343 | 5024 if (IS_SPECIAL(cap->nchar)) |
5025 { | |
5026 clearopbeep(cap->oap); | |
5027 return; | |
5028 } | |
5029 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5030 // Visual mode "r" |
7 | 5031 if (VIsual_active) |
5032 { | |
1797 | 5033 if (got_int) |
5034 reset_VIsual(); | |
5428 | 5035 if (had_ctrl_v) |
5036 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5037 // Use a special (negative) number to make a difference between a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5038 // literal CR or NL and a line break. |
13202
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
5039 if (cap->nchar == CAR) |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
5040 cap->nchar = REPLACE_CR_NCHAR; |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
5041 else if (cap->nchar == NL) |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
5042 cap->nchar = REPLACE_NL_NCHAR; |
5428 | 5043 } |
7 | 5044 nv_operator(cap); |
5045 return; | |
5046 } | |
5047 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5048 // Break tabs, etc. |
7 | 5049 if (virtual_active()) |
5050 { | |
5051 if (u_save_cursor() == FAIL) | |
5052 return; | |
5053 if (gchar_cursor() == NUL) | |
5054 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5055 // Add extra space and put the cursor on the first one. |
7 | 5056 coladvance_force((colnr_T)(getviscol() + cap->count1)); |
5057 curwin->w_cursor.col -= cap->count1; | |
5058 } | |
5059 else if (gchar_cursor() == TAB) | |
5060 coladvance_force(getviscol()); | |
5061 } | |
5062 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5063 // Abort if not enough characters to replace. |
7 | 5064 ptr = ml_get_cursor(); |
1343 | 5065 if (STRLEN(ptr) < (unsigned)cap->count1 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5066 || (has_mbyte && mb_charlen(ptr) < cap->count1)) |
7 | 5067 { |
5068 clearopbeep(cap->oap); | |
5069 return; | |
5070 } | |
5071 | |
5072 /* | |
5073 * Replacing with a TAB is done by edit() when it is complicated because | |
5074 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB. | |
5075 * Other characters are done below to avoid problems with things like | |
5076 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC). | |
5077 */ | |
5078 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta)) | |
5079 { | |
5080 stuffnumReadbuff(cap->count1); | |
5081 stuffcharReadbuff('R'); | |
5082 stuffcharReadbuff('\t'); | |
5083 stuffcharReadbuff(ESC); | |
5084 return; | |
5085 } | |
5086 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5087 // save line for undo |
7 | 5088 if (u_save_cursor() == FAIL) |
5089 return; | |
5090 | |
5091 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n')) | |
5092 { | |
5093 /* | |
5094 * Replace character(s) by a single newline. | |
5095 * Strange vi behaviour: Only one newline is inserted. | |
5096 * Delete the characters here. | |
5097 * Insert the newline with an insert command, takes care of | |
5098 * autoindent. The insert command depends on being on the last | |
5099 * character of a line or not. | |
5100 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5101 (void)del_chars(cap->count1, FALSE); // delete the characters |
7 | 5102 stuffcharReadbuff('\r'); |
5103 stuffcharReadbuff(ESC); | |
5104 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5105 // Give 'r' to edit(), to get the redo command right. |
7 | 5106 invoke_edit(cap, TRUE, 'r', FALSE); |
5107 } | |
5108 else | |
5109 { | |
5110 prep_redo(cap->oap->regname, cap->count1, | |
5111 NUL, 'r', NUL, had_ctrl_v, cap->nchar); | |
5112 | |
5113 curbuf->b_op_start = curwin->w_cursor; | |
5114 if (has_mbyte) | |
5115 { | |
5116 int old_State = State; | |
5117 | |
5118 if (cap->ncharC1 != 0) | |
5119 AppendCharToRedobuff(cap->ncharC1); | |
5120 if (cap->ncharC2 != 0) | |
5121 AppendCharToRedobuff(cap->ncharC2); | |
5122 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5123 // This is slow, but it handles replacing a single-byte with a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5124 // multi-byte and the other way around. Also handles adding |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5125 // composing characters for utf-8. |
7 | 5126 for (n = cap->count1; n > 0; --n) |
5127 { | |
5128 State = REPLACE; | |
3501 | 5129 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) |
5130 { | |
5131 int c = ins_copychar(curwin->w_cursor.lnum | |
5132 + (cap->nchar == Ctrl_Y ? -1 : 1)); | |
5133 if (c != NUL) | |
5134 ins_char(c); | |
5135 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5136 // will be decremented further down |
3501 | 5137 ++curwin->w_cursor.col; |
5138 } | |
5139 else | |
5140 ins_char(cap->nchar); | |
7 | 5141 State = old_State; |
5142 if (cap->ncharC1 != 0) | |
5143 ins_char(cap->ncharC1); | |
5144 if (cap->ncharC2 != 0) | |
5145 ins_char(cap->ncharC2); | |
5146 } | |
5147 } | |
5148 else | |
5149 { | |
5150 /* | |
5151 * Replace the characters within one line. | |
5152 */ | |
5153 for (n = cap->count1; n > 0; --n) | |
5154 { | |
5155 /* | |
5156 * Get ptr again, because u_save and/or showmatch() will have | |
25786
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5157 * released the line. This may also happen in ins_copychar(). |
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5158 * At the same time we let know that the line will be changed. |
7 | 5159 */ |
3501 | 5160 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) |
5161 { | |
5162 int c = ins_copychar(curwin->w_cursor.lnum | |
5163 + (cap->nchar == Ctrl_Y ? -1 : 1)); | |
25786
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5164 |
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5165 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE); |
3501 | 5166 if (c != NUL) |
5167 ptr[curwin->w_cursor.col] = c; | |
5168 } | |
5169 else | |
25786
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5170 { |
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5171 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE); |
3501 | 5172 ptr[curwin->w_cursor.col] = cap->nchar; |
25786
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5173 } |
7 | 5174 if (p_sm && msg_silent == 0) |
5175 showmatch(cap->nchar); | |
5176 ++curwin->w_cursor.col; | |
5177 } | |
5178 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5179 if (netbeans_active()) |
7 | 5180 { |
2210 | 5181 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1); |
7 | 5182 |
33 | 5183 netbeans_removed(curbuf, curwin->w_cursor.lnum, start, |
2210 | 5184 (long)cap->count1); |
7 | 5185 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start, |
33 | 5186 &ptr[start], (int)cap->count1); |
7 | 5187 } |
5188 #endif | |
5189 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5190 // mark the buffer as changed and prepare for displaying |
7 | 5191 changed_bytes(curwin->w_cursor.lnum, |
5192 (colnr_T)(curwin->w_cursor.col - cap->count1)); | |
5193 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5194 --curwin->w_cursor.col; // cursor on the last replaced char |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5195 // if the character on the left of the current cursor is a multi-byte |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5196 // character, move two characters left |
7 | 5197 if (has_mbyte) |
5198 mb_adjust_cursor(); | |
5199 curbuf->b_op_end = curwin->w_cursor; | |
5200 curwin->w_set_curswant = TRUE; | |
5201 set_last_insert(cap->nchar); | |
5202 } | |
5203 } | |
5204 | |
5205 /* | |
5206 * 'o': Exchange start and end of Visual area. | |
5207 * 'O': same, but in block mode exchange left and right corners. | |
5208 */ | |
5209 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5210 v_swap_corners(int cmdchar) |
7 | 5211 { |
5212 pos_T old_cursor; | |
5213 colnr_T left, right; | |
5214 | |
5215 if (cmdchar == 'O' && VIsual_mode == Ctrl_V) | |
5216 { | |
5217 old_cursor = curwin->w_cursor; | |
5218 getvcols(curwin, &old_cursor, &VIsual, &left, &right); | |
5219 curwin->w_cursor.lnum = VIsual.lnum; | |
5220 coladvance(left); | |
5221 VIsual = curwin->w_cursor; | |
5222 | |
5223 curwin->w_cursor.lnum = old_cursor.lnum; | |
5224 curwin->w_curswant = right; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5225 // 'selection "exclusive" and cursor at right-bottom corner: move it |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5226 // right one column |
7 | 5227 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e') |
5228 ++curwin->w_curswant; | |
5229 coladvance(curwin->w_curswant); | |
5230 if (curwin->w_cursor.col == old_cursor.col | |
5231 && (!virtual_active() | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5232 || curwin->w_cursor.coladd == old_cursor.coladd)) |
7 | 5233 { |
5234 curwin->w_cursor.lnum = VIsual.lnum; | |
5235 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e') | |
5236 ++right; | |
5237 coladvance(right); | |
5238 VIsual = curwin->w_cursor; | |
5239 | |
5240 curwin->w_cursor.lnum = old_cursor.lnum; | |
5241 coladvance(left); | |
5242 curwin->w_curswant = left; | |
5243 } | |
5244 } | |
5245 else | |
5246 { | |
5247 old_cursor = curwin->w_cursor; | |
5248 curwin->w_cursor = VIsual; | |
5249 VIsual = old_cursor; | |
5250 curwin->w_set_curswant = TRUE; | |
5251 } | |
5252 } | |
5253 | |
5254 /* | |
5255 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE). | |
5256 */ | |
5257 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5258 nv_Replace(cmdarg_T *cap) |
7 | 5259 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5260 if (VIsual_active) // "R" is replace lines |
7 | 5261 { |
5262 cap->cmdchar = 'c'; | |
5263 cap->nchar = NUL; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5264 VIsual_mode_orig = VIsual_mode; // remember original area for gv |
7 | 5265 VIsual_mode = 'V'; |
5266 nv_operator(cap); | |
5267 } | |
5735 | 5268 else if (!checkclearopq(cap->oap)) |
7 | 5269 { |
5270 if (!curbuf->b_p_ma) | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24866
diff
changeset
|
5271 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 5272 else |
5273 { | |
5274 if (virtual_active()) | |
5275 coladvance(getviscol()); | |
5276 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE); | |
5277 } | |
5278 } | |
5279 } | |
5280 | |
5281 /* | |
5282 * "gr". | |
5283 */ | |
5284 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5285 nv_vreplace(cmdarg_T *cap) |
7 | 5286 { |
5287 if (VIsual_active) | |
5288 { | |
5289 cap->cmdchar = 'r'; | |
5290 cap->nchar = cap->extra_char; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5291 nv_replace(cap); // Do same as "r" in Visual mode for now |
7 | 5292 } |
5735 | 5293 else if (!checkclearopq(cap->oap)) |
7 | 5294 { |
5295 if (!curbuf->b_p_ma) | |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24866
diff
changeset
|
5296 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 5297 else |
5298 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5299 if (cap->extra_char == Ctrl_V) // get another character |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
23021
diff
changeset
|
5300 cap->extra_char = get_literal(FALSE); |
7 | 5301 stuffcharReadbuff(cap->extra_char); |
5302 stuffcharReadbuff(ESC); | |
5303 if (virtual_active()) | |
5304 coladvance(getviscol()); | |
5305 invoke_edit(cap, TRUE, 'v', FALSE); | |
5306 } | |
5307 } | |
5308 } | |
5309 | |
5310 /* | |
5311 * Swap case for "~" command, when it does not work like an operator. | |
5312 */ | |
5313 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5314 n_swapchar(cmdarg_T *cap) |
7 | 5315 { |
5316 long n; | |
5317 pos_T startpos; | |
5318 int did_change = 0; | |
5319 #ifdef FEAT_NETBEANS_INTG | |
5320 pos_T pos; | |
5321 char_u *ptr; | |
5322 int count; | |
5323 #endif | |
5324 | |
5325 if (checkclearopq(cap->oap)) | |
5326 return; | |
5327 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
5328 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL) |
7 | 5329 { |
5330 clearopbeep(cap->oap); | |
5331 return; | |
5332 } | |
5333 | |
5334 prep_redo_cmd(cap); | |
5335 | |
5336 if (u_save_cursor() == FAIL) | |
5337 return; | |
5338 | |
5339 startpos = curwin->w_cursor; | |
5340 #ifdef FEAT_NETBEANS_INTG | |
5341 pos = startpos; | |
5342 #endif | |
5343 for (n = cap->count1; n > 0; --n) | |
5344 { | |
5345 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor); | |
5346 inc_cursor(); | |
5347 if (gchar_cursor() == NUL) | |
5348 { | |
5349 if (vim_strchr(p_ww, '~') != NULL | |
5350 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
5351 { | |
5352 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5353 if (netbeans_active()) |
7 | 5354 { |
5355 if (did_change) | |
5356 { | |
5357 ptr = ml_get(pos.lnum); | |
835 | 5358 count = (int)STRLEN(ptr) - pos.col; |
33 | 5359 netbeans_removed(curbuf, pos.lnum, pos.col, |
5360 (long)count); | |
7 | 5361 netbeans_inserted(curbuf, pos.lnum, pos.col, |
33 | 5362 &ptr[pos.col], count); |
7 | 5363 } |
5364 pos.col = 0; | |
5365 pos.lnum++; | |
5366 } | |
5367 #endif | |
5368 ++curwin->w_cursor.lnum; | |
5369 curwin->w_cursor.col = 0; | |
5370 if (n > 1) | |
5371 { | |
5372 if (u_savesub(curwin->w_cursor.lnum) == FAIL) | |
5373 break; | |
5374 u_clearline(); | |
5375 } | |
5376 } | |
5377 else | |
5378 break; | |
5379 } | |
5380 } | |
5381 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5382 if (did_change && netbeans_active()) |
7 | 5383 { |
5384 ptr = ml_get(pos.lnum); | |
5385 count = curwin->w_cursor.col - pos.col; | |
33 | 5386 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count); |
5387 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count); | |
7 | 5388 } |
5389 #endif | |
5390 | |
5391 | |
5392 check_cursor(); | |
5393 curwin->w_set_curswant = TRUE; | |
5394 if (did_change) | |
5395 { | |
5396 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1, | |
5397 0L); | |
5398 curbuf->b_op_start = startpos; | |
5399 curbuf->b_op_end = curwin->w_cursor; | |
5400 if (curbuf->b_op_end.col > 0) | |
5401 --curbuf->b_op_end.col; | |
5402 } | |
5403 } | |
5404 | |
5405 /* | |
5406 * Move cursor to mark. | |
5407 */ | |
5408 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5409 nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos) |
7 | 5410 { |
5411 if (check_mark(pos) == FAIL) | |
5412 clearop(cap->oap); | |
5413 else | |
5414 { | |
5415 if (cap->cmdchar == '\'' | |
5416 || cap->cmdchar == '`' | |
5417 || cap->cmdchar == '[' | |
5418 || cap->cmdchar == ']') | |
5419 setpcmark(); | |
5420 curwin->w_cursor = *pos; | |
5421 if (flag) | |
5422 beginline(BL_WHITE | BL_FIX); | |
5423 else | |
5424 check_cursor(); | |
5425 } | |
5426 cap->oap->motion_type = flag ? MLINE : MCHAR; | |
5427 if (cap->cmdchar == '`') | |
5428 cap->oap->use_reg_one = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5429 cap->oap->inclusive = FALSE; // ignored if not MCHAR |
7 | 5430 curwin->w_set_curswant = TRUE; |
5431 } | |
5432 | |
5433 /* | |
5434 * Handle commands that are operators in Visual mode. | |
5435 */ | |
5436 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5437 v_visop(cmdarg_T *cap) |
7 | 5438 { |
5439 static char_u trans[] = "YyDdCcxdXdAAIIrr"; | |
5440 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5441 // Uppercase means linewise, except in block mode, then "D" deletes till |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5442 // the end of the line, and "C" replaces till EOL |
7 | 5443 if (isupper(cap->cmdchar)) |
5444 { | |
5445 if (VIsual_mode != Ctrl_V) | |
4213 | 5446 { |
5447 VIsual_mode_orig = VIsual_mode; | |
7 | 5448 VIsual_mode = 'V'; |
4213 | 5449 } |
7 | 5450 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D') |
5451 curwin->w_curswant = MAXCOL; | |
5452 } | |
5453 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1); | |
5454 nv_operator(cap); | |
5455 } | |
5456 | |
5457 /* | |
5458 * "s" and "S" commands. | |
5459 */ | |
5460 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5461 nv_subst(cmdarg_T *cap) |
7 | 5462 { |
13298
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5463 #ifdef FEAT_TERMINAL |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
23165
diff
changeset
|
5464 // When showing output of term_dumpdiff() swap the top and bottom. |
13298
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5465 if (term_swap_diff() == OK) |
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5466 return; |
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5467 #endif |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5468 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5469 if (bt_prompt(curbuf) && !prompt_curpos_editable()) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5470 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5471 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5472 return; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5473 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
5474 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5475 if (VIsual_active) // "vs" and "vS" are the same as "vc" |
7 | 5476 { |
5477 if (cap->cmdchar == 'S') | |
4213 | 5478 { |
5479 VIsual_mode_orig = VIsual_mode; | |
7 | 5480 VIsual_mode = 'V'; |
4213 | 5481 } |
7 | 5482 cap->cmdchar = 'c'; |
5483 nv_operator(cap); | |
5484 } | |
5485 else | |
5486 nv_optrans(cap); | |
5487 } | |
5488 | |
5489 /* | |
5490 * Abbreviated commands. | |
5491 */ | |
5492 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5493 nv_abbrev(cmdarg_T *cap) |
7 | 5494 { |
5495 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5496 cap->cmdchar = 'x'; // DEL key behaves like 'x' |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5497 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5498 // in Visual mode these commands are operators |
7 | 5499 if (VIsual_active) |
5500 v_visop(cap); | |
5501 else | |
5502 nv_optrans(cap); | |
5503 } | |
5504 | |
5505 /* | |
5506 * Translate a command into another command. | |
5507 */ | |
5508 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5509 nv_optrans(cmdarg_T *cap) |
7 | 5510 { |
5511 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh", | |
5512 (char_u *)"d$", (char_u *)"c$", | |
5513 (char_u *)"cl", (char_u *)"cc", | |
5514 (char_u *)"yy", (char_u *)":s\r"}; | |
5515 static char_u *str = (char_u *)"xXDCsSY&"; | |
5516 | |
5517 if (!checkclearopq(cap->oap)) | |
5518 { | |
18114
90b0af9ba4ff
patch 8.1.2052: using "x" before a closed fold may delete that fold
Bram Moolenaar <Bram@vim.org>
parents:
18045
diff
changeset
|
5519 // In Vi "2D" doesn't delete the next line. Can't translate it |
90b0af9ba4ff
patch 8.1.2052: using "x" before a closed fold may delete that fold
Bram Moolenaar <Bram@vim.org>
parents:
18045
diff
changeset
|
5520 // either, because "2." should also not use the count. |
164 | 5521 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL) |
5522 { | |
5523 cap->oap->start = curwin->w_cursor; | |
5524 cap->oap->op_type = OP_DELETE; | |
1490 | 5525 #ifdef FEAT_EVAL |
5526 set_op_var(OP_DELETE); | |
5527 #endif | |
164 | 5528 cap->count1 = 1; |
5529 nv_dollar(cap); | |
5530 finish_op = TRUE; | |
5531 ResetRedobuff(); | |
5532 AppendCharToRedobuff('D'); | |
5533 } | |
5534 else | |
5535 { | |
5536 if (cap->count0) | |
5537 stuffnumReadbuff(cap->count0); | |
18128
aeabc666a119
patch 8.1.2059: fix for "x" deleting a fold has side effects
Bram Moolenaar <Bram@vim.org>
parents:
18114
diff
changeset
|
5538 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]); |
164 | 5539 } |
7 | 5540 } |
5541 cap->opcount = 0; | |
5542 } | |
5543 | |
5544 /* | |
5545 * "'" and "`" commands. Also for "g'" and "g`". | |
5546 * cap->arg is TRUE for "'" and "g'". | |
5547 */ | |
5548 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5549 nv_gomark(cmdarg_T *cap) |
7 | 5550 { |
5551 pos_T *pos; | |
5552 int c; | |
5553 #ifdef FEAT_FOLDING | |
4017 | 5554 pos_T old_cursor = curwin->w_cursor; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5555 int old_KeyTyped = KeyTyped; // getting file may reset it |
7 | 5556 #endif |
5557 | |
5558 if (cap->cmdchar == 'g') | |
5559 c = cap->extra_char; | |
5560 else | |
5561 c = cap->nchar; | |
5562 pos = getmark(c, (cap->oap->op_type == OP_NOP)); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5563 if (pos == (pos_T *)-1) // jumped to other file |
7 | 5564 { |
5565 if (cap->arg) | |
5566 { | |
5567 check_cursor_lnum(); | |
5568 beginline(BL_WHITE | BL_FIX); | |
5569 } | |
5570 else | |
5571 check_cursor(); | |
5572 } | |
5573 else | |
5574 nv_cursormark(cap, cap->arg, pos); | |
5575 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5576 // May need to clear the coladd that a mark includes. |
7 | 5577 if (!virtual_active()) |
5578 curwin->w_cursor.coladd = 0; | |
12164
5d82470552ce
patch 8.0.0962: crash with virtualedit and joining lines
Christian Brabandt <cb@256bit.org>
parents:
12136
diff
changeset
|
5579 check_cursor_col(); |
7 | 5580 #ifdef FEAT_FOLDING |
5581 if (cap->oap->op_type == OP_NOP | |
4057 | 5582 && pos != NULL |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
5583 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos)) |
7 | 5584 && (fdo_flags & FDO_MARK) |
5585 && old_KeyTyped) | |
5586 foldOpenCursor(); | |
5587 #endif | |
5588 } | |
5589 | |
5590 /* | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5591 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands. |
7 | 5592 */ |
5593 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5594 nv_pcmark(cmdarg_T *cap) |
7 | 5595 { |
5596 #ifdef FEAT_JUMPLIST | |
5597 pos_T *pos; | |
5598 # ifdef FEAT_FOLDING | |
5599 linenr_T lnum = curwin->w_cursor.lnum; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5600 int old_KeyTyped = KeyTyped; // getting file may reset it |
7 | 5601 # endif |
5602 | |
5603 if (!checkclearopq(cap->oap)) | |
5604 { | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5605 if (cap->cmdchar == TAB && mod_mask == MOD_MASK_CTRL) |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5606 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5607 if (goto_tabpage_lastused() == FAIL) |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5608 clearopbeep(cap->oap); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5609 return; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5610 } |
7 | 5611 if (cap->cmdchar == 'g') |
5612 pos = movechangelist((int)cap->count1); | |
5613 else | |
5614 pos = movemark((int)cap->count1); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5615 if (pos == (pos_T *)-1) // jump to other file |
7 | 5616 { |
5617 curwin->w_set_curswant = TRUE; | |
5618 check_cursor(); | |
5619 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5620 else if (pos != NULL) // can jump |
7 | 5621 nv_cursormark(cap, FALSE, pos); |
5622 else if (cap->cmdchar == 'g') | |
5623 { | |
5624 if (curbuf->b_changelistlen == 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5625 emsg(_("E664: changelist is empty")); |
7 | 5626 else if (cap->count1 < 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5627 emsg(_("E662: At start of changelist")); |
7 | 5628 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5629 emsg(_("E663: At end of changelist")); |
7 | 5630 } |
5631 else | |
5632 clearopbeep(cap->oap); | |
5633 # ifdef FEAT_FOLDING | |
5634 if (cap->oap->op_type == OP_NOP | |
5635 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum) | |
5636 && (fdo_flags & FDO_MARK) | |
5637 && old_KeyTyped) | |
5638 foldOpenCursor(); | |
5639 # endif | |
5640 } | |
5641 #else | |
5642 clearopbeep(cap->oap); | |
5643 #endif | |
5644 } | |
5645 | |
5646 /* | |
5647 * Handle '"' command. | |
5648 */ | |
5649 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5650 nv_regname(cmdarg_T *cap) |
7 | 5651 { |
5652 if (checkclearop(cap->oap)) | |
5653 return; | |
5654 #ifdef FEAT_EVAL | |
5655 if (cap->nchar == '=') | |
5656 cap->nchar = get_expr_register(); | |
5657 #endif | |
5658 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE)) | |
5659 { | |
5660 cap->oap->regname = cap->nchar; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5661 cap->opcount = cap->count0; // remember count before '"' |
7 | 5662 #ifdef FEAT_EVAL |
5663 set_reg_var(cap->oap->regname); | |
5664 #endif | |
5665 } | |
5666 else | |
5667 clearopbeep(cap->oap); | |
5668 } | |
5669 | |
5670 /* | |
5671 * Handle "v", "V" and "CTRL-V" commands. | |
5672 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg | |
5673 * is TRUE. | |
167 | 5674 * Handle CTRL-Q just like CTRL-V. |
7 | 5675 */ |
5676 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5677 nv_visual(cmdarg_T *cap) |
7 | 5678 { |
167 | 5679 if (cap->cmdchar == Ctrl_Q) |
5680 cap->cmdchar = Ctrl_V; | |
5681 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5682 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5683 // characterwise, linewise, or blockwise. |
7 | 5684 if (cap->oap->op_type != OP_NOP) |
5685 { | |
15279
54457fc4af0b
patch 8.1.0648: custom operators can't act upon a forced motion
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5686 motion_force = cap->oap->motion_force = cap->cmdchar; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5687 finish_op = FALSE; // operator doesn't finish now but later |
7 | 5688 return; |
5689 } | |
5690 | |
5691 VIsual_select = cap->arg; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5692 if (VIsual_active) // change Visual mode |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5693 { |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5694 if (VIsual_mode == cap->cmdchar) // stop visual mode |
7 | 5695 end_visual_mode(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5696 else // toggle char/block mode |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5697 { // or char/line mode |
7 | 5698 VIsual_mode = cap->cmdchar; |
5699 showmode(); | |
25790
16a7d1154be8
patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents:
25786
diff
changeset
|
5700 trigger_modechanged(); |
7 | 5701 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5702 redraw_curbuf_later(INVERTED); // update the inversion |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5703 } |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5704 else // start Visual mode |
7 | 5705 { |
5706 check_visual_highlight(); | |
3537 | 5707 if (cap->count0 > 0 && resel_VIsual_mode != NUL) |
5708 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5709 // use previously selected part |
7 | 5710 VIsual = curwin->w_cursor; |
5711 | |
5712 VIsual_active = TRUE; | |
5713 VIsual_reselect = TRUE; | |
5714 if (!cap->arg) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5715 // start Select mode when 'selectmode' contains "cmd" |
7 | 5716 may_start_select('c'); |
5717 setmouse(); | |
641 | 5718 if (p_smd && msg_silent == 0) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5719 redraw_cmdline = TRUE; // show visual mode later |
7 | 5720 /* |
5721 * For V and ^V, we multiply the number of lines even if there | |
5722 * was only one -- webb | |
5723 */ | |
5724 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1) | |
5725 { | |
5726 curwin->w_cursor.lnum += | |
5727 resel_VIsual_line_count * cap->count0 - 1; | |
25921
203b0f3a741a
patch 8.2.3494: illegal memory access in utf_head_off
Bram Moolenaar <Bram@vim.org>
parents:
25790
diff
changeset
|
5728 check_cursor(); |
7 | 5729 } |
5730 VIsual_mode = resel_VIsual_mode; | |
5731 if (VIsual_mode == 'v') | |
5732 { | |
5733 if (resel_VIsual_line_count <= 1) | |
3125 | 5734 { |
5735 validate_virtcol(); | |
5736 curwin->w_curswant = curwin->w_virtcol | |
5737 + resel_VIsual_vcol * cap->count0 - 1; | |
5738 } | |
7 | 5739 else |
3125 | 5740 curwin->w_curswant = resel_VIsual_vcol; |
5741 coladvance(curwin->w_curswant); | |
7 | 5742 } |
3125 | 5743 if (resel_VIsual_vcol == MAXCOL) |
7 | 5744 { |
5745 curwin->w_curswant = MAXCOL; | |
5746 coladvance((colnr_T)MAXCOL); | |
5747 } | |
5748 else if (VIsual_mode == Ctrl_V) | |
5749 { | |
5750 validate_virtcol(); | |
5751 curwin->w_curswant = curwin->w_virtcol | |
3125 | 5752 + resel_VIsual_vcol * cap->count0 - 1; |
7 | 5753 coladvance(curwin->w_curswant); |
5754 } | |
5755 else | |
5756 curwin->w_set_curswant = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5757 redraw_curbuf_later(INVERTED); // show the inversion |
7 | 5758 } |
5759 else | |
5760 { | |
5761 if (!cap->arg) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5762 // start Select mode when 'selectmode' contains "cmd" |
7 | 5763 may_start_select('c'); |
5764 n_start_visual_mode(cap->cmdchar); | |
3537 | 5765 if (VIsual_mode != 'V' && *p_sel == 'e') |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5766 ++cap->count1; // include one more char |
3537 | 5767 if (cap->count0 > 0 && --cap->count1 > 0) |
5768 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5769 // With a count select that many characters or lines. |
3537 | 5770 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V) |
5771 nv_right(cap); | |
5772 else if (VIsual_mode == 'V') | |
5773 nv_down(cap); | |
5774 } | |
7 | 5775 } |
5776 } | |
5777 } | |
5778 | |
5779 /* | |
5780 * Start selection for Shift-movement keys. | |
5781 */ | |
5782 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5783 start_selection(void) |
7 | 5784 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5785 // if 'selectmode' contains "key", start Select mode |
7 | 5786 may_start_select('k'); |
5787 n_start_visual_mode('v'); | |
5788 } | |
5789 | |
5790 /* | |
5791 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu. | |
5792 */ | |
5793 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5794 may_start_select(int c) |
7 | 5795 { |
5796 VIsual_select = (stuff_empty() && typebuf_typed() | |
5797 && (vim_strchr(p_slm, c) != NULL)); | |
5798 } | |
5799 | |
5800 /* | |
5801 * Start Visual mode "c". | |
5802 * Should set VIsual_select before calling this. | |
5803 */ | |
5804 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5805 n_start_visual_mode(int c) |
7 | 5806 { |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5807 #ifdef FEAT_CONCEAL |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
5808 int cursor_line_was_concealed = curwin->w_p_cole > 0 |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
5809 && conceal_cursor_line(curwin); |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5810 #endif |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5811 |
7 | 5812 VIsual_mode = c; |
5813 VIsual_active = TRUE; | |
5814 VIsual_reselect = TRUE; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5815 |
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5816 // Corner case: the 0 position in a tab may change when going into |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
18808
diff
changeset
|
5817 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting. |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5818 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB) |
3742 | 5819 { |
5820 validate_virtcol(); | |
7 | 5821 coladvance(curwin->w_virtcol); |
3742 | 5822 } |
7 | 5823 VIsual = curwin->w_cursor; |
5824 | |
5825 #ifdef FEAT_FOLDING | |
5826 foldAdjustVisual(); | |
5827 #endif | |
5828 | |
26157
20200363816c
patch 8.2.3610: crash when ModeChanged triggered too early
Bram Moolenaar <Bram@vim.org>
parents:
26101
diff
changeset
|
5829 trigger_modechanged(); |
7 | 5830 setmouse(); |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5831 #ifdef FEAT_CONCEAL |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
5832 // Check if redraw is needed after changing the state. |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
5833 conceal_check_cursor_line(cursor_line_was_concealed); |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5834 #endif |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5835 |
641 | 5836 if (p_smd && msg_silent == 0) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5837 redraw_cmdline = TRUE; // show visual mode later |
7 | 5838 #ifdef FEAT_CLIPBOARD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5839 // Make sure the clipboard gets updated. Needed because start and |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5840 // end may still be the same, and the selection needs to be owned |
7 | 5841 clip_star.vmode = NUL; |
5842 #endif | |
5843 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5844 // Only need to redraw this line, unless still need to redraw an old |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5845 // Visual area (when 'lazyredraw' is set). |
7 | 5846 if (curwin->w_redr_type < INVERTED) |
5847 { | |
5848 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum; | |
5849 curwin->w_old_visual_lnum = curwin->w_cursor.lnum; | |
5850 } | |
5851 } | |
5852 | |
5853 | |
5854 /* | |
5855 * CTRL-W: Window commands | |
5856 */ | |
5857 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5858 nv_window(cmdarg_T *cap) |
7 | 5859 { |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5860 if (cap->nchar == ':') |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5861 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5862 // "CTRL-W :" is the same as typing ":"; useful in a terminal window |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5863 cap->cmdchar = ':'; |
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5864 cap->nchar = NUL; |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5865 nv_colon(cap); |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5866 } |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5867 else if (!checkclearop(cap->oap)) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5868 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c |
7 | 5869 } |
5870 | |
5871 /* | |
5872 * CTRL-Z: Suspend | |
5873 */ | |
5874 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5875 nv_suspend(cmdarg_T *cap) |
7 | 5876 { |
5877 clearop(cap->oap); | |
5878 if (VIsual_active) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5879 end_visual_mode(); // stop Visual mode |
23165
a916fca16d4b
patch 8.2.2128: there is no way to do something on CTRL-Z
Bram Moolenaar <Bram@vim.org>
parents:
23076
diff
changeset
|
5880 do_cmdline_cmd((char_u *)"stop"); |
7 | 5881 } |
5882 | |
5883 /* | |
5884 * Commands starting with "g". | |
5885 */ | |
5886 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5887 nv_g_cmd(cmdarg_T *cap) |
7 | 5888 { |
5889 oparg_T *oap = cap->oap; | |
5890 pos_T tpos; | |
5891 int i; | |
5892 int flag = FALSE; | |
5893 | |
5894 switch (cap->nchar) | |
5895 { | |
6868 | 5896 case Ctrl_A: |
5897 case Ctrl_X: | |
7 | 5898 #ifdef MEM_PROFILE |
5899 /* | |
5900 * "g^A": dump log of used memory. | |
5901 */ | |
6868 | 5902 if (!VIsual_active && cap->nchar == Ctrl_A) |
5903 vim_mem_profile_dump(); | |
5904 else | |
5905 #endif | |
5906 /* | |
5907 * "g^A/g^X": sequentially increment visually selected region | |
5908 */ | |
5909 if (VIsual_active) | |
5910 { | |
5911 cap->arg = TRUE; | |
5912 cap->cmdchar = cap->nchar; | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
5913 cap->nchar = NUL; |
6868 | 5914 nv_addsub(cap); |
5915 } | |
5916 else | |
5917 clearopbeep(oap); | |
7 | 5918 break; |
5919 | |
5920 /* | |
5921 * "gR": Enter virtual replace mode. | |
5922 */ | |
5923 case 'R': | |
5924 cap->arg = TRUE; | |
5925 nv_Replace(cap); | |
5926 break; | |
5927 | |
5928 case 'r': | |
5929 nv_vreplace(cap); | |
5930 break; | |
5931 | |
5932 case '&': | |
5933 do_cmdline_cmd((char_u *)"%s//~/&"); | |
5934 break; | |
5935 | |
5936 /* | |
5937 * "gv": Reselect the previous Visual area. If Visual already active, | |
5938 * exchange previous and current Visual area. | |
5939 */ | |
5940 case 'v': | |
5941 if (checkclearop(oap)) | |
5942 break; | |
5943 | |
690 | 5944 if ( curbuf->b_visual.vi_start.lnum == 0 |
5945 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count | |
5946 || curbuf->b_visual.vi_end.lnum == 0) | |
7 | 5947 beep_flush(); |
5948 else | |
5949 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5950 // set w_cursor to the start of the Visual area, tpos to the end |
7 | 5951 if (VIsual_active) |
5952 { | |
5953 i = VIsual_mode; | |
690 | 5954 VIsual_mode = curbuf->b_visual.vi_mode; |
5955 curbuf->b_visual.vi_mode = i; | |
7 | 5956 # ifdef FEAT_EVAL |
5957 curbuf->b_visual_mode_eval = i; | |
5958 # endif | |
5959 i = curwin->w_curswant; | |
690 | 5960 curwin->w_curswant = curbuf->b_visual.vi_curswant; |
5961 curbuf->b_visual.vi_curswant = i; | |
5962 | |
5963 tpos = curbuf->b_visual.vi_end; | |
5964 curbuf->b_visual.vi_end = curwin->w_cursor; | |
5965 curwin->w_cursor = curbuf->b_visual.vi_start; | |
5966 curbuf->b_visual.vi_start = VIsual; | |
7 | 5967 } |
5968 else | |
5969 { | |
690 | 5970 VIsual_mode = curbuf->b_visual.vi_mode; |
5971 curwin->w_curswant = curbuf->b_visual.vi_curswant; | |
5972 tpos = curbuf->b_visual.vi_end; | |
5973 curwin->w_cursor = curbuf->b_visual.vi_start; | |
7 | 5974 } |
5975 | |
5976 VIsual_active = TRUE; | |
5977 VIsual_reselect = TRUE; | |
5978 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5979 // Set Visual to the start and w_cursor to the end of the Visual |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5980 // area. Make sure they are on an existing character. |
7 | 5981 check_cursor(); |
5982 VIsual = curwin->w_cursor; | |
5983 curwin->w_cursor = tpos; | |
5984 check_cursor(); | |
5985 update_topline(); | |
5986 /* | |
5987 * When called from normal "g" command: start Select mode when | |
5988 * 'selectmode' contains "cmd". When called for K_SELECT, always | |
5989 * start Select mode. | |
5990 */ | |
5991 if (cap->arg) | |
5992 VIsual_select = TRUE; | |
5993 else | |
5994 may_start_select('c'); | |
5995 setmouse(); | |
5996 #ifdef FEAT_CLIPBOARD | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5997 // Make sure the clipboard gets updated. Needed because start and |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5998 // end are still the same, and the selection needs to be owned |
7 | 5999 clip_star.vmode = NUL; |
6000 #endif | |
6001 redraw_curbuf_later(INVERTED); | |
6002 showmode(); | |
6003 } | |
6004 break; | |
6005 /* | |
6006 * "gV": Don't reselect the previous Visual area after a Select mode | |
6007 * mapping of menu. | |
6008 */ | |
6009 case 'V': | |
6010 VIsual_reselect = FALSE; | |
6011 break; | |
6012 | |
6013 /* | |
6014 * "gh": start Select mode. | |
6015 * "gH": start Select line mode. | |
6016 * "g^H": start Select block mode. | |
6017 */ | |
6018 case K_BS: | |
6019 cap->nchar = Ctrl_H; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6020 // FALLTHROUGH |
7 | 6021 case 'h': |
6022 case 'H': | |
6023 case Ctrl_H: | |
6024 # ifdef EBCDIC | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6025 // EBCDIC: 'v'-'h' != '^v'-'^h' |
7 | 6026 if (cap->nchar == Ctrl_H) |
6027 cap->cmdchar = Ctrl_V; | |
6028 else | |
6029 # endif | |
6030 cap->cmdchar = cap->nchar + ('v' - 'h'); | |
6031 cap->arg = TRUE; | |
6032 nv_visual(cap); | |
6033 break; | |
3701 | 6034 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6035 // "gn", "gN" visually select next/previous search match |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6036 // "gn" selects next match |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6037 // "gN" selects previous match |
3701 | 6038 case 'N': |
6039 case 'n': | |
6040 if (!current_search(cap->count1, cap->nchar == 'n')) | |
3896 | 6041 clearopbeep(oap); |
3701 | 6042 break; |
7 | 6043 |
6044 /* | |
6045 * "gj" and "gk" two new funny movement keys -- up and down | |
6046 * movement based on *screen* line rather than *file* line. | |
6047 */ | |
6048 case 'j': | |
6049 case K_DOWN: | |
23687
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6050 // with 'nowrap' it works just like the normal "j" command. |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6051 if (!curwin->w_p_wrap) |
7 | 6052 { |
6053 oap->motion_type = MLINE; | |
6054 i = cursor_down(cap->count1, oap->op_type == OP_NOP); | |
6055 } | |
6056 else | |
6057 i = nv_screengo(oap, FORWARD, cap->count1); | |
6058 if (i == FAIL) | |
6059 clearopbeep(oap); | |
6060 break; | |
6061 | |
6062 case 'k': | |
6063 case K_UP: | |
23687
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6064 // with 'nowrap' it works just like the normal "k" command. |
09ad3f1b9714
patch 8.2.2385: "gj" and "gk" do not work correctly when inside a fold
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6065 if (!curwin->w_p_wrap) |
7 | 6066 { |
6067 oap->motion_type = MLINE; | |
6068 i = cursor_up(cap->count1, oap->op_type == OP_NOP); | |
6069 } | |
6070 else | |
6071 i = nv_screengo(oap, BACKWARD, cap->count1); | |
6072 if (i == FAIL) | |
6073 clearopbeep(oap); | |
6074 break; | |
6075 | |
6076 /* | |
6077 * "gJ": join two lines without inserting a space. | |
6078 */ | |
6079 case 'J': | |
6080 nv_join(cap); | |
6081 break; | |
6082 | |
6083 /* | |
6084 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines. | |
6085 * "gm": middle of "g0" and "g$". | |
6086 */ | |
6087 case '^': | |
6088 flag = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6089 // FALLTHROUGH |
7 | 6090 |
6091 case '0': | |
6092 case 'm': | |
6093 case K_HOME: | |
6094 case K_KHOME: | |
6095 oap->motion_type = MCHAR; | |
6096 oap->inclusive = FALSE; | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12467
diff
changeset
|
6097 if (curwin->w_p_wrap && curwin->w_width != 0) |
7 | 6098 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6099 int width1 = curwin->w_width - curwin_col_off(); |
7 | 6100 int width2 = width1 + curwin_col_off2(); |
6101 | |
6102 validate_virtcol(); | |
6103 i = 0; | |
6104 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0) | |
6105 i = (curwin->w_virtcol - width1) / width2 * width2 + width1; | |
6106 } | |
6107 else | |
6108 i = curwin->w_leftcol; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6109 // Go to the middle of the screen line. When 'number' or |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6110 // 'relativenumber' is on and lines are wrapping the middle can be more |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6111 // to the left. |
7 | 6112 if (cap->nchar == 'm') |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6113 i += (curwin->w_width - curwin_col_off() |
7 | 6114 + ((curwin->w_p_wrap && i > 0) |
6115 ? curwin_col_off2() : 0)) / 2; | |
6116 coladvance((colnr_T)i); | |
6117 if (flag) | |
6118 { | |
6119 do | |
6120 i = gchar_cursor(); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
6121 while (VIM_ISWHITE(i) && oneright() == OK); |
15062
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
15006
diff
changeset
|
6122 curwin->w_valid &= ~VALID_WCOL; |
7 | 6123 } |
6124 curwin->w_set_curswant = TRUE; | |
6125 break; | |
6126 | |
18475
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6127 case 'M': |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6128 { |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6129 char_u *ptr = ml_get_curline(); |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6130 |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6131 oap->motion_type = MCHAR; |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6132 oap->inclusive = FALSE; |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6133 if (has_mbyte) |
18477
e93cab5d0f0f
patch 8.1.2233: cannot get the Vim command line arguments
Bram Moolenaar <Bram@vim.org>
parents:
18475
diff
changeset
|
6134 i = mb_string2cells(ptr, (int)STRLEN(ptr)); |
18475
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6135 else |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6136 i = (int)STRLEN(ptr); |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6137 if (cap->count0 > 0 && cap->count0 <= 100) |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6138 coladvance((colnr_T)(i * cap->count0 / 100)); |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6139 else |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6140 coladvance((colnr_T)(i / 2)); |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6141 curwin->w_set_curswant = TRUE; |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6142 } |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6143 break; |
709c6b0dc78f
patch 8.1.2231: not easy to move to the middle of a text line
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
6144 |
7 | 6145 case '_': |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6146 // "g_": to the last non-blank character in the line or <count> lines |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6147 // downward. |
7 | 6148 cap->oap->motion_type = MCHAR; |
6149 cap->oap->inclusive = TRUE; | |
6150 curwin->w_curswant = MAXCOL; | |
6151 if (cursor_down((long)(cap->count1 - 1), | |
6152 cap->oap->op_type == OP_NOP) == FAIL) | |
6153 clearopbeep(cap->oap); | |
6154 else | |
6155 { | |
6156 char_u *ptr = ml_get_curline(); | |
6157 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6158 // In Visual mode we may end up after the line. |
7 | 6159 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL) |
6160 --curwin->w_cursor.col; | |
6161 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6162 // Decrease the cursor column until it's on a non-blank. |
7 | 6163 while (curwin->w_cursor.col > 0 |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
6164 && VIM_ISWHITE(ptr[curwin->w_cursor.col])) |
7 | 6165 --curwin->w_cursor.col; |
6166 curwin->w_set_curswant = TRUE; | |
2040
70c67b1bb1f1
updated for version 7.2.329
Bram Moolenaar <bram@zimbu.org>
parents:
2024
diff
changeset
|
6167 adjust_for_sel(cap); |
7 | 6168 } |
6169 break; | |
6170 | |
6171 case '$': | |
6172 case K_END: | |
6173 case K_KEND: | |
6174 { | |
6175 int col_off = curwin_col_off(); | |
6176 | |
6177 oap->motion_type = MCHAR; | |
6178 oap->inclusive = TRUE; | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12467
diff
changeset
|
6179 if (curwin->w_p_wrap && curwin->w_width != 0) |
7 | 6180 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6181 curwin->w_curswant = MAXCOL; // so we stay at the end |
7 | 6182 if (cap->count1 == 1) |
6183 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6184 int width1 = curwin->w_width - col_off; |
7 | 6185 int width2 = width1 + curwin_col_off2(); |
6186 | |
6187 validate_virtcol(); | |
6188 i = width1 - 1; | |
6189 if (curwin->w_virtcol >= (colnr_T)width1) | |
6190 i += ((curwin->w_virtcol - width1) / width2 + 1) | |
6191 * width2; | |
6192 coladvance((colnr_T)i); | |
5162
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6193 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6194 // Make sure we stick in this column. |
5162
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6195 validate_virtcol(); |
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6196 curwin->w_curswant = curwin->w_virtcol; |
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6197 curwin->w_set_curswant = FALSE; |
7 | 6198 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap) |
6199 { | |
6200 /* | |
6201 * Check for landing on a character that got split at | |
6202 * the end of the line. We do not want to advance to | |
6203 * the next screen line. | |
6204 */ | |
6205 if (curwin->w_virtcol > (colnr_T)i) | |
6206 --curwin->w_cursor.col; | |
6207 } | |
6208 } | |
6209 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL) | |
6210 clearopbeep(oap); | |
6211 } | |
6212 else | |
6213 { | |
17520
827d29c8f7e8
patch 8.1.1758: count of g$ not used correctly when text is not wrapped
Bram Moolenaar <Bram@vim.org>
parents:
17318
diff
changeset
|
6214 if (cap->count1 > 1) |
827d29c8f7e8
patch 8.1.1758: count of g$ not used correctly when text is not wrapped
Bram Moolenaar <Bram@vim.org>
parents:
17318
diff
changeset
|
6215 // if it fails, let the cursor still move to the last char |
17730
2fe133c7e972
patch 8.1.1862: Coverity warns for not using return value
Bram Moolenaar <Bram@vim.org>
parents:
17682
diff
changeset
|
6216 (void)cursor_down(cap->count1 - 1, FALSE); |
17520
827d29c8f7e8
patch 8.1.1758: count of g$ not used correctly when text is not wrapped
Bram Moolenaar <Bram@vim.org>
parents:
17318
diff
changeset
|
6217 |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6218 i = curwin->w_leftcol + curwin->w_width - col_off - 1; |
7 | 6219 coladvance((colnr_T)i); |
40 | 6220 |
24731
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6221 // if the character doesn't fit move one back |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6222 if (curwin->w_cursor.col > 0 |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6223 && (*mb_ptr2cells)(ml_get_cursor()) > 1) |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6224 { |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6225 colnr_T vcol; |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6226 |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6227 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &vcol); |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6228 if (vcol >= curwin->w_leftcol + curwin->w_width - col_off) |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6229 --curwin->w_cursor.col; |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6230 } |
a6a4224902f5
patch 8.2.2904: "g$" causes scroll if half a double width char is visible
Bram Moolenaar <Bram@vim.org>
parents:
24586
diff
changeset
|
6231 |
17520
827d29c8f7e8
patch 8.1.1758: count of g$ not used correctly when text is not wrapped
Bram Moolenaar <Bram@vim.org>
parents:
17318
diff
changeset
|
6232 // Make sure we stick in this column. |
40 | 6233 validate_virtcol(); |
6234 curwin->w_curswant = curwin->w_virtcol; | |
6235 curwin->w_set_curswant = FALSE; | |
7 | 6236 } |
6237 } | |
6238 break; | |
6239 | |
6240 /* | |
6241 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>" | |
6242 */ | |
6243 case '*': | |
6244 case '#': | |
6245 #if POUND != '#' | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6246 case POUND: // pound sign (sometimes equal to '#') |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6247 #endif |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6248 case Ctrl_RSB: // :tag or :tselect for current identifier |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6249 case ']': // :tselect for current identifier |
7 | 6250 nv_ident(cap); |
6251 break; | |
6252 | |
6253 /* | |
6254 * ge and gE: go back to end of word | |
6255 */ | |
6256 case 'e': | |
6257 case 'E': | |
6258 oap->motion_type = MCHAR; | |
6259 curwin->w_set_curswant = TRUE; | |
6260 oap->inclusive = TRUE; | |
6261 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL) | |
6262 clearopbeep(oap); | |
6263 break; | |
6264 | |
6265 /* | |
6266 * "g CTRL-G": display info about cursor position | |
6267 */ | |
6268 case Ctrl_G: | |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
6269 cursor_pos_info(NULL); |
7 | 6270 break; |
6271 | |
6272 /* | |
6273 * "gi": start Insert at the last position. | |
6274 */ | |
6275 case 'i': | |
6276 if (curbuf->b_last_insert.lnum != 0) | |
6277 { | |
6278 curwin->w_cursor = curbuf->b_last_insert; | |
6279 check_cursor_lnum(); | |
6280 i = (int)STRLEN(ml_get_curline()); | |
6281 if (curwin->w_cursor.col > (colnr_T)i) | |
6282 { | |
6283 if (virtual_active()) | |
6284 curwin->w_cursor.coladd += curwin->w_cursor.col - i; | |
6285 curwin->w_cursor.col = i; | |
6286 } | |
6287 } | |
6288 cap->cmdchar = 'i'; | |
6289 nv_edit(cap); | |
6290 break; | |
6291 | |
6292 /* | |
6293 * "gI": Start insert in column 1. | |
6294 */ | |
6295 case 'I': | |
6296 beginline(0); | |
6297 if (!checkclearopq(oap)) | |
6298 invoke_edit(cap, FALSE, 'g', FALSE); | |
6299 break; | |
6300 | |
6301 #ifdef FEAT_SEARCHPATH | |
6302 /* | |
6303 * "gf": goto file, edit file under cursor | |
6304 * "]f" and "[f": can also be used. | |
6305 */ | |
6306 case 'f': | |
681 | 6307 case 'F': |
7 | 6308 nv_gotofile(cap); |
6309 break; | |
6310 #endif | |
6311 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6312 // "g'm" and "g`m": jump to mark without setting pcmark |
7 | 6313 case '\'': |
6314 cap->arg = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6315 // FALLTHROUGH |
7 | 6316 case '`': |
6317 nv_gomark(cap); | |
6318 break; | |
6319 | |
6320 /* | |
6321 * "gs": Goto sleep. | |
6322 */ | |
6323 case 's': | |
23648
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
6324 do_sleep(cap->count1 * 1000L, FALSE); |
7 | 6325 break; |
6326 | |
6327 /* | |
6328 * "ga": Display the ascii value of the character under the | |
6329 * cursor. It is displayed in decimal, hex, and octal. -- webb | |
6330 */ | |
6331 case 'a': | |
6332 do_ascii(NULL); | |
6333 break; | |
6334 | |
6335 /* | |
6336 * "g8": Display the bytes used for the UTF-8 character under the | |
6337 * cursor. It is displayed in hex. | |
775 | 6338 * "8g8" finds illegal byte sequence. |
7 | 6339 */ |
6340 case '8': | |
775 | 6341 if (cap->count0 == 8) |
6342 utf_find_illegal(); | |
6343 else | |
6344 show_utf8(); | |
7 | 6345 break; |
6346 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6347 // "g<": show scrollback text |
447 | 6348 case '<': |
6349 show_sb_text(); | |
6350 break; | |
6351 | |
7 | 6352 /* |
6353 * "gg": Goto the first line in file. With a count it goes to | |
6354 * that line number like for "G". -- webb | |
6355 */ | |
6356 case 'g': | |
6357 cap->arg = FALSE; | |
6358 nv_goto(cap); | |
6359 break; | |
6360 | |
6361 /* | |
6362 * Two-character operators: | |
6363 * "gq" Format text | |
6364 * "gw" Format text and keep cursor position | |
6365 * "g~" Toggle the case of the text. | |
6366 * "gu" Change text to lower case. | |
6367 * "gU" Change text to upper case. | |
6368 * "g?" rot13 encoding | |
602 | 6369 * "g@" call 'operatorfunc' |
7 | 6370 */ |
6371 case 'q': | |
6372 case 'w': | |
6373 oap->cursor_start = curwin->w_cursor; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6374 // FALLTHROUGH |
7 | 6375 case '~': |
6376 case 'u': | |
6377 case 'U': | |
6378 case '?': | |
602 | 6379 case '@': |
7 | 6380 nv_operator(cap); |
6381 break; | |
6382 | |
6383 /* | |
1188 | 6384 * "gd": Find first occurrence of pattern under the cursor in the |
7 | 6385 * current function |
6386 * "gD": idem, but in the current file. | |
6387 */ | |
6388 case 'd': | |
6389 case 'D': | |
523 | 6390 nv_gd(oap, cap->nchar, (int)cap->count0); |
7 | 6391 break; |
6392 | |
6393 /* | |
6394 * g<*Mouse> : <C-*mouse> | |
6395 */ | |
6396 case K_MIDDLEMOUSE: | |
6397 case K_MIDDLEDRAG: | |
6398 case K_MIDDLERELEASE: | |
6399 case K_LEFTMOUSE: | |
6400 case K_LEFTDRAG: | |
6401 case K_LEFTRELEASE: | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
6402 case K_MOUSEMOVE: |
7 | 6403 case K_RIGHTMOUSE: |
6404 case K_RIGHTDRAG: | |
6405 case K_RIGHTRELEASE: | |
6406 case K_X1MOUSE: | |
6407 case K_X1DRAG: | |
6408 case K_X1RELEASE: | |
6409 case K_X2MOUSE: | |
6410 case K_X2DRAG: | |
6411 case K_X2RELEASE: | |
6412 mod_mask = MOD_MASK_CTRL; | |
6413 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0); | |
6414 break; | |
6415 | |
6416 case K_IGNORE: | |
6417 break; | |
6418 | |
6419 /* | |
6420 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text | |
6421 */ | |
6422 case 'p': | |
6423 case 'P': | |
6424 nv_put(cap); | |
6425 break; | |
6426 | |
6427 #ifdef FEAT_BYTEOFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6428 // "go": goto byte count from start of buffer |
7 | 6429 case 'o': |
6430 goto_byte(cap->count0); | |
6431 break; | |
6432 #endif | |
6433 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6434 // "gQ": improved Ex mode |
7 | 6435 case 'Q': |
633 | 6436 if (text_locked()) |
7 | 6437 { |
6438 clearopbeep(cap->oap); | |
633 | 6439 text_locked_msg(); |
7 | 6440 break; |
6441 } | |
631 | 6442 |
7 | 6443 if (!checkclearopq(oap)) |
6444 do_exmode(TRUE); | |
6445 break; | |
6446 | |
6447 #ifdef FEAT_JUMPLIST | |
6448 case ',': | |
6449 nv_pcmark(cap); | |
6450 break; | |
6451 | |
6452 case ';': | |
6453 cap->count1 = -cap->count1; | |
6454 nv_pcmark(cap); | |
6455 break; | |
6456 #endif | |
6457 | |
667 | 6458 case 't': |
3630 | 6459 if (!checkclearop(oap)) |
6460 goto_tabpage((int)cap->count0); | |
667 | 6461 break; |
682 | 6462 case 'T': |
3630 | 6463 if (!checkclearop(oap)) |
6464 goto_tabpage(-(int)cap->count1); | |
682 | 6465 break; |
667 | 6466 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6467 case TAB: |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6468 if (!checkclearop(oap) && goto_tabpage_lastused() == FAIL) |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6469 clearopbeep(oap); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6470 break; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6471 |
750 | 6472 case '+': |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6473 case '-': // "g+" and "g-": undo or redo along the timeline |
750 | 6474 if (!checkclearopq(oap)) |
771 | 6475 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1, |
2281
e41433ea71df
Added ":earlier 1f" and ":later 1f".
Bram Moolenaar <bram@vim.org>
parents:
2259
diff
changeset
|
6476 FALSE, FALSE, FALSE); |
750 | 6477 break; |
6478 | |
7 | 6479 default: |
6480 clearopbeep(oap); | |
6481 break; | |
6482 } | |
6483 } | |
6484 | |
6485 /* | |
6486 * Handle "o" and "O" commands. | |
6487 */ | |
6488 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6489 n_opencmd(cmdarg_T *cap) |
7 | 6490 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6491 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6492 linenr_T oldline = curwin->w_cursor.lnum; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6493 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6494 |
7 | 6495 if (!checkclearopq(cap->oap)) |
6496 { | |
6497 #ifdef FEAT_FOLDING | |
6498 if (cap->cmdchar == 'O') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6499 // Open above the first line of a folded sequence of lines |
7 | 6500 (void)hasFolding(curwin->w_cursor.lnum, |
6501 &curwin->w_cursor.lnum, NULL); | |
6502 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6503 // Open below the last line of a folded sequence of lines |
7 | 6504 (void)hasFolding(curwin->w_cursor.lnum, |
6505 NULL, &curwin->w_cursor.lnum); | |
6506 #endif | |
6507 if (u_save((linenr_T)(curwin->w_cursor.lnum - | |
6508 (cap->cmdchar == 'O' ? 1 : 0)), | |
6509 (linenr_T)(curwin->w_cursor.lnum + | |
6510 (cap->cmdchar == 'o' ? 1 : 0)) | |
6511 ) == OK | |
6512 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD, | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18154
diff
changeset
|
6513 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0, |
26516
9596c652420b
patch 8.2.3787: no proper formatting of a C line comment after a statement
Bram Moolenaar <Bram@vim.org>
parents:
26468
diff
changeset
|
6514 0, NULL) == OK) |
7 | 6515 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6516 #ifdef FEAT_CONCEAL |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
6517 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum) |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15422
diff
changeset
|
6518 redrawWinline(curwin, oldline); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6519 #endif |
6834 | 6520 #ifdef FEAT_SYN_HL |
6821 | 6521 if (curwin->w_p_cul) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6522 // force redraw of cursorline |
6821 | 6523 curwin->w_valid &= ~VALID_CROW; |
6834 | 6524 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6525 // When '#' is in 'cpoptions' ignore the count. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6526 if (vim_strchr(p_cpo, CPO_HASH) != NULL) |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
6527 cap->count1 = 1; |
7 | 6528 invoke_edit(cap, FALSE, cap->cmdchar, TRUE); |
6529 } | |
6530 } | |
6531 } | |
6532 | |
6533 /* | |
6534 * "." command: redo last change. | |
6535 */ | |
6536 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6537 nv_dot(cmdarg_T *cap) |
7 | 6538 { |
6539 if (!checkclearopq(cap->oap)) | |
6540 { | |
6541 /* | |
6542 * If "restart_edit" is TRUE, the last but one command is repeated | |
6543 * instead of the last command (inserting text). This is used for | |
6544 * CTRL-O <.> in insert mode. | |
6545 */ | |
6546 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL) | |
6547 clearopbeep(cap->oap); | |
6548 } | |
6549 } | |
6550 | |
6551 /* | |
6552 * CTRL-R: undo undo | |
6553 */ | |
6554 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6555 nv_redo(cmdarg_T *cap) |
7 | 6556 { |
6557 if (!checkclearopq(cap->oap)) | |
6558 { | |
6559 u_redo((int)cap->count1); | |
6560 curwin->w_set_curswant = TRUE; | |
6561 } | |
6562 } | |
6563 | |
6564 /* | |
6565 * Handle "U" command. | |
6566 */ | |
6567 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6568 nv_Undo(cmdarg_T *cap) |
7 | 6569 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6570 // In Visual mode and typing "gUU" triggers an operator |
5735 | 6571 if (cap->oap->op_type == OP_UPPER || VIsual_active) |
7 | 6572 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6573 // translate "gUU" to "gUgU" |
7 | 6574 cap->cmdchar = 'g'; |
6575 cap->nchar = 'U'; | |
6576 nv_operator(cap); | |
6577 } | |
6578 else if (!checkclearopq(cap->oap)) | |
6579 { | |
6580 u_undoline(); | |
6581 curwin->w_set_curswant = TRUE; | |
6582 } | |
6583 } | |
6584 | |
6585 /* | |
6586 * '~' command: If tilde is not an operator and Visual is off: swap case of a | |
6587 * single character. | |
6588 */ | |
6589 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6590 nv_tilde(cmdarg_T *cap) |
7 | 6591 { |
5735 | 6592 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE) |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6593 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6594 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6595 if (bt_prompt(curbuf) && !prompt_curpos_editable()) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6596 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6597 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6598 return; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6599 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6600 #endif |
7 | 6601 n_swapchar(cap); |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6602 } |
7 | 6603 else |
6604 nv_operator(cap); | |
6605 } | |
6606 | |
6607 /* | |
6608 * Handle an operator command. | |
6609 * The actual work is done by do_pending_operator(). | |
6610 */ | |
6611 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6612 nv_operator(cmdarg_T *cap) |
7 | 6613 { |
6614 int op_type; | |
6615 | |
6616 op_type = get_op_type(cap->cmdchar, cap->nchar); | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6617 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6618 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable()) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6619 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6620 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6621 return; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6622 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
6623 #endif |
7 | 6624 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6625 if (op_type == cap->oap->op_type) // double operator works on lines |
7 | 6626 nv_lineop(cap); |
6627 else if (!checkclearop(cap->oap)) | |
6628 { | |
6629 cap->oap->start = curwin->w_cursor; | |
6630 cap->oap->op_type = op_type; | |
1490 | 6631 #ifdef FEAT_EVAL |
6632 set_op_var(op_type); | |
6633 #endif | |
6634 } | |
6635 } | |
6636 | |
6637 #ifdef FEAT_EVAL | |
6638 /* | |
6639 * Set v:operator to the characters for "optype". | |
6640 */ | |
6641 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6642 set_op_var(int optype) |
1490 | 6643 { |
6644 char_u opchars[3]; | |
6645 | |
6646 if (optype == OP_NOP) | |
6647 set_vim_var_string(VV_OP, NULL, 0); | |
6648 else | |
6649 { | |
6650 opchars[0] = get_op_char(optype); | |
6651 opchars[1] = get_extra_op_char(optype); | |
6652 opchars[2] = NUL; | |
6653 set_vim_var_string(VV_OP, opchars, -1); | |
6654 } | |
6655 } | |
6656 #endif | |
7 | 6657 |
6658 /* | |
6659 * Handle linewise operator "dd", "yy", etc. | |
6660 * | |
6661 * "_" is is a strange motion command that helps make operators more logical. | |
6662 * It is actually implemented, but not documented in the real Vi. This motion | |
6663 * command actually refers to "the current line". Commands like "dd" and "yy" | |
6664 * are really an alternate form of "d_" and "y_". It does accept a count, so | |
6665 * "d3_" works to delete 3 lines. | |
6666 */ | |
6667 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6668 nv_lineop(cmdarg_T *cap) |
7 | 6669 { |
6670 cap->oap->motion_type = MLINE; | |
6671 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL) | |
6672 clearopbeep(cap->oap); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6673 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions |
4011 | 6674 && cap->oap->motion_force != 'v' |
6675 && cap->oap->motion_force != Ctrl_V) | |
7 | 6676 || cap->oap->op_type == OP_LSHIFT |
6677 || cap->oap->op_type == OP_RSHIFT) | |
6678 beginline(BL_SOL | BL_FIX); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6679 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor |
7 | 6680 beginline(BL_WHITE | BL_FIX); |
6681 } | |
6682 | |
6683 /* | |
6684 * <Home> command. | |
6685 */ | |
6686 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6687 nv_home(cmdarg_T *cap) |
7 | 6688 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6689 // CTRL-HOME is like "gg" |
180 | 6690 if (mod_mask & MOD_MASK_CTRL) |
6691 nv_goto(cap); | |
6692 else | |
6693 { | |
6694 cap->count0 = 1; | |
6695 nv_pipe(cap); | |
6696 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6697 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6698 // one-character line). |
7 | 6699 } |
6700 | |
6701 /* | |
6702 * "|" command. | |
6703 */ | |
6704 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6705 nv_pipe(cmdarg_T *cap) |
7 | 6706 { |
6707 cap->oap->motion_type = MCHAR; | |
6708 cap->oap->inclusive = FALSE; | |
6709 beginline(0); | |
6710 if (cap->count0 > 0) | |
6711 { | |
6712 coladvance((colnr_T)(cap->count0 - 1)); | |
6713 curwin->w_curswant = (colnr_T)(cap->count0 - 1); | |
6714 } | |
6715 else | |
6716 curwin->w_curswant = 0; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6717 // keep curswant at the column where we wanted to go, not where |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6718 // we ended; differs if line is too short |
7 | 6719 curwin->w_set_curswant = FALSE; |
6720 } | |
6721 | |
6722 /* | |
6723 * Handle back-word command "b" and "B". | |
6724 * cap->arg is 1 for "B" | |
6725 */ | |
6726 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6727 nv_bck_word(cmdarg_T *cap) |
7 | 6728 { |
6729 cap->oap->motion_type = MCHAR; | |
6730 cap->oap->inclusive = FALSE; | |
6731 curwin->w_set_curswant = TRUE; | |
6732 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL) | |
6733 clearopbeep(cap->oap); | |
6734 #ifdef FEAT_FOLDING | |
6735 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6736 foldOpenCursor(); | |
6737 #endif | |
6738 } | |
6739 | |
6740 /* | |
6741 * Handle word motion commands "e", "E", "w" and "W". | |
6742 * cap->arg is TRUE for "E" and "W". | |
6743 */ | |
6744 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6745 nv_wordcmd(cmdarg_T *cap) |
7 | 6746 { |
6747 int n; | |
6748 int word_end; | |
6749 int flag = FALSE; | |
1573 | 6750 pos_T startpos = curwin->w_cursor; |
7 | 6751 |
6752 /* | |
6753 * Set inclusive for the "E" and "e" command. | |
6754 */ | |
6755 if (cap->cmdchar == 'e' || cap->cmdchar == 'E') | |
6756 word_end = TRUE; | |
6757 else | |
6758 word_end = FALSE; | |
6759 cap->oap->inclusive = word_end; | |
6760 | |
6761 /* | |
6762 * "cw" and "cW" are a special case. | |
6763 */ | |
6764 if (!word_end && cap->oap->op_type == OP_CHANGE) | |
6765 { | |
6766 n = gchar_cursor(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6767 if (n != NUL) // not an empty line |
7 | 6768 { |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
6769 if (VIM_ISWHITE(n)) |
7 | 6770 { |
6771 /* | |
6772 * Reproduce a funny Vi behaviour: "cw" on a blank only | |
6773 * changes one character, not all blanks until the start of | |
6774 * the next word. Only do this when the 'w' flag is included | |
6775 * in 'cpoptions'. | |
6776 */ | |
6777 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL) | |
6778 { | |
6779 cap->oap->inclusive = TRUE; | |
6780 cap->oap->motion_type = MCHAR; | |
6781 return; | |
6782 } | |
6783 } | |
6784 else | |
6785 { | |
6786 /* | |
6787 * This is a little strange. To match what the real Vi does, | |
6788 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided | |
6789 * that we are not on a space or a TAB. This seems impolite | |
6790 * at first, but it's really more what we mean when we say | |
6791 * 'cw'. | |
6792 * Another strangeness: When standing on the end of a word | |
4352 | 6793 * "ce" will change until the end of the next word, but "cw" |
7 | 6794 * will change only one character! This is done by setting |
6795 * flag. | |
6796 */ | |
6797 cap->oap->inclusive = TRUE; | |
6798 word_end = TRUE; | |
6799 flag = TRUE; | |
6800 } | |
6801 } | |
6802 } | |
6803 | |
6804 cap->oap->motion_type = MCHAR; | |
6805 curwin->w_set_curswant = TRUE; | |
6806 if (word_end) | |
6807 n = end_word(cap->count1, cap->arg, flag, FALSE); | |
6808 else | |
6809 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP); | |
6810 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6811 // Don't leave the cursor on the NUL past the end of line. Unless we |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6812 // didn't move it forward. |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6813 if (LT_POS(startpos, curwin->w_cursor)) |
1505 | 6814 adjust_cursor(cap->oap); |
7 | 6815 |
6816 if (n == FAIL && cap->oap->op_type == OP_NOP) | |
6817 clearopbeep(cap->oap); | |
6818 else | |
6819 { | |
6820 adjust_for_sel(cap); | |
6821 #ifdef FEAT_FOLDING | |
6822 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6823 foldOpenCursor(); | |
6824 #endif | |
6825 } | |
6826 } | |
6827 | |
6828 /* | |
1505 | 6829 * Used after a movement command: If the cursor ends up on the NUL after the |
6830 * end of the line, may move it back to the last character and make the motion | |
6831 * inclusive. | |
6832 */ | |
6833 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6834 adjust_cursor(oparg_T *oap) |
1505 | 6835 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6836 // The cursor cannot remain on the NUL when: |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6837 // - the column is > 0 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6838 // - not in Visual mode or 'selection' is "o" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6839 // - 'virtualedit' is not "all" and not "onemore". |
1505 | 6840 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL |
6841 && (!VIsual_active || *p_sel == 'o') | |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
6842 && !virtual_active() && (get_ve_flags() & VE_ONEMORE) == 0) |
1505 | 6843 { |
6844 --curwin->w_cursor.col; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6845 // prevent cursor from moving on the trail byte |
1505 | 6846 if (has_mbyte) |
6847 mb_adjust_cursor(); | |
6848 oap->inclusive = TRUE; | |
6849 } | |
6850 } | |
6851 | |
6852 /* | |
7 | 6853 * "0" and "^" commands. |
6854 * cap->arg is the argument for beginline(). | |
6855 */ | |
6856 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6857 nv_beginline(cmdarg_T *cap) |
7 | 6858 { |
6859 cap->oap->motion_type = MCHAR; | |
6860 cap->oap->inclusive = FALSE; | |
6861 beginline(cap->arg); | |
6862 #ifdef FEAT_FOLDING | |
6863 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6864 foldOpenCursor(); | |
6865 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6866 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6867 // one-character line). |
7 | 6868 } |
6869 | |
6870 /* | |
6871 * In exclusive Visual mode, may include the last character. | |
6872 */ | |
6873 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6874 adjust_for_sel(cmdarg_T *cap) |
7 | 6875 { |
6876 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e' | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6877 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor)) |
7 | 6878 { |
6879 if (has_mbyte) | |
6880 inc_cursor(); | |
6881 else | |
6882 ++curwin->w_cursor.col; | |
6883 cap->oap->inclusive = FALSE; | |
6884 } | |
6885 } | |
6886 | |
6887 /* | |
6888 * Exclude last character at end of Visual area for 'selection' == "exclusive". | |
6889 * Should check VIsual_mode before calling this. | |
6890 * Returns TRUE when backed up to the previous line. | |
6891 */ | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
6892 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6893 unadjust_for_sel(void) |
7 | 6894 { |
6895 pos_T *pp; | |
6896 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6897 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor)) |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6898 { |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6899 if (LT_POS(VIsual, curwin->w_cursor)) |
7 | 6900 pp = &curwin->w_cursor; |
6901 else | |
6902 pp = &VIsual; | |
6903 if (pp->coladd > 0) | |
6904 --pp->coladd; | |
6905 else | |
6906 if (pp->col > 0) | |
6907 { | |
6908 --pp->col; | |
2933 | 6909 mb_adjustpos(curbuf, pp); |
7 | 6910 } |
6911 else if (pp->lnum > 1) | |
6912 { | |
6913 --pp->lnum; | |
6914 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum)); | |
6915 return TRUE; | |
6916 } | |
6917 } | |
6918 return FALSE; | |
6919 } | |
6920 | |
6921 /* | |
6922 * SELECT key in Normal or Visual mode: end of Select mode mapping. | |
6923 */ | |
6924 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6925 nv_select(cmdarg_T *cap) |
7 | 6926 { |
6927 if (VIsual_active) | |
6928 VIsual_select = TRUE; | |
6929 else if (VIsual_reselect) | |
6930 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6931 cap->nchar = 'v'; // fake "gv" command |
7 | 6932 cap->arg = TRUE; |
6933 nv_g_cmd(cap); | |
6934 } | |
6935 } | |
6936 | |
6937 | |
6938 /* | |
6939 * "G", "gg", CTRL-END, CTRL-HOME. | |
6940 * cap->arg is TRUE for "G". | |
6941 */ | |
6942 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6943 nv_goto(cmdarg_T *cap) |
7 | 6944 { |
6945 linenr_T lnum; | |
6946 | |
6947 if (cap->arg) | |
6948 lnum = curbuf->b_ml.ml_line_count; | |
6949 else | |
6950 lnum = 1L; | |
6951 cap->oap->motion_type = MLINE; | |
6952 setpcmark(); | |
6953 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6954 // When a count is given, use it instead of the default lnum |
7 | 6955 if (cap->count0 != 0) |
6956 lnum = cap->count0; | |
6957 if (lnum < 1L) | |
6958 lnum = 1L; | |
6959 else if (lnum > curbuf->b_ml.ml_line_count) | |
6960 lnum = curbuf->b_ml.ml_line_count; | |
6961 curwin->w_cursor.lnum = lnum; | |
6962 beginline(BL_SOL | BL_FIX); | |
6963 #ifdef FEAT_FOLDING | |
6964 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6965 foldOpenCursor(); | |
6966 #endif | |
6967 } | |
6968 | |
6969 /* | |
6970 * CTRL-\ in Normal mode. | |
6971 */ | |
6972 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6973 nv_normal(cmdarg_T *cap) |
7 | 6974 { |
6975 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G) | |
6976 { | |
6977 clearop(cap->oap); | |
643 | 6978 if (restart_edit != 0 && mode_displayed) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6979 clear_cmdline = TRUE; // unshow mode later |
7 | 6980 restart_edit = 0; |
6981 #ifdef FEAT_CMDWIN | |
6982 if (cmdwin_type != 0) | |
6983 cmdwin_result = Ctrl_C; | |
6984 #endif | |
6985 if (VIsual_active) | |
6986 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6987 end_visual_mode(); // stop Visual |
7 | 6988 redraw_curbuf_later(INVERTED); |
6989 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6990 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. |
7 | 6991 if (cap->nchar == Ctrl_G && p_im) |
6992 restart_edit = 'a'; | |
6993 } | |
6994 else | |
6995 clearopbeep(cap->oap); | |
6996 } | |
6997 | |
6998 /* | |
6999 * ESC in Normal mode: beep, but don't flush buffers. | |
7000 * Don't even beep if we are canceling a command. | |
7001 */ | |
7002 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7003 nv_esc(cmdarg_T *cap) |
7 | 7004 { |
7005 int no_reason; | |
7006 | |
7007 no_reason = (cap->oap->op_type == OP_NOP | |
7008 && cap->opcount == 0 | |
7009 && cap->count0 == 0 | |
7010 && cap->oap->regname == 0 | |
7011 && !p_im); | |
7012 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7013 if (cap->arg) // TRUE for CTRL-C |
7 | 7014 { |
7015 if (restart_edit == 0 | |
7016 #ifdef FEAT_CMDWIN | |
7017 && cmdwin_type == 0 | |
7018 #endif | |
7019 && !VIsual_active | |
7020 && no_reason) | |
16089
4411c38f3d16
patch 8.1.1049: when user tries to exit with CTRL-C message is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
7021 { |
4411c38f3d16
patch 8.1.1049: when user tries to exit with CTRL-C message is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
7022 if (anyBufIsChanged()) |
4411c38f3d16
patch 8.1.1049: when user tries to exit with CTRL-C message is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
7023 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim")); |
4411c38f3d16
patch 8.1.1049: when user tries to exit with CTRL-C message is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
7024 else |
4411c38f3d16
patch 8.1.1049: when user tries to exit with CTRL-C message is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
7025 msg(_("Type :qa and press <Enter> to exit Vim")); |
4411c38f3d16
patch 8.1.1049: when user tries to exit with CTRL-C message is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
7026 } |
7 | 7027 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7028 // Don't reset "restart_edit" when 'insertmode' is set, it won't be |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7029 // set again below when halfway a mapping. |
7 | 7030 if (!p_im) |
7031 restart_edit = 0; | |
7032 #ifdef FEAT_CMDWIN | |
7033 if (cmdwin_type != 0) | |
7034 { | |
7035 cmdwin_result = K_IGNORE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7036 got_int = FALSE; // don't stop executing autocommands et al. |
7 | 7037 return; |
7038 } | |
7039 #endif | |
7040 } | |
24012
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7041 #ifdef FEAT_CMDWIN |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7042 else if (cmdwin_type != 0 && ex_normal_busy) |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7043 { |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7044 // When :normal runs out of characters while in the command line window |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7045 // vgetorpeek() will return ESC. Exit the cmdline window to break the |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7046 // loop. |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7047 cmdwin_result = K_IGNORE; |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7048 return; |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7049 } |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7050 #endif |
7 | 7051 |
7052 if (VIsual_active) | |
7053 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7054 end_visual_mode(); // stop Visual |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7055 check_cursor_col(); // make sure cursor is not beyond EOL |
7 | 7056 curwin->w_set_curswant = TRUE; |
7057 redraw_curbuf_later(INVERTED); | |
7058 } | |
5735 | 7059 else if (no_reason) |
6949 | 7060 vim_beep(BO_ESC); |
7 | 7061 clearop(cap->oap); |
7062 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7063 // A CTRL-C is often used at the start of a menu. When 'insertmode' is |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7064 // set return to Insert mode afterwards. |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
7065 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0) |
7 | 7066 restart_edit = 'a'; |
7067 } | |
7068 | |
7069 /* | |
17984
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7070 * Move the cursor for the "A" command. |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7071 */ |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7072 void |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7073 set_cursor_for_append_to_line(void) |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7074 { |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7075 curwin->w_set_curswant = TRUE; |
25380
ac88cd21ae88
patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
7076 if (get_ve_flags() == VE_ALL) |
17984
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7077 { |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7078 int save_State = State; |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7079 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7080 // Pretend Insert mode here to allow the cursor on the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7081 // character past the end of the line |
17984
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7082 State = INSERT; |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7083 coladvance((colnr_T)MAXCOL); |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7084 State = save_State; |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7085 } |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7086 else |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7087 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor()); |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7088 } |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7089 |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7090 /* |
7 | 7091 * Handle "A", "a", "I", "i" and <Insert> commands. |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7092 * Also handle K_PS, start bracketed paste. |
7 | 7093 */ |
7094 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7095 nv_edit(cmdarg_T *cap) |
7 | 7096 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7097 // <Insert> is equal to "i" |
7 | 7098 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS) |
7099 cap->cmdchar = 'i'; | |
7100 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7101 // in Visual mode "A" and "I" are an operator |
7 | 7102 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I')) |
12467
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7103 { |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7104 #ifdef FEAT_TERMINAL |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7105 if (term_in_normal_mode()) |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7106 { |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7107 end_visual_mode(); |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7108 clearop(cap->oap); |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7109 term_enter_job_mode(); |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7110 return; |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7111 } |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7112 #endif |
7 | 7113 v_visop(cap); |
12467
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7114 } |
7 | 7115 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7116 // in Visual mode and after an operator "a" and "i" are for text objects |
5735 | 7117 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i') |
7118 && (cap->oap->op_type != OP_NOP || VIsual_active)) | |
7 | 7119 { |
7120 #ifdef FEAT_TEXTOBJ | |
7121 nv_object(cap); | |
7122 #else | |
7123 clearopbeep(cap->oap); | |
7124 #endif | |
7125 } | |
11892
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7126 #ifdef FEAT_TERMINAL |
11993
92a86fe8adc0
patch 8.0.0877: using CTRL- CTRL-N in terminal is inconsistent
Christian Brabandt <cb@256bit.org>
parents:
11987
diff
changeset
|
7127 else if (term_in_normal_mode()) |
11892
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7128 { |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7129 clearop(cap->oap); |
11993
92a86fe8adc0
patch 8.0.0877: using CTRL- CTRL-N in terminal is inconsistent
Christian Brabandt <cb@256bit.org>
parents:
11987
diff
changeset
|
7130 term_enter_job_mode(); |
11892
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7131 return; |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7132 } |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7133 #endif |
7 | 7134 else if (!curbuf->b_p_ma && !p_im) |
7135 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7136 // Only give this error when 'insertmode' is off. |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24866
diff
changeset
|
7137 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 7138 clearop(cap->oap); |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7139 if (cap->cmdchar == K_PS) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7140 // drop the pasted text |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7141 bracketed_paste(PASTE_INSERT, TRUE, NULL); |
7 | 7142 } |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7143 else if (cap->cmdchar == K_PS && VIsual_active) |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7144 { |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7145 pos_T old_pos = curwin->w_cursor; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7146 pos_T old_visual = VIsual; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7147 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7148 // In Visual mode the selected text is deleted. |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7149 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum) |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7150 { |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7151 shift_delete_registers(); |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7152 cap->oap->regname = '1'; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7153 } |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7154 else |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7155 cap->oap->regname = '-'; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7156 cap->cmdchar = 'd'; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7157 cap->nchar = NUL; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7158 nv_operator(cap); |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7159 do_pending_operator(cap, 0, FALSE); |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7160 cap->cmdchar = K_PS; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7161 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7162 // When the last char in the line was deleted then append. Detect this |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7163 // by checking if the cursor moved to before the Visual area. |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
7164 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos) |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
7165 && LT_POS(curwin->w_cursor, old_visual)) |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7166 inc_cursor(); |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7167 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7168 // Insert to replace the deleted text with the pasted text. |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7169 invoke_edit(cap, FALSE, cap->cmdchar, FALSE); |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7170 } |
7 | 7171 else if (!checkclearopq(cap->oap)) |
7172 { | |
7173 switch (cap->cmdchar) | |
7174 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7175 case 'A': // "A"ppend after the line |
17984
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7176 set_cursor_for_append_to_line(); |
7 | 7177 break; |
7178 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7179 case 'I': // "I"nsert before the first non-blank |
164 | 7180 if (vim_strchr(p_cpo, CPO_INSEND) == NULL) |
7181 beginline(BL_WHITE); | |
7182 else | |
7183 beginline(BL_WHITE|BL_FIX); | |
7 | 7184 break; |
7185 | |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7186 case K_PS: |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7187 // Bracketed paste works like "a"ppend, unless the cursor is in |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7188 // the first column, then it inserts. |
10813
09eb5fd275e0
patch 8.0.0296: bracketed paste can only append, not insert
Christian Brabandt <cb@256bit.org>
parents:
10785
diff
changeset
|
7189 if (curwin->w_cursor.col == 0) |
09eb5fd275e0
patch 8.0.0296: bracketed paste can only append, not insert
Christian Brabandt <cb@256bit.org>
parents:
10785
diff
changeset
|
7190 break; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7191 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7192 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7193 case 'a': // "a"ppend is like "i"nsert on the next character. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7194 // increment coladd when in virtual space, increment the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7195 // column otherwise, also to append after an unprintable char |
7 | 7196 if (virtual_active() |
7197 && (curwin->w_cursor.coladd > 0 | |
7198 || *ml_get_cursor() == NUL | |
7199 || *ml_get_cursor() == TAB)) | |
7200 curwin->w_cursor.coladd++; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
7201 else if (*ml_get_cursor() != NUL) |
7 | 7202 inc_cursor(); |
7203 break; | |
7204 } | |
7205 | |
7206 if (curwin->w_cursor.coladd && cap->cmdchar != 'A') | |
7207 { | |
7208 int save_State = State; | |
7209 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7210 // Pretend Insert mode here to allow the cursor on the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7211 // character past the end of the line |
7 | 7212 State = INSERT; |
7213 coladvance(getviscol()); | |
7214 State = save_State; | |
7215 } | |
7216 | |
7217 invoke_edit(cap, FALSE, cap->cmdchar, FALSE); | |
7218 } | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7219 else if (cap->cmdchar == K_PS) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7220 // drop the pasted text |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7221 bracketed_paste(PASTE_INSERT, TRUE, NULL); |
7 | 7222 } |
7223 | |
7224 /* | |
7225 * Invoke edit() and take care of "restart_edit" and the return value. | |
7226 */ | |
7227 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7228 invoke_edit( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7229 cmdarg_T *cap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7230 int repl, // "r" or "gr" command |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7231 int cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7232 int startln) |
7 | 7233 { |
7234 int restart_edit_save = 0; | |
7235 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7236 // Complicated: When the user types "a<C-O>a" we don't want to do Insert |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7237 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7238 // it. |
7 | 7239 if (repl || !stuff_empty()) |
7240 restart_edit_save = restart_edit; | |
7241 else | |
7242 restart_edit_save = 0; | |
7243 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7244 // Always reset "restart_edit", this is not a restarted edit. |
7 | 7245 restart_edit = 0; |
7246 | |
7247 if (edit(cmd, startln, cap->count1)) | |
7248 cap->retval |= CA_COMMAND_BUSY; | |
7249 | |
7250 if (restart_edit == 0) | |
7251 restart_edit = restart_edit_save; | |
7252 } | |
7253 | |
7254 #ifdef FEAT_TEXTOBJ | |
7255 /* | |
7256 * "a" or "i" while an operator is pending or in Visual mode: object motion. | |
7257 */ | |
7258 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7259 nv_object( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7260 cmdarg_T *cap) |
7 | 7261 { |
7262 int flag; | |
7263 int include; | |
7264 char_u *mps_save; | |
7265 | |
7266 if (cap->cmdchar == 'i') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7267 include = FALSE; // "ix" = inner object: exclude white space |
7 | 7268 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7269 include = TRUE; // "ax" = an object: include white space |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7270 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7271 // Make sure (), [], {} and <> are in 'matchpairs' |
7 | 7272 mps_save = curbuf->b_p_mps; |
7273 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>"; | |
7274 | |
7275 switch (cap->nchar) | |
7276 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7277 case 'w': // "aw" = a word |
7 | 7278 flag = current_word(cap->oap, cap->count1, include, FALSE); |
7279 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7280 case 'W': // "aW" = a WORD |
7 | 7281 flag = current_word(cap->oap, cap->count1, include, TRUE); |
7282 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7283 case 'b': // "ab" = a braces block |
7 | 7284 case '(': |
7285 case ')': | |
7286 flag = current_block(cap->oap, cap->count1, include, '(', ')'); | |
7287 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7288 case 'B': // "aB" = a Brackets block |
7 | 7289 case '{': |
7290 case '}': | |
7291 flag = current_block(cap->oap, cap->count1, include, '{', '}'); | |
7292 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7293 case '[': // "a[" = a [] block |
7 | 7294 case ']': |
7295 flag = current_block(cap->oap, cap->count1, include, '[', ']'); | |
7296 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7297 case '<': // "a<" = a <> block |
7 | 7298 case '>': |
7299 flag = current_block(cap->oap, cap->count1, include, '<', '>'); | |
7300 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7301 case 't': // "at" = a tag block (xml and html) |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7302 // Do not adjust oap->end in do_pending_operator() |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7303 // otherwise there are different results for 'dit' |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7304 // (note leading whitespace in last line): |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7305 // 1) <b> 2) <b> |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7306 // foobar foobar |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7307 // </b> </b> |
6661 | 7308 cap->retval |= CA_NO_ADJ_OP_END; |
420 | 7309 flag = current_tagblock(cap->oap, cap->count1, include); |
7310 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7311 case 'p': // "ap" = a paragraph |
7 | 7312 flag = current_par(cap->oap, cap->count1, include, 'p'); |
7313 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7314 case 's': // "as" = a sentence |
7 | 7315 flag = current_sent(cap->oap, cap->count1, include); |
7316 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7317 case '"': // "a"" = a double quoted string |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7318 case '\'': // "a'" = a single quoted string |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7319 case '`': // "a`" = a backtick quoted string |
12 | 7320 flag = current_quote(cap->oap, cap->count1, include, |
7321 cap->nchar); | |
7322 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7323 #if 0 // TODO |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7324 case 'S': // "aS" = a section |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7325 case 'f': // "af" = a filename |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7326 case 'u': // "au" = a URL |
7 | 7327 #endif |
7328 default: | |
7329 flag = FAIL; | |
7330 break; | |
7331 } | |
7332 | |
7333 curbuf->b_p_mps = mps_save; | |
7334 if (flag == FAIL) | |
7335 clearopbeep(cap->oap); | |
7336 adjust_cursor_col(); | |
7337 curwin->w_set_curswant = TRUE; | |
7338 } | |
7339 #endif | |
7340 | |
7341 /* | |
7342 * "q" command: Start/stop recording. | |
7343 * "q:", "q/", "q?": edit command-line in command-line window. | |
7344 */ | |
7345 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7346 nv_record(cmdarg_T *cap) |
7 | 7347 { |
7348 if (cap->oap->op_type == OP_FORMAT) | |
7349 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7350 // "gqq" is the same as "gqgq": format line |
7 | 7351 cap->cmdchar = 'g'; |
7352 cap->nchar = 'q'; | |
7353 nv_operator(cap); | |
7354 } | |
7355 else if (!checkclearop(cap->oap)) | |
7356 { | |
7357 #ifdef FEAT_CMDWIN | |
7358 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') | |
7359 { | |
7360 stuffcharReadbuff(cap->nchar); | |
7361 stuffcharReadbuff(K_CMDWIN); | |
7362 } | |
7363 else | |
7364 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7365 // (stop) recording into a named register, unless executing a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7366 // register |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13876
diff
changeset
|
7367 if (reg_executing == 0 && do_record(cap->nchar) == FAIL) |
7 | 7368 clearopbeep(cap->oap); |
7369 } | |
7370 } | |
7371 | |
7372 /* | |
7373 * Handle the "@r" command. | |
7374 */ | |
7375 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7376 nv_at(cmdarg_T *cap) |
7 | 7377 { |
7378 if (checkclearop(cap->oap)) | |
7379 return; | |
7380 #ifdef FEAT_EVAL | |
7381 if (cap->nchar == '=') | |
7382 { | |
7383 if (get_expr_register() == NUL) | |
7384 return; | |
7385 } | |
7386 #endif | |
7387 while (cap->count1-- && !got_int) | |
7388 { | |
1034 | 7389 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL) |
7 | 7390 { |
7391 clearopbeep(cap->oap); | |
7392 break; | |
7393 } | |
7394 line_breakcheck(); | |
7395 } | |
7396 } | |
7397 | |
7398 /* | |
7399 * Handle the CTRL-U and CTRL-D commands. | |
7400 */ | |
7401 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7402 nv_halfpage(cmdarg_T *cap) |
7 | 7403 { |
7404 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1) | |
7405 || (cap->cmdchar == Ctrl_D | |
7406 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)) | |
7407 clearopbeep(cap->oap); | |
7408 else if (!checkclearop(cap->oap)) | |
7409 halfpage(cap->cmdchar == Ctrl_D, cap->count0); | |
7410 } | |
7411 | |
7412 /* | |
7413 * Handle "J" or "gJ" command. | |
7414 */ | |
7415 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7416 nv_join(cmdarg_T *cap) |
7 | 7417 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7418 if (VIsual_active) // join the visual lines |
7 | 7419 nv_operator(cap); |
5735 | 7420 else if (!checkclearop(cap->oap)) |
7 | 7421 { |
7422 if (cap->count0 <= 1) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7423 cap->count0 = 2; // default for join is two lines! |
7 | 7424 if (curwin->w_cursor.lnum + cap->count0 - 1 > |
7425 curbuf->b_ml.ml_line_count) | |
8445
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7426 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7427 // can't join when on the last line |
8445
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7428 if (cap->count0 <= 2) |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7429 { |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7430 clearopbeep(cap->oap); |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7431 return; |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7432 } |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7433 cap->count0 = curbuf->b_ml.ml_line_count |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7434 - curwin->w_cursor.lnum + 1; |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7435 } |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7436 |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7437 prep_redo(cap->oap->regname, cap->count0, |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7438 NUL, cap->cmdchar, NUL, NUL, cap->nchar); |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7439 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE); |
7 | 7440 } |
7441 } | |
7442 | |
7443 /* | |
7444 * "P", "gP", "p" and "gp" commands. | |
7445 */ | |
7446 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7447 nv_put(cmdarg_T *cap) |
7 | 7448 { |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7449 nv_put_opt(cap, FALSE); |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7450 } |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7451 |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7452 /* |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7453 * "P", "gP", "p" and "gp" commands. |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7454 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P". |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7455 */ |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7456 static void |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7457 nv_put_opt(cmdarg_T *cap, int fix_indent) |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7458 { |
7 | 7459 int regname = 0; |
7460 void *reg1 = NULL, *reg2 = NULL; | |
84 | 7461 int empty = FALSE; |
236 | 7462 int was_visual = FALSE; |
7 | 7463 int dir; |
7464 int flags = 0; | |
7465 | |
7466 if (cap->oap->op_type != OP_NOP) | |
7467 { | |
7468 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7469 // "dp" is ":diffput" |
7 | 7470 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p') |
7471 { | |
7472 clearop(cap->oap); | |
6314 | 7473 nv_diffgetput(TRUE, cap->opcount); |
7 | 7474 } |
7475 else | |
7476 #endif | |
7477 clearopbeep(cap->oap); | |
7478 } | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7479 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7480 else if (bt_prompt(curbuf) && !prompt_curpos_editable()) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7481 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7482 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7483 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7484 #endif |
7 | 7485 else |
7486 { | |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7487 if (fix_indent) |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7488 { |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7489 dir = (cap->cmdchar == ']' && cap->nchar == 'p') |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7490 ? FORWARD : BACKWARD; |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7491 flags |= PUT_FIXINDENT; |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7492 } |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7493 else |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7494 dir = (cap->cmdchar == 'P' |
24752
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
7495 || ((cap->cmdchar == 'g' || cap->cmdchar == 'z') |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
7496 && cap->nchar == 'P')) ? BACKWARD : FORWARD; |
7 | 7497 prep_redo_cmd(cap); |
7498 if (cap->cmdchar == 'g') | |
7499 flags |= PUT_CURSEND; | |
24752
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
7500 else if (cap->cmdchar == 'z') |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
7501 flags |= PUT_BLOCK_INNER; |
7 | 7502 |
7503 if (VIsual_active) | |
7504 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7505 // Putting in Visual mode: The put text replaces the selected |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7506 // text. First delete the selected text, then put the new text. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7507 // Need to save and restore the registers that the delete |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7508 // overwrites if the old contents is being put. |
236 | 7509 was_visual = TRUE; |
7 | 7510 regname = cap->oap->regname; |
5735 | 7511 #ifdef FEAT_CLIPBOARD |
7 | 7512 adjust_clip_reg(®name); |
5735 | 7513 #endif |
5682 | 7514 if (regname == 0 || regname == '"' |
4013 | 7515 || VIM_ISDIGIT(regname) || regname == '-' |
5735 | 7516 #ifdef FEAT_CLIPBOARD |
7 | 7517 || (clip_unnamed && (regname == '*' || regname == '+')) |
5735 | 7518 #endif |
7 | 7519 |
7520 ) | |
7521 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7522 // The delete is going to overwrite the register we want to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7523 // put, save it first. |
7 | 7524 reg1 = get_register(regname, TRUE); |
7525 } | |
7526 | |
17787
92e0996e1cb8
patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents:
17730
diff
changeset
|
7527 // Now delete the selected text. Avoid messages here. |
7 | 7528 cap->cmdchar = 'd'; |
7529 cap->nchar = NUL; | |
7530 cap->oap->regname = NUL; | |
17787
92e0996e1cb8
patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents:
17730
diff
changeset
|
7531 ++msg_silent; |
7 | 7532 nv_operator(cap); |
7533 do_pending_operator(cap, 0, FALSE); | |
84 | 7534 empty = (curbuf->b_ml.ml_flags & ML_EMPTY); |
17787
92e0996e1cb8
patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents:
17730
diff
changeset
|
7535 --msg_silent; |
7 | 7536 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7537 // delete PUT_LINE_BACKWARD; |
7 | 7538 cap->oap->regname = regname; |
7539 | |
7540 if (reg1 != NULL) | |
7541 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7542 // Delete probably changed the register we want to put, save |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7543 // it first. Then put back what was there before the delete. |
7 | 7544 reg2 = get_register(regname, FALSE); |
7545 put_register(regname, reg1); | |
7546 } | |
7547 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7548 // When deleted a linewise Visual area, put the register as |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7549 // lines to avoid it joined with the next line. When deletion was |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7550 // characterwise, split a line when putting lines. |
7 | 7551 if (VIsual_mode == 'V') |
7552 flags |= PUT_LINE; | |
7553 else if (VIsual_mode == 'v') | |
7554 flags |= PUT_LINE_SPLIT; | |
7555 if (VIsual_mode == Ctrl_V && dir == FORWARD) | |
7556 flags |= PUT_LINE_FORWARD; | |
7557 dir = BACKWARD; | |
7558 if ((VIsual_mode != 'V' | |
7559 && curwin->w_cursor.col < curbuf->b_op_start.col) | |
7560 || (VIsual_mode == 'V' | |
7561 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum)) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7562 // cursor is at the end of the line or end of file, put |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7563 // forward. |
7 | 7564 dir = FORWARD; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7565 // May have been reset in do_put(). |
5365 | 7566 VIsual_active = TRUE; |
7 | 7567 } |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
7568 do_put(cap->oap->regname, NULL, dir, cap->count1, flags); |
7 | 7569 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7570 // If a register was saved, put it back now. |
7 | 7571 if (reg2 != NULL) |
7572 put_register(regname, reg2); | |
236 | 7573 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7574 // What to reselect with "gv"? Selecting the just put text seems to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7575 // be the most useful, since the original text was removed. |
236 | 7576 if (was_visual) |
7577 { | |
690 | 7578 curbuf->b_visual.vi_start = curbuf->b_op_start; |
7579 curbuf->b_visual.vi_end = curbuf->b_op_end; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7580 // need to adjust cursor position |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
7581 if (*p_sel == 'e') |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
7582 inc(&curbuf->b_visual.vi_end); |
236 | 7583 } |
7584 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7585 // When all lines were selected and deleted do_put() leaves an empty |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7586 // line that needs to be deleted now. |
84 | 7587 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL) |
817 | 7588 { |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
7589 ml_delete_flags(curbuf->b_ml.ml_line_count, ML_DEL_MESSAGE); |
17787
92e0996e1cb8
patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents:
17730
diff
changeset
|
7590 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1); |
817 | 7591 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7592 // If the cursor was in that line, move it to the end of the last |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7593 // line. |
817 | 7594 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
7595 { | |
7596 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
7597 coladvance((colnr_T)MAXCOL); | |
7598 } | |
7599 } | |
7 | 7600 auto_format(FALSE, TRUE); |
7601 } | |
7602 } | |
7603 | |
7604 /* | |
7605 * "o" and "O" commands. | |
7606 */ | |
7607 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7608 nv_open(cmdarg_T *cap) |
7 | 7609 { |
7610 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7611 // "do" is ":diffget" |
7 | 7612 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o') |
7613 { | |
7614 clearop(cap->oap); | |
6314 | 7615 nv_diffgetput(FALSE, cap->opcount); |
7 | 7616 } |
7617 else | |
7618 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7619 if (VIsual_active) // switch start and end of visual |
7 | 7620 v_swap_corners(cap->cmdchar); |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7621 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7622 else if (bt_prompt(curbuf)) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7623 clearopbeep(cap->oap); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
7624 #endif |
7 | 7625 else |
7626 n_opencmd(cap); | |
7627 } | |
7628 | |
7629 #ifdef FEAT_NETBEANS_INTG | |
7630 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7631 nv_nbcmd(cmdarg_T *cap) |
7 | 7632 { |
7633 netbeans_keycommand(cap->nchar); | |
7634 } | |
7635 #endif | |
7636 | |
7637 #ifdef FEAT_DND | |
7638 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7639 nv_drop(cmdarg_T *cap UNUSED) |
7 | 7640 { |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
7641 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND); |
7 | 7642 } |
7643 #endif | |
203 | 7644 |
7645 /* | |
7646 * Trigger CursorHold event. | |
7647 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the | |
7648 * input buffer. "did_cursorhold" is set to avoid retriggering. | |
7649 */ | |
7650 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7651 nv_cursorhold(cmdarg_T *cap) |
203 | 7652 { |
7653 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf); | |
7654 did_cursorhold = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7655 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now |
226 | 7656 } |