Mercurial > vim
annotate src/normal.c @ 26349:2ee2e3e3097a
Added tag v8.2.3705 for changeset bf1a7ce3f14a05abdc334000dbb1aa8ffb12840f
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 30 Nov 2021 19:30:05 +0100 |
parents | a74c8936794a |
children | 2fc13817b100 |
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 | |
611 #ifdef FEAT_CMDL_INFO | |
612 need_flushbuf = add_to_showcmd(c); | |
613 #endif | |
614 | |
615 getcount: | |
616 if (!(VIsual_active && VIsual_select)) | |
617 { | |
618 /* | |
619 * Handle a count before a command and compute ca.count0. | |
620 * Note that '0' is a command and not the start of a count, but it's | |
621 * part of a count after other digits. | |
622 */ | |
623 while ( (c >= '1' && c <= '9') | |
624 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0'))) | |
625 { | |
626 if (c == K_DEL || c == K_KDEL) | |
627 { | |
628 ca.count0 /= 10; | |
629 #ifdef FEAT_CMDL_INFO | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
630 del_from_showcmd(4); // delete the digit and ~@% |
7 | 631 #endif |
632 } | |
26258
a74c8936794a
patch 8.2.3660: overflow check uses wrong number
Bram Moolenaar <Bram@vim.org>
parents:
26256
diff
changeset
|
633 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
|
634 { |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
635 ca.count0 = 999999999L; |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
636 } |
7 | 637 else |
26256
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
638 { |
7 | 639 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
|
640 } |
1425 | 641 #ifdef FEAT_EVAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
642 // 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
|
643 // 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
|
644 // right after the count. Do set it for redo. |
5649 | 645 if (toplevel && readbuf1_empty()) |
2667 | 646 set_vcount_ca(&ca, &set_prevcount); |
1425 | 647 #endif |
7 | 648 if (ctrl_w) |
649 { | |
650 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
651 ++allow_keys; // no mapping for nchar, but keys |
7 | 652 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
653 ++no_zero_mapping; // don't map zero here |
1389 | 654 c = plain_vgetc(); |
7 | 655 LANGMAP_ADJUST(c, TRUE); |
656 --no_zero_mapping; | |
657 if (ctrl_w) | |
658 { | |
659 --no_mapping; | |
660 --allow_keys; | |
661 } | |
662 #ifdef FEAT_CMDL_INFO | |
663 need_flushbuf |= add_to_showcmd(c); | |
664 #endif | |
665 } | |
666 | |
667 /* | |
668 * If we got CTRL-W there may be a/another count | |
669 */ | |
670 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP) | |
671 { | |
672 ctrl_w = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
673 ca.opcount = ca.count0; // remember first count |
7 | 674 ca.count0 = 0; |
675 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
676 ++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
|
677 c = plain_vgetc(); // get next character |
7 | 678 LANGMAP_ADJUST(c, TRUE); |
679 --no_mapping; | |
680 --allow_keys; | |
681 #ifdef FEAT_CMDL_INFO | |
682 need_flushbuf |= add_to_showcmd(c); | |
683 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
684 goto getcount; // jump back |
7 | 685 } |
686 } | |
687 | |
1692 | 688 if (c == K_CURSORHOLD) |
689 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
690 // 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
|
691 // the same when coming back here after handling K_CURSORHOLD. |
1692 | 692 oap->prev_opcount = ca.opcount; |
693 oap->prev_count0 = ca.count0; | |
694 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
695 else if (ca.opcount != 0) |
1692 | 696 { |
697 /* | |
698 * If we're in the middle of an operator (including after entering a | |
699 * yank buffer with '"') AND we had a count before the operator, then | |
700 * that count overrides the current value of ca.count0. | |
701 * What this means effectively, is that commands like "3dw" get turned | |
702 * into "d3w" which makes things fall into place pretty neatly. | |
703 * If you give a count before AND after the operator, they are | |
704 * multiplied. | |
705 */ | |
7 | 706 if (ca.count0) |
26256
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
707 { |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
708 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
|
709 ca.count0 = 999999999L; |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
710 else |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
711 ca.count0 *= ca.opcount; |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26226
diff
changeset
|
712 } |
7 | 713 else |
714 ca.count0 = ca.opcount; | |
715 } | |
716 | |
717 /* | |
718 * Always remember the count. It will be set to zero (on the next call, | |
719 * above) when there is no pending operator. | |
720 * When called from main(), save the count for use by the "count" built-in | |
721 * variable. | |
722 */ | |
723 ca.opcount = ca.count0; | |
724 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0); | |
725 | |
726 #ifdef FEAT_EVAL | |
727 /* | |
728 * Only set v:count when called from main() and not a stuffed command. | |
5649 | 729 * Do set it for redo. |
7 | 730 */ |
5649 | 731 if (toplevel && readbuf1_empty()) |
1751 | 732 set_vcount(ca.count0, ca.count1, set_prevcount); |
7 | 733 #endif |
734 | |
735 /* | |
736 * Find the command character in the table of commands. | |
737 * For CTRL-W we already got nchar when looking for a count. | |
738 */ | |
739 if (ctrl_w) | |
740 { | |
741 ca.nchar = c; | |
742 ca.cmdchar = Ctrl_W; | |
743 } | |
744 else | |
745 ca.cmdchar = c; | |
746 idx = find_command(ca.cmdchar); | |
747 if (idx < 0) | |
748 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
749 // Not a known command: beep. |
7 | 750 clearopbeep(oap); |
751 goto normal_end; | |
752 } | |
631 | 753 |
633 | 754 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW)) |
631 | 755 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
756 // This command is not allowed while editing a cmdline: beep. |
7 | 757 clearopbeep(oap); |
633 | 758 text_locked_msg(); |
7 | 759 goto normal_end; |
760 } | |
819 | 761 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked()) |
762 goto normal_end; | |
7 | 763 |
764 /* | |
765 * In Visual/Select mode, a few keys are handled in a special way. | |
766 */ | |
767 if (VIsual_active) | |
768 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
769 // when 'keymodel' contains "stopsel" may stop Select/Visual mode |
7 | 770 if (km_stopsel |
771 && (nv_cmds[idx].cmd_flags & NV_STS) | |
772 && !(mod_mask & MOD_MASK_SHIFT)) | |
773 { | |
774 end_visual_mode(); | |
775 redraw_curbuf_later(INVERTED); | |
776 } | |
777 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
778 // Keys that work different when 'keymodel' contains "startsel" |
7 | 779 if (km_startsel) |
780 { | |
781 if (nv_cmds[idx].cmd_flags & NV_SS) | |
782 { | |
783 unshift_special(&ca); | |
784 idx = find_command(ca.cmdchar); | |
840 | 785 if (idx < 0) |
786 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
787 // Just in case |
840 | 788 clearopbeep(oap); |
789 goto normal_end; | |
790 } | |
7 | 791 } |
792 else if ((nv_cmds[idx].cmd_flags & NV_SSS) | |
793 && (mod_mask & MOD_MASK_SHIFT)) | |
794 mod_mask &= ~MOD_MASK_SHIFT; | |
795 } | |
796 } | |
797 | |
798 #ifdef FEAT_RIGHTLEFT | |
799 if (curwin->w_p_rl && KeyTyped && !KeyStuffed | |
800 && (nv_cmds[idx].cmd_flags & NV_RL)) | |
801 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
802 // 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
|
803 // 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
|
804 // to "dl". |
7 | 805 switch (ca.cmdchar) |
806 { | |
807 case 'l': ca.cmdchar = 'h'; break; | |
808 case K_RIGHT: ca.cmdchar = K_LEFT; break; | |
809 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break; | |
810 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break; | |
811 case 'h': ca.cmdchar = 'l'; break; | |
812 case K_LEFT: ca.cmdchar = K_RIGHT; break; | |
813 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break; | |
814 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break; | |
815 case '>': ca.cmdchar = '<'; break; | |
816 case '<': ca.cmdchar = '>'; break; | |
817 } | |
818 idx = find_command(ca.cmdchar); | |
819 } | |
820 #endif | |
821 | |
822 /* | |
823 * Get an additional character if we need one. | |
824 */ | |
825 if ((nv_cmds[idx].cmd_flags & NV_NCH) | |
826 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP | |
827 && oap->op_type == OP_NOP) | |
828 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW | |
829 || (ca.cmdchar == 'q' | |
830 && 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
|
831 && 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
|
832 && reg_executing == 0) |
7 | 833 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i') |
5735 | 834 && (oap->op_type != OP_NOP || VIsual_active)))) |
7 | 835 { |
836 int *cp; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
837 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
|
838 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
|
839 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
|
840 int lang; // getting a text character |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
841 #ifdef HAVE_INPUT_METHOD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
842 int save_smd; // saved value of p_smd |
7 | 843 #endif |
844 | |
845 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
846 ++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
|
847 // 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
|
848 // it, e.g., nv_replace(), nv_csearch(). |
1343 | 849 did_cursorhold = TRUE; |
7 | 850 if (ca.cmdchar == 'g') |
851 { | |
852 /* | |
853 * For 'g' get the next character now, so that we can check for | |
854 * "gr", "g'" and "g`". | |
855 */ | |
1389 | 856 ca.nchar = plain_vgetc(); |
7 | 857 LANGMAP_ADJUST(ca.nchar, TRUE); |
858 #ifdef FEAT_CMDL_INFO | |
859 need_flushbuf |= add_to_showcmd(ca.nchar); | |
860 #endif | |
861 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`' | |
5523 | 862 || ca.nchar == Ctrl_BSL) |
7 | 863 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
864 cp = &ca.extra_char; // need to get a third character |
7 | 865 if (ca.nchar != 'r') |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
866 lit = TRUE; // get it literally |
7 | 867 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
868 repl = TRUE; // get it in replace mode |
7 | 869 } |
870 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
871 cp = NULL; // no third character needed |
7 | 872 } |
873 else | |
874 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
875 if (ca.cmdchar == 'r') // get it in replace mode |
7 | 876 repl = TRUE; |
877 cp = &ca.nchar; | |
878 } | |
879 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG)); | |
880 | |
881 /* | |
882 * Get a second or third character. | |
883 */ | |
884 if (cp != NULL) | |
885 { | |
886 if (repl) | |
887 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
888 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
|
889 #ifdef CURSOR_SHAPE |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
890 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
|
891 #endif |
7 | 892 } |
893 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP) | |
894 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
895 // Allow mappings defined with ":lmap". |
7 | 896 --no_mapping; |
897 --allow_keys; | |
898 if (repl) | |
899 State = LREPLACE; | |
900 else | |
901 State = LANGMAP; | |
902 langmap_active = TRUE; | |
903 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
904 #ifdef HAVE_INPUT_METHOD |
7 | 905 save_smd = p_smd; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
906 p_smd = FALSE; // Don't let the IM code show the mode here |
7 | 907 if (lang && curbuf->b_p_iminsert == B_IMODE_IM) |
908 im_set_active(TRUE); | |
909 #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
|
910 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
|
911 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
912 #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
|
913 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
|
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 // 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
|
916 // 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
|
917 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
|
918 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
|
919 } |
7 | 920 |
1389 | 921 *cp = plain_vgetc(); |
7 | 922 |
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
|
923 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
|
924 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22000
diff
changeset
|
925 #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
|
926 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
|
927 #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
|
928 // 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
|
929 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
|
930 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
|
931 } |
afa3080a96ae
patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is used
Bram Moolenaar <Bram@vim.org>
parents:
21941
diff
changeset
|
932 |
7 | 933 if (langmap_active) |
934 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
935 // Undo the decrement done above |
7 | 936 ++no_mapping; |
937 ++allow_keys; | |
938 State = NORMAL_BUSY; | |
939 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13369
diff
changeset
|
940 #ifdef HAVE_INPUT_METHOD |
7 | 941 if (lang) |
942 { | |
943 if (curbuf->b_p_iminsert != B_IMODE_LMAP) | |
944 im_save_status(&curbuf->b_p_iminsert); | |
945 im_set_active(FALSE); | |
946 } | |
947 p_smd = save_smd; | |
948 #endif | |
949 State = NORMAL_BUSY; | |
950 #ifdef FEAT_CMDL_INFO | |
951 need_flushbuf |= add_to_showcmd(*cp); | |
952 #endif | |
953 | |
954 if (!lit) | |
955 { | |
956 #ifdef FEAT_DIGRAPHS | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
957 // Typing CTRL-K gets a digraph. |
7 | 958 if (*cp == Ctrl_K |
959 && ((nv_cmds[idx].cmd_flags & NV_LANG) | |
960 || cp == &ca.extra_char) | |
961 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL) | |
962 { | |
963 c = get_digraph(FALSE); | |
964 if (c > 0) | |
965 { | |
966 *cp = c; | |
967 # ifdef FEAT_CMDL_INFO | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
968 // Guessing how to update showcmd here... |
7 | 969 del_from_showcmd(3); |
970 need_flushbuf |= add_to_showcmd(*cp); | |
971 # endif | |
972 } | |
973 } | |
974 #endif | |
975 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
976 // adjust chars > 127, except after "tTfFr" commands |
7 | 977 LANGMAP_ADJUST(*cp, !lang); |
978 #ifdef FEAT_RIGHTLEFT | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
979 // adjust Hebrew mapped char |
7 | 980 if (p_hkmap && lang && KeyTyped) |
981 *cp = hkmap(*cp); | |
982 #endif | |
983 } | |
984 | |
985 /* | |
986 * When the next character is CTRL-\ a following CTRL-N means the | |
987 * command is aborted and we go to Normal mode. | |
988 */ | |
989 if (cp == &ca.extra_char | |
990 && ca.nchar == Ctrl_BSL | |
991 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G)) | |
992 { | |
993 ca.cmdchar = Ctrl_BSL; | |
994 ca.nchar = ca.extra_char; | |
995 idx = find_command(ca.cmdchar); | |
996 } | |
3908 | 997 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g') |
3896 | 998 ca.oap->op_type = get_op_type(*cp, NUL); |
7 | 999 else if (*cp == Ctrl_BSL) |
1000 { | |
1001 long towait = (p_ttm >= 0 ? p_ttm : p_tm); | |
1002 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1003 // 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
|
1004 // something different from CTRL-N. Can't be avoided. |
7 | 1005 while ((c = vpeekc()) <= 0 && towait > 0L) |
1006 { | |
23648
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
1007 do_sleep(towait > 50L ? 50L : towait, FALSE); |
7 | 1008 towait -= 50L; |
1009 } | |
1010 if (c > 0) | |
1011 { | |
1389 | 1012 c = plain_vgetc(); |
7 | 1013 if (c != Ctrl_N && c != Ctrl_G) |
1014 vungetc(c); | |
1015 else | |
1016 { | |
1017 ca.cmdchar = Ctrl_BSL; | |
1018 ca.nchar = c; | |
1019 idx = find_command(ca.cmdchar); | |
1020 } | |
1021 } | |
1022 } | |
1023 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1024 // 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
|
1025 // 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
|
1026 // 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
|
1027 // 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
|
1028 // mapping. |
6071 | 1029 --no_mapping; |
7 | 1030 while (enc_utf8 && lang && (c = vpeekc()) > 0 |
1031 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1)) | |
1032 { | |
1389 | 1033 c = plain_vgetc(); |
7 | 1034 if (!utf_iscomposing(c)) |
1035 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1036 vungetc(c); // it wasn't, put it back |
7 | 1037 break; |
1038 } | |
1039 else if (ca.ncharC1 == 0) | |
1040 ca.ncharC1 = c; | |
1041 else | |
1042 ca.ncharC2 = c; | |
1043 } | |
6071 | 1044 ++no_mapping; |
7 | 1045 } |
1046 --no_mapping; | |
1047 --allow_keys; | |
1048 } | |
1049 | |
1050 #ifdef FEAT_CMDL_INFO | |
1051 /* | |
1052 * Flush the showcmd characters onto the screen so we can see them while | |
1053 * the command is being executed. Only do this when the shown command was | |
1054 * actually displayed, otherwise this will slow down a lot when executing | |
1055 * mappings. | |
1056 */ | |
1057 if (need_flushbuf) | |
1058 out_flush(); | |
1059 #endif | |
1727 | 1060 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
|
1061 { |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1062 if (ex_normal_busy) |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1063 did_cursorhold = save_did_cursorhold; |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1064 else |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1065 did_cursorhold = FALSE; |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
1066 } |
7 | 1067 |
1068 State = NORMAL; | |
1069 | |
1070 if (ca.nchar == ESC) | |
1071 { | |
1072 clearop(oap); | |
1073 if (restart_edit == 0 && goto_im()) | |
1074 restart_edit = 'a'; | |
1075 goto normal_end; | |
1076 } | |
1077 | |
24 | 1078 if (ca.cmdchar != K_IGNORE) |
1079 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1080 msg_didout = FALSE; // don't scroll screen up for normal command |
24 | 1081 msg_col = 0; |
1082 } | |
7 | 1083 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1084 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
|
1085 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1086 // 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
|
1087 // mode. |
7 | 1088 if (!VIsual_active && km_startsel) |
1089 { | |
1090 if (nv_cmds[idx].cmd_flags & NV_SS) | |
1091 { | |
1092 start_selection(); | |
1093 unshift_special(&ca); | |
1094 idx = find_command(ca.cmdchar); | |
1095 } | |
1096 else if ((nv_cmds[idx].cmd_flags & NV_SSS) | |
1097 && (mod_mask & MOD_MASK_SHIFT)) | |
1098 { | |
1099 start_selection(); | |
1100 mod_mask &= ~MOD_MASK_SHIFT; | |
1101 } | |
1102 } | |
1103 | |
1104 /* | |
1105 * Execute the command! | |
1106 * Call the command function found in the commands table. | |
1107 */ | |
1108 ca.arg = nv_cmds[idx].cmd_arg; | |
1109 (nv_cmds[idx].cmd_func)(&ca); | |
1110 | |
1111 /* | |
1112 * If we didn't start or finish an operator, reset oap->regname, unless we | |
1113 * need it later. | |
1114 */ | |
1115 if (!finish_op | |
1116 && !oap->op_type | |
1117 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG))) | |
1118 { | |
1119 clearop(oap); | |
1120 #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
|
1121 reset_reg_var(); |
7 | 1122 #endif |
1123 } | |
1124 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1125 // 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
|
1126 // character or "z333<cr>". |
36 | 1127 if (old_mapped_len > 0) |
1128 old_mapped_len = typebuf_maplen(); | |
1129 | |
7 | 1130 /* |
24586
b7f58be68c02
patch 8.2.2832: operator cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents:
24341
diff
changeset
|
1131 * 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
|
1132 * K_MOUSEMOVE. |
7 | 1133 */ |
24586
b7f58be68c02
patch 8.2.2832: operator cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents:
24341
diff
changeset
|
1134 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
|
1135 do_pending_operator(&ca, old_col, FALSE); |
7 | 1136 |
1137 /* | |
1138 * Wait for a moment when a message is displayed that will be overwritten | |
1139 * by the mode message. | |
1140 * In Visual mode and with "^O" in Insert mode, a short message will be | |
1141 * overwritten by the mode message. Wait a bit, until a key is hit. | |
1142 * In Visual mode, it's more important to keep the Visual area updated | |
1143 * than keeping a message (e.g. from a /pat search). | |
1144 * Only do this if the command was typed, not from a mapping. | |
1145 * Don't wait when emsg_silent is non-zero. | |
1146 * Also wait a bit after an error message, e.g. for "^O:". | |
1147 * Don't redraw the screen, it would remove the message. | |
1148 */ | |
1149 if ( ((p_smd | |
641 | 1150 && msg_silent == 0 |
7 | 1151 && (restart_edit != 0 |
1152 || (VIsual_active | |
1153 && old_pos.lnum == curwin->w_cursor.lnum | |
1154 && old_pos.col == curwin->w_cursor.col) | |
1155 ) | |
1156 && (clear_cmdline | |
1157 || redraw_cmdline) | |
1158 && (msg_didout || (msg_didany && msg_scroll)) | |
1159 && !msg_nowait | |
1160 && KeyTyped) | |
1161 || (restart_edit != 0 | |
1162 && !VIsual_active | |
1163 && (msg_scroll | |
1164 || emsg_on_display))) | |
1165 && oap->regname == 0 | |
1166 && !(ca.retval & CA_COMMAND_BUSY) | |
1167 && stuff_empty() | |
1168 && typebuf_typed() | |
1169 && 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
|
1170 && !in_assert_fails |
7 | 1171 && !did_wait_return |
1172 && oap->op_type == OP_NOP) | |
1173 { | |
1174 int save_State = State; | |
1175 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1176 // Draw the cursor with the right shape here |
7 | 1177 if (restart_edit != 0) |
1178 State = INSERT; | |
1179 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1180 // 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
|
1181 // delay |
7 | 1182 if (must_redraw && keep_msg != NULL && !emsg_on_display) |
1183 { | |
1184 char_u *kmsg; | |
1185 | |
1186 kmsg = keep_msg; | |
1187 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
|
1188 // 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
|
1189 // 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
|
1190 setcursor(); |
7 | 1191 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
|
1192 // now reset it, otherwise it's put in the history again |
7 | 1193 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
|
1194 |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1195 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
|
1196 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
|
1197 { |
af0b4ffab794
patch 8.1.2018: using freed memory when out of memory and displaying message
Bram Moolenaar <Bram@vim.org>
parents:
17984
diff
changeset
|
1198 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
|
1199 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
|
1200 } |
7 | 1201 } |
1202 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
|
1203 #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
|
1204 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
|
1205 #endif |
7 | 1206 cursor_on(); |
1207 out_flush(); | |
1208 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
|
1209 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
|
1210 ui_delay(3003L, FALSE); // wait up to three seconds |
7 | 1211 State = save_State; |
1212 | |
1213 msg_scroll = FALSE; | |
1214 emsg_on_display = FALSE; | |
1215 } | |
1216 | |
1217 /* | |
1218 * Finish up after executing a Normal mode command. | |
1219 */ | |
1220 normal_end: | |
1221 | |
1222 msg_nowait = FALSE; | |
1223 | |
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
|
1224 #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
|
1225 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
|
1226 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
|
1227 #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
|
1228 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1229 // Reset finish_op, in case it was set |
7 | 1230 #ifdef CURSOR_SHAPE |
1231 c = finish_op; | |
1232 #endif | |
1233 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
|
1234 trigger_modechanged(); |
7 | 1235 #ifdef CURSOR_SHAPE |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1236 // 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
|
1237 // mode or did a replace command. |
7 | 1238 if (c || ca.cmdchar == 'r') |
1239 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1240 ui_cursor_shape(); // may show different cursor shape |
7 | 1241 # ifdef FEAT_MOUSESHAPE |
1242 update_mouseshape(-1); | |
1243 # endif | |
1244 } | |
1245 #endif | |
1246 | |
1247 #ifdef FEAT_CMDL_INFO | |
1692 | 1248 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
|
1249 && ca.cmdchar != K_CURSORHOLD) |
7 | 1250 clear_showcmd(); |
1251 #endif | |
1252 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1253 checkpcmark(); // check if we moved since setting pcmark |
7 | 1254 vim_free(ca.searchbuf); |
1255 | |
1256 if (has_mbyte) | |
1257 mb_adjust_cursor(); | |
1258 | |
1259 if (curwin->w_p_scb && toplevel) | |
1260 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1261 validate_cursor(); // may need to update w_leftcol |
7 | 1262 do_check_scrollbind(TRUE); |
1263 } | |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1264 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1265 if (curwin->w_p_crb && toplevel) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1266 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1267 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
|
1268 do_check_cursorbind(); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1269 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1270 |
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
|
1271 #ifdef FEAT_TERMINAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1272 // 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
|
1273 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
|
1274 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
|
1275 #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
|
1276 |
7 | 1277 /* |
1278 * May restart edit(), if we got here with CTRL-O in Insert mode (but not | |
1279 * if still inside a mapping that started in Visual mode). | |
1280 * May switch from Visual to Select mode after CTRL-O command. | |
1281 */ | |
1282 if ( oap->op_type == OP_NOP | |
1283 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0) | |
1284 || restart_VIsual_select == 1) | |
1285 && !(ca.retval & CA_COMMAND_BUSY) | |
1286 && stuff_empty() | |
1287 && oap->regname == 0) | |
1288 { | |
1289 if (restart_VIsual_select == 1) | |
1290 { | |
1291 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
|
1292 trigger_modechanged(); |
7 | 1293 showmode(); |
1294 restart_VIsual_select = 0; | |
1295 } | |
5735 | 1296 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0) |
7 | 1297 (void)edit(restart_edit, FALSE, 1L); |
1298 } | |
1299 | |
1300 if (restart_VIsual_select == 2) | |
1301 restart_VIsual_select = 1; | |
1302 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1303 // Save count before an operator for next time. |
7 | 1304 opcount = ca.opcount; |
1305 } | |
1306 | |
2667 | 1307 #ifdef FEAT_EVAL |
1308 /* | |
1309 * Set v:count and v:count1 according to "cap". | |
1310 * Set v:prevcount only when "set_prevcount" is TRUE. | |
1311 */ | |
1312 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1313 set_vcount_ca(cmdarg_T *cap, int *set_prevcount) |
2667 | 1314 { |
1315 long count = cap->count0; | |
1316 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1317 // multiply with cap->opcount the same way as above |
2667 | 1318 if (cap->opcount != 0) |
1319 count = cap->opcount * (count == 0 ? 1 : count); | |
1320 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
|
1321 *set_prevcount = FALSE; // only set v:prevcount once |
2667 | 1322 } |
1323 #endif | |
1324 | |
7 | 1325 /* |
19681
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1326 * Check if highlighting for Visual mode is possible, give a warning message |
7 | 1327 * if not. |
1328 */ | |
1329 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1330 check_visual_highlight(void) |
7 | 1331 { |
1332 static int did_check = FALSE; | |
1333 | |
1334 if (full_screen) | |
1335 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1336 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
|
1337 msg(_("Warning: terminal cannot highlight")); |
7 | 1338 did_check = TRUE; |
1339 } | |
1340 } | |
1341 | |
23021
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1342 #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
|
1343 /* |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1344 * 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
|
1345 */ |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1346 static void |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1347 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
|
1348 { |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1349 oparg_T oa; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1350 yankreg_T *reg; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1351 |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1352 clear_oparg(&oa); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1353 oa.regname = regname; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1354 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
|
1355 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
|
1356 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
|
1357 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
|
1358 free_register(reg); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1359 } |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1360 #endif |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1361 |
7 | 1362 /* |
638 | 1363 * End Visual mode. |
24788
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1364 * 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
|
1365 * from do_pending_operator(). |
7 | 1366 */ |
1367 void | |
24788
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1368 end_visual_mode() |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1369 { |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1370 end_visual_mode_keep_button(); |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1371 reset_held_button(); |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1372 } |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1373 |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1374 void |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1375 end_visual_mode_keep_button() |
7 | 1376 { |
1377 #ifdef FEAT_CLIPBOARD | |
1378 /* | |
1379 * If we are using the clipboard, then remember what was selected in case | |
1380 * we need to paste it somewhere while we still own the selection. | |
1381 * Only do this when the clipboard is already owned. Don't want to grab | |
1382 * the selection when hitting ESC. | |
1383 */ | |
1384 if (clip_star.available && clip_star.owned) | |
1385 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
|
1386 |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1387 # 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
|
1388 // 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
|
1389 // 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
|
1390 if (has_textyankpost()) |
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 (clip_isautosel_star()) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1393 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
|
1394 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
|
1395 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
|
1396 } |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1397 # endif |
7 | 1398 #endif |
1399 | |
1400 VIsual_active = FALSE; | |
1401 setmouse(); | |
1402 mouse_dragging = 0; | |
1403 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1404 // Save the current VIsual area for '< and '> marks, and "gv" |
690 | 1405 curbuf->b_visual.vi_mode = VIsual_mode; |
1406 curbuf->b_visual.vi_start = VIsual; | |
1407 curbuf->b_visual.vi_end = curwin->w_cursor; | |
1408 curbuf->b_visual.vi_curswant = curwin->w_curswant; | |
7 | 1409 #ifdef FEAT_EVAL |
1410 curbuf->b_visual_mode_eval = VIsual_mode; | |
1411 #endif | |
1412 if (!virtual_active()) | |
1413 curwin->w_cursor.coladd = 0; | |
6979 | 1414 may_clear_cmdline(); |
7 | 1415 |
844 | 1416 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
|
1417 trigger_modechanged(); |
7 | 1418 } |
1419 | |
1420 /* | |
1421 * Reset VIsual_active and VIsual_reselect. | |
1422 */ | |
1423 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1424 reset_VIsual_and_resel(void) |
7 | 1425 { |
1426 if (VIsual_active) | |
1427 { | |
1428 end_visual_mode(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1429 redraw_curbuf_later(INVERTED); // delete the inversion later |
7 | 1430 } |
1431 VIsual_reselect = FALSE; | |
1432 } | |
1433 | |
1434 /* | |
1435 * Reset VIsual_active and VIsual_reselect if it's set. | |
1436 */ | |
1437 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1438 reset_VIsual(void) |
7 | 1439 { |
1440 if (VIsual_active) | |
1441 { | |
1442 end_visual_mode(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1443 redraw_curbuf_later(INVERTED); // delete the inversion later |
7 | 1444 VIsual_reselect = FALSE; |
1445 } | |
1446 } | |
1447 | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1448 void |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1449 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
|
1450 { |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1451 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
|
1452 { |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1453 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
|
1454 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
|
1455 } |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1456 } |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1457 |
7 | 1458 /* |
1459 * Check for a balloon-eval special item to include when searching for an | |
1460 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid! | |
1461 * Returns TRUE if the character at "*ptr" should be included. | |
1462 * "dir" is FORWARD or BACKWARD, the direction of searching. | |
1463 * "*colp" is in/decremented if "ptr[-dir]" should also be included. | |
1464 * "bnp" points to a counter for square brackets. | |
1465 */ | |
1466 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1467 find_is_eval_item( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1468 char_u *ptr, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1469 int *colp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1470 int *bnp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1471 int dir) |
7 | 1472 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1473 // Accept everything inside []. |
7 | 1474 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD)) |
1475 ++*bnp; | |
1476 if (*bnp > 0) | |
1477 { | |
1478 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD)) | |
1479 --*bnp; | |
1480 return TRUE; | |
1481 } | |
1482 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1483 // skip over "s.var" |
7 | 1484 if (*ptr == '.') |
1485 return TRUE; | |
1486 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1487 // two-character item: s->var |
7 | 1488 if (ptr[dir == BACKWARD ? 0 : 1] == '>' |
1489 && ptr[dir == BACKWARD ? -1 : 0] == '-') | |
1490 { | |
1491 *colp += dir; | |
1492 return TRUE; | |
1493 } | |
1494 return FALSE; | |
1495 } | |
1496 | |
1497 /* | |
1498 * Find the identifier under or to the right of the cursor. | |
1499 * "find_type" can have one of three values: | |
1500 * 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
|
1501 * 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
|
1502 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred. |
184 | 1503 * FIND_EVAL: find text useful for C program debugging |
7 | 1504 * |
1505 * 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
|
1506 * 1. Search forward for the start of an identifier/text. Doesn't move if |
7 | 1507 * 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
|
1508 * 2. Search backward for the start of this identifier/text. |
7 | 1509 * This doesn't match the real Vi but I like it a little better and it |
1510 * 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
|
1511 * 3. Search forward to the end of this identifier/text. |
7 | 1512 * When FIND_IDENT isn't defined, we backup until a blank. |
1513 * | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1514 * 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
|
1515 * 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
|
1516 * points into the current buffer line and is not always NUL terminated. |
7 | 1517 */ |
1518 int | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1519 find_ident_under_cursor(char_u **text, int find_type) |
7 | 1520 { |
1521 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
|
1522 curwin->w_cursor.col, text, NULL, find_type); |
7 | 1523 } |
1524 | |
1525 /* | |
1526 * Like find_ident_under_cursor(), but for any window and any position. | |
1527 * However: Uses 'iskeyword' from the current window!. | |
1528 */ | |
1529 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1530 find_ident_at_pos( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1531 win_T *wp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1532 linenr_T lnum, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1533 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
|
1534 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
|
1535 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
|
1536 int find_type) |
7 | 1537 { |
1538 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
|
1539 int col = 0; // init to shut up GCC |
7 | 1540 int i; |
1541 int this_class = 0; | |
1542 int prev_class; | |
1543 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
|
1544 int bn = 0; // bracket nesting |
7 | 1545 |
1546 /* | |
1547 * 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
|
1548 * if i == 1: try to find any non-white text |
7 | 1549 */ |
1550 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE); | |
1551 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i) | |
1552 { | |
1553 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1554 * 1. skip to start of identifier/text |
7 | 1555 */ |
1556 col = startcol; | |
1557 if (has_mbyte) | |
1558 { | |
1559 while (ptr[col] != NUL) | |
1560 { | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1561 // Stop at a ']' to evaluate "a[x]". |
7 | 1562 if ((find_type & FIND_EVAL) && ptr[col] == ']') |
1563 break; | |
1564 this_class = mb_get_class(ptr + col); | |
1565 if (this_class != 0 && (i == 1 || this_class != 1)) | |
1566 break; | |
474 | 1567 col += (*mb_ptr2len)(ptr + col); |
7 | 1568 } |
1569 } | |
1570 else | |
1571 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
|
1572 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col])) |
7 | 1573 && (!(find_type & FIND_EVAL) || ptr[col] != ']') |
1574 ) | |
1575 ++col; | |
1576 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1577 // When starting on a ']' count it, so that we include the '['. |
7 | 1578 bn = ptr[col] == ']'; |
1579 | |
1580 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1581 * 2. Back up to start of identifier/text. |
7 | 1582 */ |
1583 if (has_mbyte) | |
1584 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1585 // Remember class of character under cursor. |
7 | 1586 if ((find_type & FIND_EVAL) && ptr[col] == ']') |
1587 this_class = mb_get_class((char_u *)"a"); | |
1588 else | |
1589 this_class = mb_get_class(ptr + col); | |
835 | 1590 while (col > 0 && this_class != 0) |
7 | 1591 { |
1592 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1); | |
1593 prev_class = mb_get_class(ptr + prevcol); | |
1594 if (this_class != prev_class | |
1595 && (i == 0 | |
1596 || prev_class == 0 | |
1597 || (find_type & FIND_IDENT)) | |
1598 && (!(find_type & FIND_EVAL) | |
1599 || prevcol == 0 | |
1600 || !find_is_eval_item(ptr + prevcol, &prevcol, | |
1601 &bn, BACKWARD)) | |
1602 ) | |
1603 break; | |
1604 col = prevcol; | |
1605 } | |
1606 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1607 // 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
|
1608 // identifier, stop searching. |
7 | 1609 if (this_class > 2) |
1610 this_class = 2; | |
1611 if (!(find_type & FIND_STRING) || this_class == 2) | |
1612 break; | |
1613 } | |
1614 else | |
1615 { | |
1616 while (col > 0 | |
1617 && ((i == 0 | |
1618 ? 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
|
1619 : (!VIM_ISWHITE(ptr[col - 1]) |
7 | 1620 && (!(find_type & FIND_IDENT) |
1621 || !vim_iswordc(ptr[col - 1])))) | |
1622 || ((find_type & FIND_EVAL) | |
1623 && col > 1 | |
1624 && find_is_eval_item(ptr + col - 1, &col, | |
1625 &bn, BACKWARD)) | |
1626 )) | |
1627 --col; | |
1628 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1629 // 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
|
1630 // identifier, stop searching. |
7 | 1631 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col])) |
1632 break; | |
1633 } | |
1634 } | |
1635 | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1636 if (ptr[col] == NUL || (i == 0 |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1637 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col])))) |
7 | 1638 { |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1639 // 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
|
1640 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
|
1641 { |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1642 if (find_type & FIND_STRING) |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1643 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
|
1644 else |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1645 emsg(_(e_noident)); |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1646 } |
7 | 1647 return 0; |
1648 } | |
1649 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
|
1650 *text = ptr; |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1651 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
|
1652 *textcol = col; |
7 | 1653 |
1654 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1655 * 3. Find the end if the identifier/text. |
7 | 1656 */ |
1657 bn = 0; | |
1658 startcol -= col; | |
1659 col = 0; | |
1660 if (has_mbyte) | |
1661 { | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1662 // Search for point of changing multibyte character class. |
7 | 1663 this_class = mb_get_class(ptr); |
1664 while (ptr[col] != NUL | |
1665 && ((i == 0 ? mb_get_class(ptr + col) == this_class | |
1666 : mb_get_class(ptr + col) != 0) | |
1667 || ((find_type & FIND_EVAL) | |
1668 && col <= (int)startcol | |
1669 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) | |
1670 )) | |
474 | 1671 col += (*mb_ptr2len)(ptr + col); |
7 | 1672 } |
1673 else | |
1674 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
|
1675 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col]))) |
7 | 1676 || ((find_type & FIND_EVAL) |
1677 && col <= (int)startcol | |
1678 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) | |
1679 ) | |
1680 ++col; | |
1681 | |
1682 return col; | |
1683 } | |
1684 | |
1685 /* | |
1686 * Prepare for redo of a normal command. | |
1687 */ | |
1688 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1689 prep_redo_cmd(cmdarg_T *cap) |
7 | 1690 { |
1691 prep_redo(cap->oap->regname, cap->count0, | |
1692 NUL, cap->cmdchar, NUL, NUL, cap->nchar); | |
1693 } | |
1694 | |
1695 /* | |
1696 * Prepare for redo of any command. | |
1697 * Note that only the last argument can be a multi-byte char. | |
1698 */ | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1699 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1700 prep_redo( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1701 int regname, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1702 long num, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1703 int cmd1, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1704 int cmd2, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1705 int cmd3, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1706 int cmd4, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1707 int cmd5) |
7 | 1708 { |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1709 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
|
1710 } |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1711 |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1712 /* |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1713 * 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
|
1714 */ |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1715 void |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1716 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
|
1717 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
|
1718 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
|
1719 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
|
1720 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
|
1721 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
|
1722 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
|
1723 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
|
1724 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
|
1725 { |
7 | 1726 ResetRedobuff(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1727 if (regname != 0) // yank from specified buffer |
7 | 1728 { |
1729 AppendCharToRedobuff('"'); | |
1730 AppendCharToRedobuff(regname); | |
1731 } | |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1732 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
|
1733 AppendNumberToRedobuff(num1); |
7 | 1734 if (cmd1 != NUL) |
1735 AppendCharToRedobuff(cmd1); | |
1736 if (cmd2 != NUL) | |
1737 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
|
1738 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
|
1739 AppendNumberToRedobuff(num2); |
7 | 1740 if (cmd3 != NUL) |
1741 AppendCharToRedobuff(cmd3); | |
1742 if (cmd4 != NUL) | |
1743 AppendCharToRedobuff(cmd4); | |
1744 if (cmd5 != NUL) | |
1745 AppendCharToRedobuff(cmd5); | |
1746 } | |
1747 | |
1748 /* | |
1749 * check for operator active and clear it | |
1750 * | |
1751 * return TRUE if operator was active | |
1752 */ | |
1753 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1754 checkclearop(oparg_T *oap) |
7 | 1755 { |
1756 if (oap->op_type == OP_NOP) | |
1757 return FALSE; | |
1758 clearopbeep(oap); | |
1759 return TRUE; | |
1760 } | |
1761 | |
1762 /* | |
1131 | 1763 * Check for operator or Visual active. Clear active operator. |
7 | 1764 * |
1131 | 1765 * Return TRUE if operator or Visual was active. |
7 | 1766 */ |
1767 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1768 checkclearopq(oparg_T *oap) |
7 | 1769 { |
5735 | 1770 if (oap->op_type == OP_NOP && !VIsual_active) |
7 | 1771 return FALSE; |
1772 clearopbeep(oap); | |
1773 return TRUE; | |
1774 } | |
1775 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1776 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1777 clearop(oparg_T *oap) |
7 | 1778 { |
1779 oap->op_type = OP_NOP; | |
1780 oap->regname = 0; | |
1781 oap->motion_force = NUL; | |
1782 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
|
1783 motion_force = NUL; |
7 | 1784 } |
1785 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1786 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1787 clearopbeep(oparg_T *oap) |
7 | 1788 { |
1789 clearop(oap); | |
1790 beep_flush(); | |
1791 } | |
1792 | |
1793 /* | |
1794 * Remove the shift modifier from a special key. | |
1795 */ | |
1796 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1797 unshift_special(cmdarg_T *cap) |
7 | 1798 { |
1799 switch (cap->cmdchar) | |
1800 { | |
1801 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break; | |
1802 case K_S_LEFT: cap->cmdchar = K_LEFT; break; | |
1803 case K_S_UP: cap->cmdchar = K_UP; break; | |
1804 case K_S_DOWN: cap->cmdchar = K_DOWN; break; | |
1805 case K_S_HOME: cap->cmdchar = K_HOME; break; | |
1806 case K_S_END: cap->cmdchar = K_END; break; | |
1807 } | |
1808 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask); | |
1809 } | |
1810 | |
6979 | 1811 /* |
1812 * If the mode is currently displayed clear the command line or update the | |
1813 * command displayed. | |
1814 */ | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1815 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1816 may_clear_cmdline(void) |
6979 | 1817 { |
1818 if (mode_displayed) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1819 clear_cmdline = TRUE; // unshow visual mode later |
6979 | 1820 #ifdef FEAT_CMDL_INFO |
1821 else | |
1822 clear_showcmd(); | |
1823 #endif | |
1824 } | |
1825 | |
7 | 1826 #if defined(FEAT_CMDL_INFO) || defined(PROTO) |
1827 /* | |
1828 * Routines for displaying a partly typed command | |
1829 */ | |
1830 | |
5735 | 1831 #define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30 |
7 | 1832 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
|
1833 static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd() |
7 | 1834 static int showcmd_is_clear = TRUE; |
1835 static int showcmd_visual = FALSE; | |
1836 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
1837 static void display_showcmd(void); |
7 | 1838 |
1839 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1840 clear_showcmd(void) |
7 | 1841 { |
1842 if (!p_sc) | |
1843 return; | |
1844 | |
1845 if (VIsual_active && !char_avail()) | |
1846 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
1847 int cursor_bot = LT_POS(VIsual, curwin->w_cursor); |
7 | 1848 long lines; |
1849 colnr_T leftcol, rightcol; | |
1850 linenr_T top, bot; | |
1851 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1852 // Show the size of the Visual area. |
1866 | 1853 if (cursor_bot) |
7 | 1854 { |
1855 top = VIsual.lnum; | |
1856 bot = curwin->w_cursor.lnum; | |
1857 } | |
1858 else | |
1859 { | |
1860 top = curwin->w_cursor.lnum; | |
1861 bot = VIsual.lnum; | |
1862 } | |
1863 # ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1864 // Include closed folds as a whole. |
7009 | 1865 (void)hasFolding(top, &top, NULL); |
1866 (void)hasFolding(bot, NULL, &bot); | |
7 | 1867 # endif |
1868 lines = bot - top + 1; | |
1869 | |
1870 if (VIsual_mode == Ctrl_V) | |
1871 { | |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1872 # ifdef FEAT_LINEBREAK |
1866 | 1873 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
|
1874 char_u *saved_w_sbr = curwin->w_p_sbr; |
1866 | 1875 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1876 // Make 'sbr' empty for a moment to get the correct size. |
1866 | 1877 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
|
1878 curwin->w_p_sbr = empty_option; |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1879 # endif |
7 | 1880 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
|
1881 # ifdef FEAT_LINEBREAK |
1866 | 1882 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
|
1883 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
|
1884 # endif |
7 | 1885 sprintf((char *)showcmd_buf, "%ldx%ld", lines, |
1886 (long)(rightcol - leftcol + 1)); | |
1887 } | |
1888 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum) | |
1889 sprintf((char *)showcmd_buf, "%ld", lines); | |
1890 else | |
2324
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1891 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1892 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
|
1893 int l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1894 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
|
1895 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
|
1896 |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1897 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
|
1898 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1899 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
|
1900 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
|
1901 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1902 else |
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_cursor(); |
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_pos(&VIsual); |
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 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
|
1908 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1909 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
|
1910 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
|
1911 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1912 ++bytes; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1913 ++chars; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1914 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
|
1915 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1916 bytes += l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1917 ++chars; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1918 s += l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1919 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1920 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
|
1921 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
|
1922 else |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1923 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
|
1924 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1925 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate |
7 | 1926 showcmd_visual = TRUE; |
1927 } | |
1928 else | |
1929 { | |
1930 showcmd_buf[0] = NUL; | |
1931 showcmd_visual = FALSE; | |
1932 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1933 // Don't actually display something if there is nothing to clear. |
7 | 1934 if (showcmd_is_clear) |
1935 return; | |
1936 } | |
1937 | |
1938 display_showcmd(); | |
1939 } | |
1940 | |
1941 /* | |
1942 * Add 'c' to string of shown command chars. | |
1943 * Return TRUE if output has been written (and setcursor() has been called). | |
1944 */ | |
1945 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1946 add_to_showcmd(int c) |
7 | 1947 { |
1948 char_u *p; | |
1949 int old_len; | |
1950 int extra_len; | |
1951 int overflow; | |
1952 int i; | |
1953 static int ignore[] = | |
1954 { | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1955 #ifdef FEAT_GUI |
7 | 1956 K_VER_SCROLLBAR, K_HOR_SCROLLBAR, |
1957 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
|
1958 #endif |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1959 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
|
1960 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE, |
7 | 1961 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE, |
1962 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
|
1963 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT, |
7 | 1964 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE, |
631 | 1965 K_CURSORHOLD, |
7 | 1966 0 |
1967 }; | |
1968 | |
641 | 1969 if (!p_sc || msg_silent != 0) |
7 | 1970 return FALSE; |
1971 | |
1972 if (showcmd_visual) | |
1973 { | |
1974 showcmd_buf[0] = NUL; | |
1975 showcmd_visual = FALSE; | |
1976 } | |
1977 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1978 // Ignore keys that are scrollbar updates and mouse clicks |
7 | 1979 if (IS_SPECIAL(c)) |
1980 for (i = 0; ignore[i] != 0; ++i) | |
1981 if (ignore[i] == c) | |
1982 return FALSE; | |
1983 | |
1984 p = transchar(c); | |
5535 | 1985 if (*p == ' ') |
1986 STRCPY(p, "<20>"); | |
7 | 1987 old_len = (int)STRLEN(showcmd_buf); |
1988 extra_len = (int)STRLEN(p); | |
1989 overflow = old_len + extra_len - SHOWCMD_COLS; | |
1990 if (overflow > 0) | |
1362 | 1991 mch_memmove(showcmd_buf, showcmd_buf + overflow, |
1992 old_len - overflow + 1); | |
7 | 1993 STRCAT(showcmd_buf, p); |
1994 | |
1995 if (char_avail()) | |
1996 return FALSE; | |
1997 | |
1998 display_showcmd(); | |
1999 | |
2000 return TRUE; | |
2001 } | |
2002 | |
2003 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2004 add_to_showcmd_c(int c) |
7 | 2005 { |
2006 if (!add_to_showcmd(c)) | |
2007 setcursor(); | |
2008 } | |
2009 | |
2010 /* | |
2011 * Delete 'len' characters from the end of the shown command. | |
2012 */ | |
2013 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2014 del_from_showcmd(int len) |
7 | 2015 { |
2016 int old_len; | |
2017 | |
2018 if (!p_sc) | |
2019 return; | |
2020 | |
2021 old_len = (int)STRLEN(showcmd_buf); | |
2022 if (len > old_len) | |
2023 len = old_len; | |
2024 showcmd_buf[old_len - len] = NUL; | |
2025 | |
2026 if (!char_avail()) | |
2027 display_showcmd(); | |
2028 } | |
2029 | |
2030 /* | |
2031 * push_showcmd() and pop_showcmd() are used when waiting for the user to type | |
2032 * something and there is a partial mapping. | |
2033 */ | |
2034 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2035 push_showcmd(void) |
7 | 2036 { |
2037 if (p_sc) | |
2038 STRCPY(old_showcmd_buf, showcmd_buf); | |
2039 } | |
2040 | |
2041 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2042 pop_showcmd(void) |
7 | 2043 { |
2044 if (!p_sc) | |
2045 return; | |
2046 | |
2047 STRCPY(showcmd_buf, old_showcmd_buf); | |
2048 | |
2049 display_showcmd(); | |
2050 } | |
2051 | |
2052 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2053 display_showcmd(void) |
7 | 2054 { |
2055 int len; | |
2056 | |
2057 cursor_off(); | |
2058 | |
2059 len = (int)STRLEN(showcmd_buf); | |
2060 if (len == 0) | |
2061 showcmd_is_clear = TRUE; | |
2062 else | |
2063 { | |
2064 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0); | |
2065 showcmd_is_clear = FALSE; | |
2066 } | |
2067 | |
2068 /* | |
1188 | 2069 * clear the rest of an old message by outputting up to SHOWCMD_COLS |
2070 * spaces | |
7 | 2071 */ |
2072 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0); | |
2073 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2074 setcursor(); // put cursor back where it belongs |
7 | 2075 } |
2076 #endif | |
2077 | |
2078 /* | |
2079 * When "check" is FALSE, prepare for commands that scroll the window. | |
2080 * When "check" is TRUE, take care of scroll-binding after the window has | |
2081 * scrolled. Called from normal_cmd() and edit(). | |
2082 */ | |
2083 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2084 do_check_scrollbind(int check) |
7 | 2085 { |
2086 static win_T *old_curwin = NULL; | |
2087 static linenr_T old_topline = 0; | |
2088 #ifdef FEAT_DIFF | |
2089 static int old_topfill = 0; | |
2090 #endif | |
2091 static buf_T *old_buf = NULL; | |
2092 static colnr_T old_leftcol = 0; | |
2093 | |
2094 if (check && curwin->w_p_scb) | |
2095 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2096 // 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
|
2097 // the values. |
7 | 2098 if (did_syncbind) |
2099 did_syncbind = FALSE; | |
2100 else if (curwin == old_curwin) | |
2101 { | |
2102 /* | |
2103 * Synchronize other windows, as necessary according to | |
2104 * 'scrollbind'. Don't do this after an ":edit" command, except | |
2105 * when 'diff' is set. | |
2106 */ | |
2107 if ((curwin->w_buffer == old_buf | |
2108 #ifdef FEAT_DIFF | |
2109 || curwin->w_p_diff | |
2110 #endif | |
2111 ) | |
2112 && (curwin->w_topline != old_topline | |
2113 #ifdef FEAT_DIFF | |
2114 || curwin->w_topfill != old_topfill | |
2115 #endif | |
2116 || curwin->w_leftcol != old_leftcol)) | |
2117 { | |
2118 check_scrollbind(curwin->w_topline - old_topline, | |
2119 (long)(curwin->w_leftcol - old_leftcol)); | |
2120 } | |
2121 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2122 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt' |
7 | 2123 { |
2124 /* | |
2125 * When switching between windows, make sure that the relative | |
2126 * vertical offset is valid for the new window. The relative | |
2127 * offset is invalid whenever another 'scrollbind' window has | |
2128 * scrolled to a point that would force the current window to | |
2129 * scroll past the beginning or end of its buffer. When the | |
2130 * resync is performed, some of the other 'scrollbind' windows may | |
2131 * need to jump so that the current window's relative position is | |
2132 * visible on-screen. | |
2133 */ | |
2134 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L); | |
2135 } | |
2136 curwin->w_scbind_pos = curwin->w_topline; | |
2137 } | |
2138 | |
2139 old_curwin = curwin; | |
2140 old_topline = curwin->w_topline; | |
2141 #ifdef FEAT_DIFF | |
2142 old_topfill = curwin->w_topfill; | |
2143 #endif | |
2144 old_buf = curwin->w_buffer; | |
2145 old_leftcol = curwin->w_leftcol; | |
2146 } | |
2147 | |
2148 /* | |
2149 * Synchronize any windows that have "scrollbind" set, based on the | |
2150 * number of rows by which the current window has changed | |
2151 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>) | |
2152 */ | |
2153 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2154 check_scrollbind(linenr_T topline_diff, long leftcol_diff) |
7 | 2155 { |
2156 int want_ver; | |
2157 int want_hor; | |
2158 win_T *old_curwin = curwin; | |
2159 buf_T *old_curbuf = curbuf; | |
2160 int old_VIsual_select = VIsual_select; | |
2161 int old_VIsual_active = VIsual_active; | |
2162 colnr_T tgt_leftcol = curwin->w_leftcol; | |
2163 long topline; | |
2164 long y; | |
2165 | |
2166 /* | |
2167 * check 'scrollopt' string for vertical and horizontal scroll options | |
2168 */ | |
2169 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0); | |
2170 #ifdef FEAT_DIFF | |
2171 want_ver |= old_curwin->w_p_diff; | |
2172 #endif | |
2173 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0)); | |
2174 | |
2175 /* | |
2176 * loop through the scrollbound windows and scroll accordingly | |
2177 */ | |
2178 VIsual_select = VIsual_active = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9399
diff
changeset
|
2179 FOR_ALL_WINDOWS(curwin) |
7 | 2180 { |
2181 curbuf = curwin->w_buffer; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2182 // skip original window and windows with 'noscrollbind' |
7 | 2183 if (curwin != old_curwin && curwin->w_p_scb) |
2184 { | |
2185 /* | |
2186 * do the vertical scroll | |
2187 */ | |
2188 if (want_ver) | |
2189 { | |
2190 #ifdef FEAT_DIFF | |
2191 if (old_curwin->w_p_diff && curwin->w_p_diff) | |
2192 { | |
2193 diff_set_topline(old_curwin, curwin); | |
2194 } | |
2195 else | |
2196 #endif | |
2197 { | |
2198 curwin->w_scbind_pos += topline_diff; | |
2199 topline = curwin->w_scbind_pos; | |
2200 if (topline > curbuf->b_ml.ml_line_count) | |
2201 topline = curbuf->b_ml.ml_line_count; | |
2202 if (topline < 1) | |
2203 topline = 1; | |
2204 | |
2205 y = topline - curwin->w_topline; | |
2206 if (y > 0) | |
2207 scrollup(y, FALSE); | |
2208 else | |
2209 scrolldown(-y, FALSE); | |
2210 } | |
2211 | |
2212 redraw_later(VALID); | |
2213 cursor_correct(); | |
2214 curwin->w_redr_status = TRUE; | |
2215 } | |
2216 | |
2217 /* | |
2218 * do the horizontal scroll | |
2219 */ | |
2220 if (want_hor && curwin->w_leftcol != tgt_leftcol) | |
2221 { | |
2222 curwin->w_leftcol = tgt_leftcol; | |
2223 leftcol_changed(); | |
2224 } | |
2225 } | |
2226 } | |
2227 | |
2228 /* | |
2229 * reset current-window | |
2230 */ | |
2231 VIsual_select = old_VIsual_select; | |
2232 VIsual_active = old_VIsual_active; | |
2233 curwin = old_curwin; | |
2234 curbuf = old_curbuf; | |
2235 } | |
2236 | |
2237 /* | |
2238 * Command character that's ignored. | |
2239 * 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
|
2240 * xon/xoff. |
7 | 2241 */ |
2242 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2243 nv_ignore(cmdarg_T *cap) |
7 | 2244 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2245 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now |
7 | 2246 } |
2247 | |
2248 /* | |
620 | 2249 * Command character that doesn't do anything, but unlike nv_ignore() does |
2250 * start edit(). Used for "startinsert" executed while starting up. | |
2251 */ | |
2252 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2253 nv_nop(cmdarg_T *cap UNUSED) |
620 | 2254 { |
2255 } | |
2256 | |
2257 /* | |
7 | 2258 * Command character doesn't exist. |
2259 */ | |
2260 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2261 nv_error(cmdarg_T *cap) |
7 | 2262 { |
2263 clearopbeep(cap->oap); | |
2264 } | |
2265 | |
2266 /* | |
2267 * <Help> and <F1> commands. | |
2268 */ | |
2269 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2270 nv_help(cmdarg_T *cap) |
7 | 2271 { |
2272 if (!checkclearopq(cap->oap)) | |
2273 ex_help(NULL); | |
2274 } | |
2275 | |
2276 /* | |
2277 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor. | |
2278 */ | |
2279 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2280 nv_addsub(cmdarg_T *cap) |
7 | 2281 { |
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
|
2282 #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
|
2283 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
|
2284 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
|
2285 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
|
2286 #endif |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2287 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
|
2288 { |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2289 prep_redo_cmd(cap); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2290 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
|
2291 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
|
2292 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 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2294 else if (VIsual_active) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2295 nv_operator(cap); |
6868 | 2296 else |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2297 clearop(cap->oap); |
7 | 2298 } |
2299 | |
2300 /* | |
2301 * CTRL-F, CTRL-B, etc: Scroll page up or down. | |
2302 */ | |
2303 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2304 nv_page(cmdarg_T *cap) |
7 | 2305 { |
2306 if (!checkclearop(cap->oap)) | |
819 | 2307 { |
2308 if (mod_mask & MOD_MASK_CTRL) | |
2309 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2310 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward |
819 | 2311 if (cap->arg == BACKWARD) |
2312 goto_tabpage(-(int)cap->count1); | |
2313 else | |
2314 goto_tabpage((int)cap->count0); | |
2315 } | |
2316 else | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12467
diff
changeset
|
2317 (void)onepage(cap->arg, cap->count1); |
819 | 2318 } |
7 | 2319 } |
2320 | |
2321 /* | |
2322 * Implementation of "gd" and "gD" command. | |
2323 */ | |
2324 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2325 nv_gd( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2326 oparg_T *oap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2327 int nchar, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2328 int thisblock) // 1 for "1gd" and "1gD" |
7 | 2329 { |
2330 int len; | |
503 | 2331 char_u *ptr; |
2332 | |
2333 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
|
2334 || 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
|
2335 == 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
|
2336 { |
503 | 2337 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
|
2338 } |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2339 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
|
2340 { |
503 | 2341 #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
|
2342 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
|
2343 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
|
2344 #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
|
2345 // 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
|
2346 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
|
2347 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
|
2348 } |
503 | 2349 } |
2350 | |
2351 /* | |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2352 * 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
|
2353 * otherwise. |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2354 */ |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2355 static int |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2356 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
|
2357 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2358 int i; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2359 int incomment = FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2360 int instring = 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2361 int prev = 0; |
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 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
|
2364 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2365 if (instring != 0) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2366 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2367 if (prev != '\\' && line[i] == instring) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2368 instring = 0; |
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 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
|
2371 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2372 instring = line[i]; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2373 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2374 else |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2375 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2376 if (incomment) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2377 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2378 if (prev == '*' && line[i] == '/') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2379 incomment = FALSE; |
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 else if (prev == '/' && line[i] == '*') |
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 incomment = TRUE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2384 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2385 else if (prev == '/' && line[i] == '/') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2386 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2387 return FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2388 } |
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 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2391 prev = line[i]; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2392 } |
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 return incomment == FALSE && instring == 0; |
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 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2397 /* |
523 | 2398 * Search for variable declaration of "ptr[len]". |
2399 * When "locally" is TRUE in the current function ("gd"), otherwise in the | |
2400 * current file ("gD"). | |
2401 * When "thisblock" is TRUE check the {} block scope. | |
503 | 2402 * Return FAIL when not found. |
2403 */ | |
2404 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2405 find_decl( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2406 char_u *ptr, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2407 int len, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2408 int locally, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2409 int thisblock, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2410 int flags_arg) // flags passed to searchit() |
503 | 2411 { |
7 | 2412 char_u *pat; |
2413 pos_T old_pos; | |
503 | 2414 pos_T par_pos; |
2415 pos_T found_pos; | |
7 | 2416 int t; |
2417 int save_p_ws; | |
2418 int save_p_scs; | |
503 | 2419 int retval = OK; |
944 | 2420 int incll; |
9315
1b4946fa3777
commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
2421 int searchflags = flags_arg; |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2422 int valid; |
503 | 2423 |
2424 if ((pat = alloc(len + 7)) == NULL) | |
2425 return FAIL; | |
268 | 2426 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2427 // 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
|
2428 // and "~" causes trouble. |
268 | 2429 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s", |
2430 len, ptr); | |
7 | 2431 old_pos = curwin->w_cursor; |
2432 save_p_ws = p_ws; | |
2433 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
|
2434 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
|
2435 p_scs = FALSE; // don't switch ignorecase off now |
7 | 2436 |
2437 /* | |
2438 * With "gD" go to line 1. | |
2439 * With "gd" Search back for the start of the current function, then go | |
2440 * back until a blank line. If this fails go to line 1. | |
2441 */ | |
944 | 2442 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE)) |
7 | 2443 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2444 setpcmark(); // Set in findpar() otherwise |
7 | 2445 curwin->w_cursor.lnum = 1; |
539 | 2446 par_pos = curwin->w_cursor; |
7 | 2447 } |
2448 else | |
2449 { | |
539 | 2450 par_pos = curwin->w_cursor; |
7 | 2451 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL) |
2452 --curwin->w_cursor.lnum; | |
2453 } | |
2454 curwin->w_cursor.col = 0; | |
2455 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2456 // 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
|
2457 CLEAR_POS(&found_pos); |
503 | 2458 for (;;) |
2459 { | |
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
|
2460 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
|
2461 pat, 1L, searchflags, RE_LAST, NULL); |
503 | 2462 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
|
2463 t = FAIL; // match after start is failure too |
523 | 2464 |
718 | 2465 if (thisblock && t != FAIL) |
523 | 2466 { |
2467 pos_T *pos; | |
2468 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2469 // 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
|
2470 // position where we started the search from. |
523 | 2471 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD, |
2472 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL | |
2473 && pos->lnum < old_pos.lnum) | |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2474 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2475 // 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
|
2476 // Skip to the end. |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2477 curwin->w_cursor = *pos; |
523 | 2478 continue; |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2479 } |
523 | 2480 } |
2481 | |
503 | 2482 if (t == FAIL) |
2483 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2484 // If we previously found a valid position, use it. |
503 | 2485 if (found_pos.lnum != 0) |
2486 { | |
2487 curwin->w_cursor = found_pos; | |
2488 t = OK; | |
2489 } | |
2490 break; | |
2491 } | |
3562 | 2492 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0) |
503 | 2493 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2494 // Ignore this line, continue at start of next line. |
503 | 2495 ++curwin->w_cursor.lnum; |
2496 curwin->w_cursor.col = 0; | |
2497 continue; | |
2498 } | |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2499 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
|
2500 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2501 // 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
|
2502 // 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
|
2503 if (!valid && found_pos.lnum != 0) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2504 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2505 curwin->w_cursor = found_pos; |
503 | 2506 break; |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2507 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2508 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2509 // 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
|
2510 if (valid && !locally) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2511 break; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2512 if (valid && curwin->w_cursor.lnum >= par_pos.lnum) |
503 | 2513 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2514 // If we previously found a valid position, use it. |
503 | 2515 if (found_pos.lnum != 0) |
2516 curwin->w_cursor = found_pos; | |
2517 break; | |
2518 } | |
2519 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2520 // 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
|
2521 // 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
|
2522 // 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
|
2523 if (!valid) |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
2524 CLEAR_POS(&found_pos); |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2525 else |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2526 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
|
2527 // 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
|
2528 // position. |
9315
1b4946fa3777
commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
2529 searchflags &= ~SEARCH_START; |
503 | 2530 } |
2531 | |
2532 if (t == FAIL) | |
2533 { | |
2534 retval = FAIL; | |
7 | 2535 curwin->w_cursor = old_pos; |
2536 } | |
2537 else | |
2538 { | |
2539 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
|
2540 // "n" searches forward now |
7 | 2541 reset_search_dir(); |
2542 } | |
2543 | |
2544 vim_free(pat); | |
2545 p_ws = save_p_ws; | |
2546 p_scs = save_p_scs; | |
503 | 2547 |
2548 return retval; | |
7 | 2549 } |
2550 | |
2551 /* | |
2552 * Move 'dist' lines in direction 'dir', counting lines by *screen* | |
2553 * lines rather than lines in the file. | |
2554 * 'dist' must be positive. | |
2555 * | |
2556 * Return OK if able to move cursor, FAIL otherwise. | |
2557 */ | |
2558 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2559 nv_screengo(oparg_T *oap, int dir, long dist) |
7 | 2560 { |
2561 int linelen = linetabsize(ml_get_curline()); | |
2562 int retval = OK; | |
2563 int atend = FALSE; | |
2564 int n; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2565 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
|
2566 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
|
2567 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
|
2568 int width2; // text width for wrapped screen line |
7 | 2569 |
2570 oap->motion_type = MCHAR; | |
5192
c28202427d71
updated for version 7.4a.022
Bram Moolenaar <bram@vim.org>
parents:
5162
diff
changeset
|
2571 oap->inclusive = (curwin->w_curswant == MAXCOL); |
7 | 2572 |
2573 col_off1 = curwin_col_off(); | |
2574 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
|
2575 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
|
2576 width2 = curwin->w_width - col_off2; |
6559 | 2577 if (width2 == 0) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2578 width2 = 1; // avoid divide by zero |
7 | 2579 |
2580 if (curwin->w_width != 0) | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
2581 { |
7 | 2582 /* |
2583 * Instead of sticking at the last character of the buffer line we | |
2584 * try to stick in the last column of the screen. | |
2585 */ | |
2586 if (curwin->w_curswant == MAXCOL) | |
2587 { | |
2588 atend = TRUE; | |
2589 validate_virtcol(); | |
2590 if (width1 <= 0) | |
2591 curwin->w_curswant = 0; | |
2592 else | |
2593 { | |
2594 curwin->w_curswant = width1 - 1; | |
2595 if (curwin->w_virtcol > curwin->w_curswant) | |
2596 curwin->w_curswant += ((curwin->w_virtcol | |
2597 - curwin->w_curswant - 1) / width2 + 1) * width2; | |
2598 } | |
2599 } | |
2600 else | |
2601 { | |
2602 if (linelen > width1) | |
2603 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; | |
2604 else | |
2605 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
|
2606 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
|
2607 curwin->w_curswant = n - 1; |
7 | 2608 } |
2609 | |
2610 while (dist--) | |
2611 { | |
2612 if (dir == BACKWARD) | |
2613 { | |
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
|
2614 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
|
2615 #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
|
2616 && !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
|
2617 #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
|
2618 ) |
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
|
2619 // 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
|
2620 // 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
|
2621 // which will get clipped to column 0. |
7 | 2622 curwin->w_curswant -= width2; |
2623 else | |
2624 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2625 // 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
|
2626 #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
|
2627 // 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
|
2628 // '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
|
2629 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
|
2630 (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
|
2631 &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
|
2632 #endif |
7 | 2633 if (curwin->w_cursor.lnum == 1) |
2634 { | |
2635 retval = FAIL; | |
2636 break; | |
2637 } | |
2638 --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
|
2639 |
7 | 2640 linelen = linetabsize(ml_get_curline()); |
2641 if (linelen > width1) | |
2642 curwin->w_curswant += (((linelen - width1 - 1) / width2) | |
2643 + 1) * width2; | |
2644 } | |
2645 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2646 else // dir == FORWARD |
7 | 2647 { |
2648 if (linelen > width1) | |
2649 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; | |
2650 else | |
2651 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
|
2652 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
|
2653 #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
|
2654 && !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
|
2655 #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
|
2656 ) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2657 // move forward within line |
7 | 2658 curwin->w_curswant += width2; |
2659 else | |
2660 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2661 // to next line |
7 | 2662 #ifdef FEAT_FOLDING |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2663 // Move to the end of a closed fold. |
7 | 2664 (void)hasFolding(curwin->w_cursor.lnum, NULL, |
2665 &curwin->w_cursor.lnum); | |
2666 #endif | |
2667 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count) | |
2668 { | |
2669 retval = FAIL; | |
2670 break; | |
2671 } | |
2672 curwin->w_cursor.lnum++; | |
2673 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
|
2674 // 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
|
2675 // 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
|
2676 // 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
|
2677 // 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
|
2678 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
|
2679 curwin->w_curswant -= width2; |
2911 | 2680 linelen = linetabsize(ml_get_curline()); |
7 | 2681 } |
2682 } | |
2683 } | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
2684 } |
7 | 2685 |
5600 | 2686 if (virtual_active() && atend) |
2687 coladvance(MAXCOL); | |
2688 else | |
2689 coladvance(curwin->w_curswant); | |
7 | 2690 |
2691 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap) | |
2692 { | |
6178 | 2693 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
|
2694 int c; |
6178 | 2695 |
7 | 2696 /* |
2697 * Check for landing on a character that got split at the end of the | |
2698 * last line. We want to advance a screenline, not end up in the same | |
2699 * screenline or move two screenlines. | |
2700 */ | |
2701 validate_virtcol(); | |
6178 | 2702 virtcol = curwin->w_virtcol; |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2703 #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
|
2704 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
|
2705 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
|
2706 #endif |
6178 | 2707 |
26094
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2708 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
|
2709 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
|
2710 && (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
|
2711 && !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
|
2712 oneright(); |
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2713 |
6178 | 2714 if (virtcol > curwin->w_curswant |
7 | 2715 && (curwin->w_curswant < (colnr_T)width1 |
2716 ? (curwin->w_curswant > (colnr_T)width1 / 2) | |
2717 : ((curwin->w_curswant - width1) % width2 | |
2718 > (colnr_T)width2 / 2))) | |
2719 --curwin->w_cursor.col; | |
2720 } | |
2721 | |
2722 if (atend) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2723 curwin->w_curswant = MAXCOL; // stick in the last column |
7 | 2724 |
2725 return retval; | |
2726 } | |
2727 | |
2728 /* | |
2729 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down. | |
2730 * cap->arg must be TRUE for CTRL-E. | |
2731 */ | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
2732 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2733 nv_scroll_line(cmdarg_T *cap) |
7 | 2734 { |
2735 if (!checkclearop(cap->oap)) | |
2736 scroll_redraw(cap->arg, cap->count1); | |
2737 } | |
2738 | |
2739 /* | |
2740 * Scroll "count" lines up or down, and redraw. | |
2741 */ | |
2742 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2743 scroll_redraw(int up, long count) |
7 | 2744 { |
2745 linenr_T prev_topline = curwin->w_topline; | |
2746 #ifdef FEAT_DIFF | |
2747 int prev_topfill = curwin->w_topfill; | |
2748 #endif | |
2749 linenr_T prev_lnum = curwin->w_cursor.lnum; | |
2750 | |
2751 if (up) | |
2752 scrollup(count, TRUE); | |
2753 else | |
2754 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
|
2755 if (get_scrolloff_value()) |
7 | 2756 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2757 // 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
|
2758 // valid, otherwise the screen jumps back at the end of the file. |
7 | 2759 cursor_correct(); |
2760 check_cursor_moved(curwin); | |
2761 curwin->w_valid |= VALID_TOPLINE; | |
2762 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2763 // 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
|
2764 // 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
|
2765 // first line of the buffer is already on the screen |
7 | 2766 while (curwin->w_topline == prev_topline |
2767 #ifdef FEAT_DIFF | |
2768 && curwin->w_topfill == prev_topfill | |
2769 #endif | |
2770 ) | |
2771 { | |
2772 if (up) | |
2773 { | |
2774 if (curwin->w_cursor.lnum > prev_lnum | |
2775 || cursor_down(1L, FALSE) == FAIL) | |
2776 break; | |
2777 } | |
2778 else | |
2779 { | |
2780 if (curwin->w_cursor.lnum < prev_lnum | |
2781 || prev_topline == 1L | |
2782 || cursor_up(1L, FALSE) == FAIL) | |
2783 break; | |
2784 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2785 // 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
|
2786 // end of the file. |
7 | 2787 check_cursor_moved(curwin); |
2788 curwin->w_valid |= VALID_TOPLINE; | |
2789 } | |
2790 } | |
2791 if (curwin->w_cursor.lnum != prev_lnum) | |
2792 coladvance(curwin->w_curswant); | |
2793 redraw_later(VALID); | |
2794 } | |
2795 | |
2796 /* | |
2797 * Commands that start with "z". | |
2798 */ | |
2799 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2800 nv_zet(cmdarg_T *cap) |
7 | 2801 { |
2802 long n; | |
2803 colnr_T col; | |
2804 int nchar = cap->nchar; | |
2805 #ifdef FEAT_FOLDING | |
2806 long old_fdl = curwin->w_p_fdl; | |
2807 int old_fen = curwin->w_p_fen; | |
2808 #endif | |
737 | 2809 #ifdef FEAT_SPELL |
710 | 2810 int undo = FALSE; |
2811 #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
|
2812 long siso = get_sidescrolloff_value(); |
7 | 2813 |
2814 if (VIM_ISDIGIT(nchar)) | |
2815 { | |
2816 /* | |
2817 * "z123{nchar}": edit the count before obtaining {nchar} | |
2818 */ | |
2819 if (checkclearop(cap->oap)) | |
2820 return; | |
2821 n = nchar - '0'; | |
2822 for (;;) | |
2823 { | |
2824 #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
|
2825 dont_scroll = TRUE; // disallow scrolling here |
7 | 2826 #endif |
2827 ++no_mapping; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2828 ++allow_keys; // no mapping for nchar, but allow key codes |
1389 | 2829 nchar = plain_vgetc(); |
7 | 2830 LANGMAP_ADJUST(nchar, TRUE); |
2831 --no_mapping; | |
2832 --allow_keys; | |
2833 #ifdef FEAT_CMDL_INFO | |
2834 (void)add_to_showcmd(nchar); | |
2835 #endif | |
2836 if (nchar == K_DEL || nchar == K_KDEL) | |
2837 n /= 10; | |
2838 else if (VIM_ISDIGIT(nchar)) | |
2839 n = n * 10 + (nchar - '0'); | |
2840 else if (nchar == CAR) | |
2841 { | |
2842 #ifdef FEAT_GUI | |
2843 need_mouse_correct = TRUE; | |
2844 #endif | |
2845 win_setheight((int)n); | |
2846 break; | |
2847 } | |
2848 else if (nchar == 'l' | |
2849 || nchar == 'h' | |
2850 || nchar == K_LEFT | |
229 | 2851 || nchar == K_RIGHT) |
7 | 2852 { |
2853 cap->count1 = n ? n * cap->count1 : cap->count1; | |
2854 goto dozet; | |
2855 } | |
2856 else | |
2857 { | |
2858 clearopbeep(cap->oap); | |
2859 break; | |
2860 } | |
2861 } | |
2862 cap->oap->op_type = OP_NOP; | |
2863 return; | |
2864 } | |
2865 | |
2866 dozet: | |
2867 if ( | |
2868 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2869 // "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
|
2870 // 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
|
2871 // commands. |
7 | 2872 cap->nchar != 'f' && cap->nchar != 'F' |
2873 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar)) | |
2874 && cap->nchar != 'j' && cap->nchar != 'k' | |
2875 && | |
2876 #endif | |
2877 checkclearop(cap->oap)) | |
2878 return; | |
2879 | |
2880 /* | |
2881 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb": | |
2882 * If line number given, set cursor. | |
2883 */ | |
2884 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL) | |
2885 && cap->count0 | |
2886 && cap->count0 != curwin->w_cursor.lnum) | |
2887 { | |
2888 setpcmark(); | |
2889 if (cap->count0 > curbuf->b_ml.ml_line_count) | |
2890 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
2891 else | |
2892 curwin->w_cursor.lnum = cap->count0; | |
22 | 2893 check_cursor_col(); |
7 | 2894 } |
2895 | |
2896 switch (nchar) | |
2897 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2898 // "z+", "z<CR>" and "zt": put cursor at top of screen |
7 | 2899 case '+': |
2900 if (cap->count0 == 0) | |
2901 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2902 // 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
|
2903 validate_botline(); // make sure w_botline is valid |
7 | 2904 if (curwin->w_botline > curbuf->b_ml.ml_line_count) |
2905 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
2906 else | |
2907 curwin->w_cursor.lnum = curwin->w_botline; | |
2908 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2909 // FALLTHROUGH |
7 | 2910 case NL: |
2911 case CAR: | |
2912 case K_KENTER: | |
2913 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
|
2914 // FALLTHROUGH |
7 | 2915 |
2916 case 't': scroll_cursor_top(0, TRUE); | |
2917 redraw_later(VALID); | |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2918 set_fraction(curwin); |
7 | 2919 break; |
2920 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2921 // "z." and "zz": put cursor in middle of screen |
7 | 2922 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
|
2923 // FALLTHROUGH |
7 | 2924 |
2925 case 'z': scroll_cursor_halfway(TRUE); | |
2926 redraw_later(VALID); | |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2927 set_fraction(curwin); |
7 | 2928 break; |
2929 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2930 // "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
|
2931 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
|
2932 // 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
|
2933 // bottom of window. |
7 | 2934 if (cap->count0 != 0) |
2935 { | |
2936 scroll_cursor_bot(0, TRUE); | |
2937 curwin->w_cursor.lnum = curwin->w_topline; | |
2938 } | |
2939 else if (curwin->w_topline == 1) | |
2940 curwin->w_cursor.lnum = 1; | |
2941 else | |
2942 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
|
2943 // FALLTHROUGH |
7 | 2944 case '-': |
2945 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
|
2946 // FALLTHROUGH |
7 | 2947 |
2948 case 'b': scroll_cursor_bot(0, TRUE); | |
2949 redraw_later(VALID); | |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2950 set_fraction(curwin); |
7 | 2951 break; |
2952 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2953 // "zH" - scroll screen right half-page |
7 | 2954 case 'H': |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
2955 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
|
2956 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2957 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2958 // "zh" - scroll screen to the right |
7 | 2959 case 'h': |
2960 case K_LEFT: | |
2961 if (!curwin->w_p_wrap) | |
2962 { | |
2963 if ((colnr_T)cap->count1 > curwin->w_leftcol) | |
2964 curwin->w_leftcol = 0; | |
2965 else | |
2966 curwin->w_leftcol -= (colnr_T)cap->count1; | |
2967 leftcol_changed(); | |
2968 } | |
2969 break; | |
2970 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2971 // "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
|
2972 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
|
2973 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2974 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2975 // "zl" - scroll screen to the left |
7 | 2976 case 'l': |
2977 case K_RIGHT: | |
2978 if (!curwin->w_p_wrap) | |
2979 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2980 // scroll the window left |
7 | 2981 curwin->w_leftcol += (colnr_T)cap->count1; |
2982 leftcol_changed(); | |
2983 } | |
2984 break; | |
2985 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2986 // "zs" - scroll screen, cursor at the start |
7 | 2987 case 's': if (!curwin->w_p_wrap) |
2988 { | |
2989 #ifdef FEAT_FOLDING | |
2990 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
|
2991 col = 0; // like the cursor is in col 0 |
7 | 2992 else |
2993 #endif | |
2994 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
|
2995 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
|
2996 col -= siso; |
7 | 2997 else |
2998 col = 0; | |
2999 if (curwin->w_leftcol != col) | |
3000 { | |
3001 curwin->w_leftcol = col; | |
3002 redraw_later(NOT_VALID); | |
3003 } | |
3004 } | |
3005 break; | |
3006 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3007 // "ze" - scroll screen, cursor at the end |
7 | 3008 case 'e': if (!curwin->w_p_wrap) |
3009 { | |
3010 #ifdef FEAT_FOLDING | |
3011 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
|
3012 col = 0; // like the cursor is in col 0 |
7 | 3013 else |
3014 #endif | |
3015 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
|
3016 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
|
3017 if ((long)col + siso < n) |
7 | 3018 col = 0; |
3019 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
|
3020 col = col + siso - n + 1; |
7 | 3021 if (curwin->w_leftcol != col) |
3022 { | |
3023 curwin->w_leftcol = col; | |
3024 redraw_later(NOT_VALID); | |
3025 } | |
3026 } | |
3027 break; | |
3028 | |
24752
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
3029 // "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
|
3030 case 'P': |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
3031 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
|
3032 break; |
24866
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
3033 // "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
|
3034 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
|
3035 break; |
7 | 3036 #ifdef FEAT_FOLDING |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3037 // "zF": create fold command |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3038 // "zf": create fold operator |
7 | 3039 case 'F': |
3040 case 'f': if (foldManualAllowed(TRUE)) | |
3041 { | |
3042 cap->nchar = 'f'; | |
3043 nv_operator(cap); | |
3044 curwin->w_p_fen = TRUE; | |
3045 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3046 // "zF" is like "zfzf" |
7 | 3047 if (nchar == 'F' && cap->oap->op_type == OP_FOLD) |
3048 { | |
3049 nv_operator(cap); | |
3050 finish_op = TRUE; | |
3051 } | |
3052 } | |
3053 else | |
3054 clearopbeep(cap->oap); | |
3055 break; | |
3056 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3057 // "zd": delete fold at cursor |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3058 // "zD": delete fold at cursor recursively |
7 | 3059 case 'd': |
3060 case 'D': if (foldManualAllowed(FALSE)) | |
3061 { | |
3062 if (VIsual_active) | |
3063 nv_operator(cap); | |
3064 else | |
3065 deleteFold(curwin->w_cursor.lnum, | |
3066 curwin->w_cursor.lnum, nchar == 'D', FALSE); | |
3067 } | |
3068 break; | |
3069 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3070 // "zE": erase all folds |
7 | 3071 case 'E': if (foldmethodIsManual(curwin)) |
3072 { | |
3073 clearFolding(curwin); | |
3074 changed_window_setting(); | |
3075 } | |
3076 else if (foldmethodIsMarker(curwin)) | |
3077 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count, | |
3078 TRUE, FALSE); | |
3079 else | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
3080 emsg(_("E352: Cannot erase folds with current 'foldmethod'")); |
7 | 3081 break; |
3082 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3083 // "zn": fold none: reset 'foldenable' |
7 | 3084 case 'n': curwin->w_p_fen = FALSE; |
3085 break; | |
3086 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3087 // "zN": fold Normal: set 'foldenable' |
7 | 3088 case 'N': curwin->w_p_fen = TRUE; |
3089 break; | |
3090 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3091 // "zi": invert folding: toggle 'foldenable' |
7 | 3092 case 'i': curwin->w_p_fen = !curwin->w_p_fen; |
3093 break; | |
3094 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3095 // "za": open closed fold or close open fold at cursor |
7 | 3096 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) |
3097 openFold(curwin->w_cursor.lnum, cap->count1); | |
3098 else | |
3099 { | |
3100 closeFold(curwin->w_cursor.lnum, cap->count1); | |
3101 curwin->w_p_fen = TRUE; | |
3102 } | |
3103 break; | |
3104 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3105 // "zA": open fold at cursor recursively |
7 | 3106 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) |
3107 openFoldRecurse(curwin->w_cursor.lnum); | |
3108 else | |
3109 { | |
3110 closeFoldRecurse(curwin->w_cursor.lnum); | |
3111 curwin->w_p_fen = TRUE; | |
3112 } | |
3113 break; | |
3114 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3115 // "zo": open fold at cursor or Visual area |
7 | 3116 case 'o': if (VIsual_active) |
3117 nv_operator(cap); | |
3118 else | |
3119 openFold(curwin->w_cursor.lnum, cap->count1); | |
3120 break; | |
3121 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3122 // "zO": open fold recursively |
7 | 3123 case 'O': if (VIsual_active) |
3124 nv_operator(cap); | |
3125 else | |
3126 openFoldRecurse(curwin->w_cursor.lnum); | |
3127 break; | |
3128 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3129 // "zc": close fold at cursor or Visual area |
7 | 3130 case 'c': if (VIsual_active) |
3131 nv_operator(cap); | |
3132 else | |
3133 closeFold(curwin->w_cursor.lnum, cap->count1); | |
3134 curwin->w_p_fen = TRUE; | |
3135 break; | |
3136 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3137 // "zC": close fold recursively |
7 | 3138 case 'C': if (VIsual_active) |
3139 nv_operator(cap); | |
3140 else | |
3141 closeFoldRecurse(curwin->w_cursor.lnum); | |
3142 curwin->w_p_fen = TRUE; | |
3143 break; | |
3144 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3145 // "zv": open folds at the cursor |
7 | 3146 case 'v': foldOpenCursor(); |
3147 break; | |
3148 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3149 // "zx": re-apply 'foldlevel' and open folds at the cursor |
7 | 3150 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
|
3151 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
|
3152 newFoldLevel(); // update right now |
7 | 3153 foldOpenCursor(); |
3154 break; | |
3155 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3156 // "zX": undo manual opens/closes, re-apply 'foldlevel' |
7 | 3157 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
|
3158 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
|
3159 old_fdl = -1; // force an update |
7 | 3160 break; |
3161 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3162 // "zm": fold more |
7 | 3163 case 'm': if (curwin->w_p_fdl > 0) |
6725 | 3164 { |
3165 curwin->w_p_fdl -= cap->count1; | |
3166 if (curwin->w_p_fdl < 0) | |
3167 curwin->w_p_fdl = 0; | |
3168 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3169 old_fdl = -1; // force an update |
7 | 3170 curwin->w_p_fen = TRUE; |
3171 break; | |
3172 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3173 // "zM": close all folds |
7 | 3174 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
|
3175 old_fdl = -1; // force an update |
7 | 3176 curwin->w_p_fen = TRUE; |
3177 break; | |
3178 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3179 // "zr": reduce folding |
6725 | 3180 case 'r': curwin->w_p_fdl += cap->count1; |
3181 { | |
3182 int d = getDeepestNesting(); | |
3183 | |
3184 if (curwin->w_p_fdl >= d) | |
3185 curwin->w_p_fdl = d; | |
3186 } | |
7 | 3187 break; |
3188 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3189 // "zR": open all folds |
7 | 3190 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
|
3191 old_fdl = -1; // force an update |
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 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
|
3195 case 'k': // "zk" move to next fold upwards |
7 | 3196 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD, |
3197 cap->count1) == FAIL) | |
3198 clearopbeep(cap->oap); | |
3199 break; | |
3200 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3201 #endif // FEAT_FOLDING |
7 | 3202 |
737 | 3203 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3204 case 'u': // "zug" and "zuw": undo "zg" and "zw" |
710 | 3205 ++no_mapping; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3206 ++allow_keys; // no mapping for nchar, but allow key codes |
1389 | 3207 nchar = plain_vgetc(); |
710 | 3208 LANGMAP_ADJUST(nchar, TRUE); |
3209 --no_mapping; | |
3210 --allow_keys; | |
3211 #ifdef FEAT_CMDL_INFO | |
3212 (void)add_to_showcmd(nchar); | |
3213 #endif | |
3214 if (vim_strchr((char_u *)"gGwW", nchar) == NULL) | |
3215 { | |
3216 clearopbeep(cap->oap); | |
3217 break; | |
3218 } | |
3219 undo = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3220 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3221 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3222 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
|
3223 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
|
3224 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
|
3225 case 'W': // "zW": add wrong word to temp word list |
310 | 3226 { |
3227 char_u *ptr = NULL; | |
3228 int len; | |
3229 | |
3230 if (checkclearop(cap->oap)) | |
3231 break; | |
3232 if (VIsual_active && get_visual_text(cap, &ptr, &len) | |
3233 == FAIL) | |
3234 return; | |
501 | 3235 if (ptr == NULL) |
3236 { | |
3237 pos_T pos = curwin->w_cursor; | |
3238 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3239 // 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
|
3240 // 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
|
3241 // used below. |
5374 | 3242 emsg_off++; |
534 | 3243 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL); |
5374 | 3244 emsg_off--; |
501 | 3245 if (len != 0 && curwin->w_cursor.col <= pos.col) |
3246 ptr = ml_get_pos(&curwin->w_cursor); | |
3247 curwin->w_cursor = pos; | |
3248 } | |
3249 | |
310 | 3250 if (ptr == NULL && (len = find_ident_under_cursor(&ptr, |
3251 FIND_IDENT)) == 0) | |
3252 return; | |
17682
3dbff5d37520
patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrare
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3253 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
|
3254 ? SPELL_ADD_BAD : SPELL_ADD_GOOD, |
710 | 3255 (nchar == 'G' || nchar == 'W') |
3256 ? 0 : (int)cap->count1, | |
3257 undo); | |
310 | 3258 } |
316 | 3259 break; |
323 | 3260 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3261 case '=': // "z=": suggestions for a badly spelled word |
638 | 3262 if (!checkclearop(cap->oap)) |
485 | 3263 spell_suggest((int)cap->count0); |
323 | 3264 break; |
310 | 3265 #endif |
3266 | |
7 | 3267 default: clearopbeep(cap->oap); |
3268 } | |
3269 | |
3270 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3271 // Redraw when 'foldenable' changed |
7 | 3272 if (old_fen != curwin->w_p_fen) |
3273 { | |
3274 # ifdef FEAT_DIFF | |
3275 win_T *wp; | |
3276 | |
3277 if (foldmethodIsDiff(curwin) && curwin->w_p_scb) | |
3278 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3279 // Adjust 'foldenable' in diff-synced windows. |
7 | 3280 FOR_ALL_WINDOWS(wp) |
3281 { | |
3282 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb) | |
3283 { | |
3284 wp->w_p_fen = curwin->w_p_fen; | |
3285 changed_window_setting_win(wp); | |
3286 } | |
3287 } | |
3288 } | |
3289 # endif | |
3290 changed_window_setting(); | |
3291 } | |
3292 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3293 // Redraw when 'foldlevel' changed. |
7 | 3294 if (old_fdl != curwin->w_p_fdl) |
3295 newFoldLevel(); | |
3296 #endif | |
3297 } | |
3298 | |
3299 #ifdef FEAT_GUI | |
3300 /* | |
3301 * Vertical scrollbar movement. | |
3302 */ | |
3303 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3304 nv_ver_scrollbar(cmdarg_T *cap) |
7 | 3305 { |
3306 if (cap->oap->op_type != OP_NOP) | |
3307 clearopbeep(cap->oap); | |
3308 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3309 // Even if an operator was pending, we still want to scroll |
7 | 3310 gui_do_scroll(); |
3311 } | |
3312 | |
3313 /* | |
3314 * Horizontal scrollbar movement. | |
3315 */ | |
3316 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3317 nv_hor_scrollbar(cmdarg_T *cap) |
7 | 3318 { |
3319 if (cap->oap->op_type != OP_NOP) | |
3320 clearopbeep(cap->oap); | |
3321 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3322 // 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
|
3323 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 3324 } |
3325 #endif | |
3326 | |
690 | 3327 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
685 | 3328 /* |
3329 * Click in GUI tab. | |
3330 */ | |
3331 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3332 nv_tabline(cmdarg_T *cap) |
685 | 3333 { |
3334 if (cap->oap->op_type != OP_NOP) | |
3335 clearopbeep(cap->oap); | |
3336 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3337 // Even if an operator was pending, we still want to jump tabs. |
685 | 3338 goto_tabpage(current_tab); |
3339 } | |
686 | 3340 |
3341 /* | |
3342 * Selected item in tab line menu. | |
3343 */ | |
3344 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3345 nv_tabmenu(cmdarg_T *cap) |
686 | 3346 { |
3347 if (cap->oap->op_type != OP_NOP) | |
3348 clearopbeep(cap->oap); | |
3349 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3350 // Even if an operator was pending, we still want to jump tabs. |
690 | 3351 handle_tabmenu(); |
3352 } | |
3353 | |
3354 /* | |
3355 * Handle selecting an item of the GUI tab line menu. | |
3356 * Used in Normal and Insert mode. | |
3357 */ | |
3358 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3359 handle_tabmenu(void) |
690 | 3360 { |
686 | 3361 switch (current_tabmenu) |
3362 { | |
3363 case TABLINE_MENU_CLOSE: | |
3364 if (current_tab == 0) | |
3365 do_cmdline_cmd((char_u *)"tabclose"); | |
3366 else | |
3367 { | |
3368 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d", | |
3369 current_tab); | |
3370 do_cmdline_cmd(IObuff); | |
3371 } | |
3372 break; | |
3373 | |
3374 case TABLINE_MENU_NEW: | |
6631 | 3375 if (current_tab == 0) |
3376 do_cmdline_cmd((char_u *)"$tabnew"); | |
3377 else | |
3378 { | |
3379 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew", | |
3380 current_tab - 1); | |
3381 do_cmdline_cmd(IObuff); | |
3382 } | |
686 | 3383 break; |
3384 | |
3385 case TABLINE_MENU_OPEN: | |
6631 | 3386 if (current_tab == 0) |
3387 do_cmdline_cmd((char_u *)"browse $tabnew"); | |
3388 else | |
3389 { | |
3390 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew", | |
3391 current_tab - 1); | |
3392 do_cmdline_cmd(IObuff); | |
3393 } | |
686 | 3394 break; |
3395 } | |
3396 } | |
685 | 3397 #endif |
3398 | |
7 | 3399 /* |
3400 * "Q" command. | |
3401 */ | |
3402 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3403 nv_exmode(cmdarg_T *cap) |
7 | 3404 { |
3405 /* | |
3406 * Ignore 'Q' in Visual mode, just give a beep. | |
3407 */ | |
3408 if (VIsual_active) | |
6949 | 3409 vim_beep(BO_EX); |
5735 | 3410 else if (!checkclearop(cap->oap)) |
7 | 3411 do_exmode(FALSE); |
3412 } | |
3413 | |
3414 /* | |
3415 * Handle a ":" command. | |
3416 */ | |
3417 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3418 nv_colon(cmdarg_T *cap) |
7 | 3419 { |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3420 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
|
3421 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
|
3422 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
|
3423 |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3424 if (VIsual_active && !is_cmdkey) |
7 | 3425 nv_operator(cap); |
3426 else | |
3427 { | |
3428 if (cap->oap->op_type != OP_NOP) | |
3429 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3430 // Using ":" as a movement is characterwise exclusive. |
7 | 3431 cap->oap->motion_type = MCHAR; |
3432 cap->oap->inclusive = FALSE; | |
3433 } | |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3434 else if (cap->count0 && !is_cmdkey) |
7 | 3435 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3436 // translate "count:" into ":.,.+(count - 1)" |
7 | 3437 stuffcharReadbuff('.'); |
3438 if (cap->count0 > 1) | |
3439 { | |
3440 stuffReadbuff((char_u *)",.+"); | |
3441 stuffnumReadbuff((long)cap->count0 - 1L); | |
3442 } | |
3443 } | |
3444 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3445 // When typing, don't type below an old message |
7 | 3446 if (KeyTyped) |
3447 compute_cmdrow(); | |
3448 | |
3449 old_p_im = p_im; | |
3450 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3451 // 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
|
3452 cmd_result = do_cmdline(NULL, is_cmdkey ? getcmdkeycmd : getexline, NULL, |
7 | 3453 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0); |
3454 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3455 // If 'insertmode' changed, enter or exit Insert mode |
7 | 3456 if (p_im != old_p_im) |
3457 { | |
3458 if (p_im) | |
3459 restart_edit = 'i'; | |
3460 else | |
3461 restart_edit = 0; | |
3462 } | |
3463 | |
4256 | 3464 if (cmd_result == FAIL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3465 // The Ex command failed, do not execute the operator. |
4256 | 3466 clearop(cap->oap); |
3467 else if (cap->oap->op_type != OP_NOP | |
7 | 3468 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count |
3469 || cap->oap->start.col > | |
4256 | 3470 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum)) |
3471 || did_emsg | |
3472 )) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3473 // The start of the operator has become invalid by the Ex command. |
7 | 3474 clearopbeep(cap->oap); |
3475 } | |
3476 } | |
3477 | |
3478 /* | |
3479 * Handle CTRL-G command. | |
3480 */ | |
3481 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3482 nv_ctrlg(cmdarg_T *cap) |
7 | 3483 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3484 if (VIsual_active) // toggle Selection/Visual mode |
7 | 3485 { |
3486 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
|
3487 trigger_modechanged(); |
7 | 3488 showmode(); |
3489 } | |
5735 | 3490 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
|
3491 // print full name if count given or :cd used |
7 | 3492 fileinfo((int)cap->count0, FALSE, TRUE); |
3493 } | |
3494 | |
3495 /* | |
3496 * Handle CTRL-H <Backspace> command. | |
3497 */ | |
3498 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3499 nv_ctrlh(cmdarg_T *cap) |
7 | 3500 { |
3501 if (VIsual_active && VIsual_select) | |
3502 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3503 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode |
7 | 3504 v_visop(cap); |
3505 } | |
3506 else | |
3507 nv_left(cap); | |
3508 } | |
3509 | |
3510 /* | |
3511 * CTRL-L: clear screen and redraw. | |
3512 */ | |
3513 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3514 nv_clear(cmdarg_T *cap) |
7 | 3515 { |
3516 if (!checkclearop(cap->oap)) | |
3517 { | |
3518 #ifdef FEAT_SYN_HL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3519 // 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
|
3520 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
|
3521 # ifdef FEAT_RELTIME |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3522 { |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3523 win_T *wp; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3524 |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3525 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
|
3526 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
|
3527 } |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3528 # endif |
7 | 3529 #endif |
3530 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
|
3531 #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
|
3532 # 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
|
3533 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
|
3534 # 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
|
3535 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
|
3536 #endif |
7 | 3537 } |
3538 } | |
3539 | |
3540 /* | |
3541 * CTRL-O: In Select mode: switch to Visual mode for one command. | |
3542 * Otherwise: Go to older pcmark. | |
3543 */ | |
3544 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3545 nv_ctrlo(cmdarg_T *cap) |
7 | 3546 { |
3547 if (VIsual_active && VIsual_select) | |
3548 { | |
3549 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
|
3550 trigger_modechanged(); |
7 | 3551 showmode(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3552 restart_VIsual_select = 2; // restart Select mode later |
7 | 3553 } |
3554 else | |
3555 { | |
3556 cap->count1 = -cap->count1; | |
3557 nv_pcmark(cap); | |
3558 } | |
3559 } | |
3560 | |
3561 /* | |
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
|
3562 * 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
|
3563 * not named. |
7 | 3564 */ |
3565 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3566 nv_hat(cmdarg_T *cap) |
7 | 3567 { |
3568 if (!checkclearopq(cap->oap)) | |
3569 (void)buflist_getfile((int)cap->count0, (linenr_T)0, | |
3570 GETF_SETMARK|GETF_ALT, FALSE); | |
3571 } | |
3572 | |
3573 /* | |
3574 * "Z" commands. | |
3575 */ | |
3576 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3577 nv_Zet(cmdarg_T *cap) |
7 | 3578 { |
3579 if (!checkclearopq(cap->oap)) | |
3580 { | |
3581 switch (cap->nchar) | |
3582 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3583 // "ZZ": equivalent to ":x". |
7 | 3584 case 'Z': do_cmdline_cmd((char_u *)"x"); |
3585 break; | |
3586 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3587 // "ZQ": equivalent to ":q!" (Elvis compatible). |
7 | 3588 case 'Q': do_cmdline_cmd((char_u *)"q!"); |
3589 break; | |
3590 | |
3591 default: clearopbeep(cap->oap); | |
3592 } | |
3593 } | |
3594 } | |
3595 | |
3596 /* | |
3597 * Call nv_ident() as if "c1" was used, with "c2" as next character. | |
3598 */ | |
3599 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3600 do_nv_ident(int c1, int c2) |
7 | 3601 { |
3602 oparg_T oa; | |
3603 cmdarg_T ca; | |
3604 | |
3605 clear_oparg(&oa); | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
3606 CLEAR_FIELD(ca); |
7 | 3607 ca.oap = &oa; |
3608 ca.cmdchar = c1; | |
3609 ca.nchar = c2; | |
3610 nv_ident(&ca); | |
3611 } | |
3612 | |
3613 /* | |
3614 * Handle the commands that use the word under the cursor. | |
3615 * [g] CTRL-] :ta to current identifier | |
3616 * [g] 'K' run program for current identifier | |
3617 * [g] '*' / to current identifier or string | |
3618 * [g] '#' ? to current identifier or string | |
3619 * g ']' :tselect for current identifier | |
3620 */ | |
3621 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3622 nv_ident(cmdarg_T *cap) |
7 | 3623 { |
3624 char_u *ptr = NULL; | |
3625 char_u *buf; | |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3626 unsigned buflen; |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
3627 char_u *newbuf; |
7 | 3628 char_u *p; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3629 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
|
3630 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
|
3631 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
|
3632 int n = 0; // init for GCC |
7 | 3633 int cmdchar; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3634 int g_cmd; // "g" command |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3635 int tag_cmd = FALSE; |
7 | 3636 char_u *aux_ptr; |
3637 int isman; | |
3638 int isman_s; | |
3639 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3640 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]" |
7 | 3641 { |
3642 cmdchar = cap->nchar; | |
3643 g_cmd = TRUE; | |
3644 } | |
3645 else | |
3646 { | |
3647 cmdchar = cap->cmdchar; | |
3648 g_cmd = FALSE; | |
3649 } | |
3650 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3651 if (cmdchar == POUND) // the pound sign, '#' for English keyboards |
7 | 3652 cmdchar = '#'; |
3653 | |
3654 /* | |
3655 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode. | |
3656 */ | |
3657 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K') | |
3658 { | |
3659 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL) | |
3660 return; | |
3661 if (checkclearopq(cap->oap)) | |
3662 return; | |
3663 } | |
3664 | |
3665 if (ptr == NULL && (n = find_ident_under_cursor(&ptr, | |
3666 (cmdchar == '*' || cmdchar == '#') | |
3667 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0) | |
3668 { | |
3669 clearop(cap->oap); | |
3670 return; | |
3671 } | |
3672 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3673 // 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
|
3674 // 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
|
3675 // and some numbers. |
7 | 3676 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp); |
3677 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0 | |
3678 || 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
|
3679 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
|
3680 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3681 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
|
3682 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
|
3683 } |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3684 kp_ex = (*kp == ':'); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3685 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
|
3686 buf = alloc(buflen); |
7 | 3687 if (buf == NULL) |
3688 return; | |
3689 buf[0] = NUL; | |
3690 | |
3691 switch (cmdchar) | |
3692 { | |
3693 case '*': | |
3694 case '#': | |
3695 /* | |
3696 * Put cursor at start of word, makes search skip the word | |
3697 * under the cursor. | |
3698 * Call setpcmark() first, so "*``" puts the cursor back where | |
3699 * it was. | |
3700 */ | |
3701 setpcmark(); | |
3702 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline()); | |
3703 | |
3704 if (!g_cmd && vim_iswordp(ptr)) | |
3705 STRCPY(buf, "\\<"); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3706 no_smartcase = TRUE; // don't use 'smartcase' now |
7 | 3707 break; |
3708 | |
3709 case 'K': | |
3710 if (kp_help) | |
3711 STRCPY(buf, "he! "); | |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3712 else if (kp_ex) |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3713 { |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3714 if (cap->count0 != 0) |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3715 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
|
3716 kp, cap->count0); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3717 else |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3718 STRCPY(buf, kp); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3719 STRCAT(buf, " "); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3720 } |
7 | 3721 else |
3722 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3723 // 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
|
3724 // with "-" as an option. To avoid trouble we skip the "-". |
1728 | 3725 while (*ptr == '-' && n > 0) |
3726 { | |
1712 | 3727 ++ptr; |
1728 | 3728 --n; |
3729 } | |
3730 if (n == 0) | |
3731 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3732 emsg(_(e_noident)); // found dashes only |
1728 | 3733 vim_free(buf); |
3734 return; | |
3735 } | |
1712 | 3736 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3737 // 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
|
3738 // really what we want? |
7 | 3739 isman = (STRCMP(kp, "man") == 0); |
3740 isman_s = (STRCMP(kp, "man -s") == 0); | |
3741 if (cap->count0 != 0 && !(isman || isman_s)) | |
3742 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1); | |
3743 | |
3744 STRCAT(buf, "! "); | |
3745 if (cap->count0 == 0 && isman_s) | |
3746 STRCAT(buf, "man"); | |
3747 else | |
3748 STRCAT(buf, kp); | |
3749 STRCAT(buf, " "); | |
3750 if (cap->count0 != 0 && (isman || isman_s)) | |
3751 { | |
3752 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0); | |
3753 STRCAT(buf, " "); | |
3754 } | |
3755 } | |
3756 break; | |
3757 | |
3758 case ']': | |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3759 tag_cmd = TRUE; |
7 | 3760 #ifdef FEAT_CSCOPE |
3761 if (p_cst) | |
3762 STRCPY(buf, "cstag "); | |
3763 else | |
3764 #endif | |
3765 STRCPY(buf, "ts "); | |
3766 break; | |
3767 | |
3768 default: | |
2112
6b5d641bcdd4
updated for version 7.2.395
Bram Moolenaar <bram@zimbu.org>
parents:
2049
diff
changeset
|
3769 tag_cmd = TRUE; |
7 | 3770 if (curbuf->b_help) |
3771 STRCPY(buf, "he! "); | |
3772 else | |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3773 { |
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3774 if (g_cmd) |
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3775 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
|
3776 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
|
3777 STRCPY(buf, "ta "); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3778 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
|
3779 sprintf((char *)buf, ":%ldta ", cap->count0); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3780 } |
7 | 3781 } |
3782 | |
3783 /* | |
3784 * Now grab the chars in the identifier | |
3785 */ | |
1712 | 3786 if (cmdchar == 'K' && !kp_help) |
3787 { | |
1728 | 3788 ptr = vim_strnsave(ptr, n); |
10330
71ca6a16e818
commit https://github.com/vim/vim/commit/426f3754223c8ff8a1bc51d6ba1eba11e8982ebc
Christian Brabandt <cb@256bit.org>
parents:
10251
diff
changeset
|
3789 if (kp_ex) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3790 // 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
|
3791 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
|
3792 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3793 // 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
|
3794 p = vim_strsave_shellescape(ptr, TRUE, TRUE); |
1728 | 3795 vim_free(ptr); |
1712 | 3796 if (p == NULL) |
3797 { | |
3798 vim_free(buf); | |
3799 return; | |
3800 } | |
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
|
3801 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
|
3802 if (newbuf == NULL) |
1712 | 3803 { |
3804 vim_free(buf); | |
3805 vim_free(p); | |
3806 return; | |
3807 } | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
3808 buf = newbuf; |
1712 | 3809 STRCAT(buf, p); |
3810 vim_free(p); | |
3811 } | |
7 | 3812 else |
1712 | 3813 { |
3814 if (cmdchar == '*') | |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3815 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\"); |
1712 | 3816 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
|
3817 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\"); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3818 else if (tag_cmd) |
2603 | 3819 { |
3820 if (curbuf->b_help) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3821 // ":help" handles unescaped argument |
2603 | 3822 aux_ptr = (char_u *)""; |
3823 else | |
3824 aux_ptr = (char_u *)"\\|\"\n["; | |
3825 } | |
1712 | 3826 else |
3827 aux_ptr = (char_u *)"\\|\"\n*?["; | |
3828 | |
3829 p = buf + STRLEN(buf); | |
3830 while (n-- > 0) | |
3831 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3832 // put a backslash before \ and some others |
1712 | 3833 if (vim_strchr(aux_ptr, *ptr) != NULL) |
3834 *p++ = '\\'; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3835 // 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
|
3836 // bytes of that character. |
1712 | 3837 if (has_mbyte) |
3838 { | |
3839 int i; | |
3840 int len = (*mb_ptr2len)(ptr) - 1; | |
3841 | |
3842 for (i = 0; i < len && n >= 1; ++i, --n) | |
3843 *p++ = *ptr++; | |
3844 } | |
3845 *p++ = *ptr++; | |
3846 } | |
3847 *p = NUL; | |
3848 } | |
7 | 3849 |
3850 /* | |
3851 * Execute the command. | |
3852 */ | |
3853 if (cmdchar == '*' || cmdchar == '#') | |
3854 { | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3855 if (!g_cmd && (has_mbyte |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3856 ? 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
|
3857 : vim_iswordc(ptr[-1]))) |
7 | 3858 STRCAT(buf, "\\>"); |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17520
diff
changeset
|
3859 |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17520
diff
changeset
|
3860 // put pattern in search history |
2024 | 3861 init_history(); |
7 | 3862 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
|
3863 |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3864 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL); |
7 | 3865 } |
3866 else | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3867 { |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3868 g_tag_at_cursor = TRUE; |
7 | 3869 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
|
3870 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
|
3871 } |
7 | 3872 |
3873 vim_free(buf); | |
3874 } | |
3875 | |
3876 /* | |
3877 * Get visually selected text, within one line only. | |
3878 * Returns FAIL if more than one line selected. | |
3879 */ | |
344 | 3880 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3881 get_visual_text( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3882 cmdarg_T *cap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3883 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
|
3884 int *lenp) // return: length of selected text |
7 | 3885 { |
3886 if (VIsual_mode != 'V') | |
3887 unadjust_for_sel(); | |
3888 if (VIsual.lnum != curwin->w_cursor.lnum) | |
3889 { | |
344 | 3890 if (cap != NULL) |
3891 clearopbeep(cap->oap); | |
7 | 3892 return FAIL; |
3893 } | |
3894 if (VIsual_mode == 'V') | |
3895 { | |
3896 *pp = ml_get_curline(); | |
3897 *lenp = (int)STRLEN(*pp); | |
3898 } | |
3899 else | |
3900 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
3901 if (LT_POS(curwin->w_cursor, VIsual)) |
7 | 3902 { |
3903 *pp = ml_get_pos(&curwin->w_cursor); | |
3904 *lenp = VIsual.col - curwin->w_cursor.col + 1; | |
3905 } | |
3906 else | |
3907 { | |
3908 *pp = ml_get_pos(&VIsual); | |
3909 *lenp = curwin->w_cursor.col - VIsual.col + 1; | |
3910 } | |
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
|
3911 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
|
3912 *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
|
3913 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
|
3914 // Correct the length to include all bytes of the last character. |
474 | 3915 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1; |
7 | 3916 } |
3917 reset_VIsual_and_resel(); | |
3918 return OK; | |
3919 } | |
3920 | |
3921 /* | |
3922 * CTRL-T: backwards in tag stack | |
3923 */ | |
3924 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3925 nv_tagpop(cmdarg_T *cap) |
7 | 3926 { |
3927 if (!checkclearopq(cap->oap)) | |
3928 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE); | |
3929 } | |
3930 | |
3931 /* | |
3932 * Handle scrolling command 'H', 'L' and 'M'. | |
3933 */ | |
3934 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3935 nv_scroll(cmdarg_T *cap) |
7 | 3936 { |
3937 int used = 0; | |
3938 long n; | |
3939 #ifdef FEAT_FOLDING | |
3940 linenr_T lnum; | |
3941 #endif | |
3942 int half; | |
3943 | |
3944 cap->oap->motion_type = MLINE; | |
3945 setpcmark(); | |
3946 | |
3947 if (cap->cmdchar == 'L') | |
3948 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3949 validate_botline(); // make sure curwin->w_botline is valid |
7 | 3950 curwin->w_cursor.lnum = curwin->w_botline - 1; |
3951 if (cap->count1 - 1 >= curwin->w_cursor.lnum) | |
3952 curwin->w_cursor.lnum = 1; | |
3953 else | |
9 | 3954 { |
3955 #ifdef FEAT_FOLDING | |
3956 if (hasAnyFolding(curwin)) | |
3957 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3958 // Count a fold for one screen line. |
9 | 3959 for (n = cap->count1 - 1; n > 0 |
3960 && curwin->w_cursor.lnum > curwin->w_topline; --n) | |
3961 { | |
3962 (void)hasFolding(curwin->w_cursor.lnum, | |
3963 &curwin->w_cursor.lnum, NULL); | |
3964 --curwin->w_cursor.lnum; | |
3965 } | |
3966 } | |
3967 else | |
3968 #endif | |
3969 curwin->w_cursor.lnum -= cap->count1 - 1; | |
3970 } | |
7 | 3971 } |
3972 else | |
3973 { | |
3974 if (cap->cmdchar == 'M') | |
3975 { | |
3976 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3977 // Don't count filler lines above the window. |
7 | 3978 used -= diff_check_fill(curwin, curwin->w_topline) |
3979 - curwin->w_topfill; | |
3980 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3981 validate_botline(); // make sure w_empty_rows is valid |
7 | 3982 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2; |
3983 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n) | |
3984 { | |
3985 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3986 // 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
|
3987 // line" and half to be "above the next line". |
7 | 3988 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline |
3989 + n) / 2 >= half) | |
3990 { | |
3991 --n; | |
3992 break; | |
3993 } | |
3994 #endif | |
3995 used += plines(curwin->w_topline + n); | |
3996 if (used >= half) | |
3997 break; | |
3998 #ifdef FEAT_FOLDING | |
3999 if (hasFolding(curwin->w_topline + n, NULL, &lnum)) | |
4000 n = lnum - curwin->w_topline; | |
4001 #endif | |
4002 } | |
4003 if (n > 0 && used > curwin->w_height) | |
4004 --n; | |
4005 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4006 else // (cap->cmdchar == 'H') |
9 | 4007 { |
7 | 4008 n = cap->count1 - 1; |
9 | 4009 #ifdef FEAT_FOLDING |
4010 if (hasAnyFolding(curwin)) | |
4011 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4012 // Count a fold for one screen line. |
9 | 4013 lnum = curwin->w_topline; |
4014 while (n-- > 0 && lnum < curwin->w_botline - 1) | |
4015 { | |
7009 | 4016 (void)hasFolding(lnum, NULL, &lnum); |
9 | 4017 ++lnum; |
4018 } | |
4019 n = lnum - curwin->w_topline; | |
4020 } | |
4021 #endif | |
4022 } | |
7 | 4023 curwin->w_cursor.lnum = curwin->w_topline + n; |
4024 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
4025 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4026 } | |
4027 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4028 // 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
|
4029 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
|
4030 cursor_correct(); |
7 | 4031 beginline(BL_SOL | BL_FIX); |
4032 } | |
4033 | |
4034 /* | |
4035 * Cursor right commands. | |
4036 */ | |
4037 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4038 nv_right(cmdarg_T *cap) |
7 | 4039 { |
4040 long n; | |
5735 | 4041 int past_line; |
7 | 4042 |
180 | 4043 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) |
4044 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4045 // <C-Right> and <S-Right> move a word or WORD right |
180 | 4046 if (mod_mask & MOD_MASK_CTRL) |
4047 cap->arg = TRUE; | |
4048 nv_wordcmd(cap); | |
4049 return; | |
4050 } | |
4051 | |
7 | 4052 cap->oap->motion_type = MCHAR; |
4053 cap->oap->inclusive = FALSE; | |
5735 | 4054 past_line = (VIsual_active && *p_sel != 'o'); |
4055 | |
7 | 4056 /* |
5735 | 4057 * In virtual edit mode, there's no such thing as "past_line", as lines |
4058 * are (theoretically) infinitely long. | |
7 | 4059 */ |
4060 if (virtual_active()) | |
5735 | 4061 past_line = 0; |
7 | 4062 |
4063 for (n = cap->count1; n > 0; --n) | |
4064 { | |
5735 | 4065 if ((!past_line && oneright() == FAIL) |
4066 || (past_line && *ml_get_cursor() == NUL) | |
1877 | 4067 ) |
7 | 4068 { |
4069 /* | |
714 | 4070 * <Space> wraps to next line if 'whichwrap' has 's'. |
4071 * 'l' wraps to next line if 'whichwrap' has 'l'. | |
4072 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'. | |
7 | 4073 */ |
4074 if ( ((cap->cmdchar == ' ' | |
4075 && vim_strchr(p_ww, 's') != NULL) | |
4076 || (cap->cmdchar == 'l' | |
4077 && vim_strchr(p_ww, 'l') != NULL) | |
229 | 4078 || (cap->cmdchar == K_RIGHT |
7 | 4079 && vim_strchr(p_ww, '>') != NULL)) |
4080 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
4081 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4082 // 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
|
4083 // 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
|
4084 // included, move to next line after that |
714 | 4085 if ( cap->oap->op_type != OP_NOP |
7 | 4086 && !cap->oap->inclusive |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
4087 && !LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 4088 cap->oap->inclusive = TRUE; |
4089 else | |
4090 { | |
4091 ++curwin->w_cursor.lnum; | |
4092 curwin->w_cursor.col = 0; | |
4093 curwin->w_cursor.coladd = 0; | |
4094 curwin->w_set_curswant = TRUE; | |
4095 cap->oap->inclusive = FALSE; | |
4096 } | |
4097 continue; | |
4098 } | |
4099 if (cap->oap->op_type == OP_NOP) | |
4100 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4101 // Only beep and flush if not moved at all |
7 | 4102 if (n == cap->count1) |
4103 beep_flush(); | |
4104 } | |
4105 else | |
4106 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
4107 if (!LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 4108 cap->oap->inclusive = TRUE; |
4109 } | |
4110 break; | |
4111 } | |
5735 | 4112 else if (past_line) |
7 | 4113 { |
4114 curwin->w_set_curswant = TRUE; | |
4115 if (virtual_active()) | |
4116 oneright(); | |
4117 else | |
5735 | 4118 { |
7 | 4119 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
|
4120 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor()); |
7 | 4121 else |
4122 ++curwin->w_cursor.col; | |
4123 } | |
4124 } | |
4125 } | |
4126 #ifdef FEAT_FOLDING | |
4127 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped | |
4128 && cap->oap->op_type == OP_NOP) | |
4129 foldOpenCursor(); | |
4130 #endif | |
4131 } | |
4132 | |
4133 /* | |
4134 * Cursor left commands. | |
4135 * | |
4136 * Returns TRUE when operator end should not be adjusted. | |
4137 */ | |
4138 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4139 nv_left(cmdarg_T *cap) |
7 | 4140 { |
4141 long n; | |
4142 | |
180 | 4143 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) |
4144 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4145 // <C-Left> and <S-Left> move a word or WORD left |
180 | 4146 if (mod_mask & MOD_MASK_CTRL) |
4147 cap->arg = 1; | |
4148 nv_bck_word(cap); | |
4149 return; | |
4150 } | |
4151 | |
7 | 4152 cap->oap->motion_type = MCHAR; |
4153 cap->oap->inclusive = FALSE; | |
4154 for (n = cap->count1; n > 0; --n) | |
4155 { | |
4156 if (oneleft() == FAIL) | |
4157 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4158 // <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
|
4159 // '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
|
4160 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'. |
7 | 4161 if ( (((cap->cmdchar == K_BS |
4162 || cap->cmdchar == Ctrl_H) | |
4163 && vim_strchr(p_ww, 'b') != NULL) | |
4164 || (cap->cmdchar == 'h' | |
4165 && vim_strchr(p_ww, 'h') != NULL) | |
229 | 4166 || (cap->cmdchar == K_LEFT |
7 | 4167 && vim_strchr(p_ww, '<') != NULL)) |
4168 && curwin->w_cursor.lnum > 1) | |
4169 { | |
4170 --(curwin->w_cursor.lnum); | |
4171 coladvance((colnr_T)MAXCOL); | |
4172 curwin->w_set_curswant = TRUE; | |
4173 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4174 // 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
|
4175 // 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
|
4176 // 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
|
4177 // Don't adjust op_end now, otherwise it won't work. |
7 | 4178 if ( (cap->oap->op_type == OP_DELETE |
4179 || 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
|
4180 && !LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 4181 { |
5682 | 4182 char_u *cp = ml_get_cursor(); |
4183 | |
4184 if (*cp != NUL) | |
4185 { | |
4186 if (has_mbyte) | |
4187 curwin->w_cursor.col += (*mb_ptr2len)(cp); | |
4188 else | |
4189 ++curwin->w_cursor.col; | |
4190 } | |
7 | 4191 cap->retval |= CA_NO_ADJ_OP_END; |
4192 } | |
4193 continue; | |
4194 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4195 // Only beep and flush if not moved at all |
7 | 4196 else if (cap->oap->op_type == OP_NOP && n == cap->count1) |
4197 beep_flush(); | |
4198 break; | |
4199 } | |
4200 } | |
4201 #ifdef FEAT_FOLDING | |
4202 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped | |
4203 && cap->oap->op_type == OP_NOP) | |
4204 foldOpenCursor(); | |
4205 #endif | |
4206 } | |
4207 | |
4208 /* | |
4209 * Cursor up commands. | |
4210 * cap->arg is TRUE for "-": Move cursor to first non-blank. | |
4211 */ | |
4212 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4213 nv_up(cmdarg_T *cap) |
7 | 4214 { |
180 | 4215 if (mod_mask & MOD_MASK_SHIFT) |
4216 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4217 // <S-Up> is page up |
180 | 4218 cap->arg = BACKWARD; |
4219 nv_page(cap); | |
4220 } | |
4221 else | |
4222 { | |
4223 cap->oap->motion_type = MLINE; | |
4224 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) | |
4225 clearopbeep(cap->oap); | |
4226 else if (cap->arg) | |
4227 beginline(BL_WHITE | BL_FIX); | |
4228 } | |
7 | 4229 } |
4230 | |
4231 /* | |
4232 * Cursor down commands. | |
4233 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank. | |
4234 */ | |
4235 static void | |
10192
758f3d5a463d
commit https://github.com/vim/vim/commit/1b010058235fb803c1d4f42a02d2883921be8ef4
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
4236 nv_down(cmdarg_T *cap) |
7 | 4237 { |
180 | 4238 if (mod_mask & MOD_MASK_SHIFT) |
4239 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4240 // <S-Down> is page down |
180 | 4241 cap->arg = FORWARD; |
4242 nv_page(cap); | |
4243 } | |
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
|
4244 #if defined(FEAT_QUICKFIX) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4245 // 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
|
4246 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
|
4247 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
|
4248 #endif |
180 | 4249 else |
7 | 4250 { |
4251 #ifdef FEAT_CMDWIN | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4252 // In the cmdline window a <CR> executes the command. |
170 | 4253 if (cmdwin_type != 0 && cap->cmdchar == CAR) |
7 | 4254 cmdwin_result = CAR; |
4255 else | |
4256 #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
|
4257 #ifdef FEAT_JOB_CHANNEL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4258 // 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
|
4259 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
|
4260 && 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
|
4261 { |
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 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
|
4263 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
|
4264 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
|
4265 } |
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 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
|
4267 #endif |
7 | 4268 { |
4269 cap->oap->motion_type = MLINE; | |
4270 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) | |
4271 clearopbeep(cap->oap); | |
4272 else if (cap->arg) | |
4273 beginline(BL_WHITE | BL_FIX); | |
4274 } | |
4275 } | |
4276 } | |
4277 | |
4278 #ifdef FEAT_SEARCHPATH | |
4279 /* | |
4280 * Grab the file name under the cursor and edit it. | |
4281 */ | |
4282 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4283 nv_gotofile(cmdarg_T *cap) |
7 | 4284 { |
4285 char_u *ptr; | |
681 | 4286 linenr_T lnum = -1; |
7 | 4287 |
633 | 4288 if (text_locked()) |
7 | 4289 { |
4290 clearopbeep(cap->oap); | |
633 | 4291 text_locked_msg(); |
7 | 4292 return; |
4293 } | |
819 | 4294 if (curbuf_locked()) |
4295 { | |
4296 clearop(cap->oap); | |
4297 return; | |
4298 } | |
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
|
4299 #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
|
4300 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
|
4301 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
|
4302 #endif |
7 | 4303 |
681 | 4304 ptr = grab_file_name(cap->count1, &lnum); |
7 | 4305 |
4306 if (ptr != NULL) | |
4307 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4308 // 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
|
4309 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf)) |
7009 | 4310 (void)autowrite(curbuf, FALSE); |
7 | 4311 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
|
4312 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
|
4313 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
|
4314 && cap->nchar == 'F' && lnum >= 0) |
681 | 4315 { |
4316 curwin->w_cursor.lnum = lnum; | |
4317 check_cursor_lnum(); | |
4318 beginline(BL_SOL | BL_FIX); | |
4319 } | |
7 | 4320 vim_free(ptr); |
4321 } | |
4322 else | |
4323 clearop(cap->oap); | |
4324 } | |
4325 #endif | |
4326 | |
4327 /* | |
4328 * <End> command: to end of current line or last line. | |
4329 */ | |
4330 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4331 nv_end(cmdarg_T *cap) |
7 | 4332 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4333 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line |
180 | 4334 { |
4335 cap->arg = TRUE; | |
7 | 4336 nv_goto(cap); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4337 cap->count1 = 1; // to end of current line |
7 | 4338 } |
4339 nv_dollar(cap); | |
4340 } | |
4341 | |
4342 /* | |
4343 * Handle the "$" command. | |
4344 */ | |
4345 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4346 nv_dollar(cmdarg_T *cap) |
7 | 4347 { |
4348 cap->oap->motion_type = MCHAR; | |
4349 cap->oap->inclusive = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4350 // 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
|
4351 // 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
|
4352 // Otherwise, send it to the end of the line. |
7 | 4353 if (!virtual_active() || gchar_cursor() != NUL |
4354 || 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
|
4355 curwin->w_curswant = MAXCOL; // so we stay at the end |
7 | 4356 if (cursor_down((long)(cap->count1 - 1), |
4357 cap->oap->op_type == OP_NOP) == FAIL) | |
4358 clearopbeep(cap->oap); | |
4359 #ifdef FEAT_FOLDING | |
4360 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4361 foldOpenCursor(); | |
4362 #endif | |
4363 } | |
4364 | |
4365 /* | |
4366 * Implementation of '?' and '/' commands. | |
4367 * If cap->arg is TRUE don't set PC mark. | |
4368 */ | |
4369 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4370 nv_search(cmdarg_T *cap) |
7 | 4371 { |
4372 oparg_T *oap = cap->oap; | |
10098
72e4b7f90465
commit https://github.com/vim/vim/commit/dda933d06c06c2792bd686d059f6ad19191ad30b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4373 pos_T save_cursor = curwin->w_cursor; |
7 | 4374 |
4375 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13) | |
4376 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4377 // Translate "g??" to "g?g?" |
7 | 4378 cap->cmdchar = 'g'; |
4379 cap->nchar = '?'; | |
4380 nv_operator(cap); | |
4381 return; | |
4382 } | |
4383 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4384 // 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
|
4385 // start position. |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
4386 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE); |
7 | 4387 |
4388 if (cap->searchbuf == NULL) | |
4389 { | |
4390 clearop(oap); | |
4391 return; | |
4392 } | |
4393 | |
6620 | 4394 (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
|
4395 (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
|
4396 ? 0 : SEARCH_MARK, NULL); |
7 | 4397 } |
4398 | |
4399 /* | |
4400 * Handle "N" and "n" commands. | |
4401 * cap->arg is SEARCH_REV for "N", 0 for "n". | |
4402 */ | |
4403 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4404 nv_next(cmdarg_T *cap) |
7 | 4405 { |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4406 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
|
4407 int wrapped = FALSE; |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4408 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
|
4409 |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4410 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor)) |
6620 | 4411 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4412 // 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
|
4413 // 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
|
4414 // in the buffer: Repeat with count + 1. |
6620 | 4415 cap->count1 += 1; |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4416 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL); |
6620 | 4417 cap->count1 -= 1; |
4418 } | |
7 | 4419 } |
4420 | |
4421 /* | |
4422 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat). | |
4423 * Uses only cap->count1 and cap->oap from "cap". | |
6620 | 4424 * Return 0 for failure, 1 for found, 2 for found and line offset added. |
4425 */ | |
4426 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4427 normal_search( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4428 cmdarg_T *cap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4429 int dir, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4430 char_u *pat, |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4431 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
|
4432 int *wrapped) |
7 | 4433 { |
4434 int i; | |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4435 searchit_arg_T sia; |
7 | 4436 |
4437 cap->oap->motion_type = MCHAR; | |
4438 cap->oap->inclusive = FALSE; | |
4439 cap->oap->use_reg_one = TRUE; | |
4440 curwin->w_set_curswant = TRUE; | |
4441 | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
4442 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
|
4443 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
|
4444 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
|
4445 if (wrapped != NULL) |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4446 *wrapped = sia.sa_wrapped; |
7 | 4447 if (i == 0) |
4448 clearop(cap->oap); | |
4449 else | |
4450 { | |
4451 if (i == 2) | |
4452 cap->oap->motion_type = MLINE; | |
4453 curwin->w_cursor.coladd = 0; | |
4454 #ifdef FEAT_FOLDING | |
4455 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) | |
4456 foldOpenCursor(); | |
4457 #endif | |
4458 } | |
4459 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4460 // "/$" 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
|
4461 // correct that here |
7 | 4462 check_cursor(); |
6620 | 4463 return i; |
7 | 4464 } |
4465 | |
4466 /* | |
4467 * Character search commands. | |
4468 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for | |
4469 * ',' and FALSE for ';'. | |
4470 * cap->nchar is NUL for ',' and ';' (repeat the search) | |
4471 */ | |
4472 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4473 nv_csearch(cmdarg_T *cap) |
7 | 4474 { |
4475 int t_cmd; | |
4476 | |
4477 if (cap->cmdchar == 't' || cap->cmdchar == 'T') | |
4478 t_cmd = TRUE; | |
4479 else | |
4480 t_cmd = FALSE; | |
4481 | |
4482 cap->oap->motion_type = MCHAR; | |
4483 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL) | |
4484 clearopbeep(cap->oap); | |
4485 else | |
4486 { | |
4487 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
|
4488 // Include a Tab for "tx" and for "dfx". |
7 | 4489 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD |
4490 && (t_cmd || cap->oap->op_type != OP_NOP)) | |
4491 { | |
4492 colnr_T scol, ecol; | |
4493 | |
4494 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol); | |
4495 curwin->w_cursor.coladd = ecol - scol; | |
4496 } | |
4497 else | |
4498 curwin->w_cursor.coladd = 0; | |
4499 adjust_for_sel(cap); | |
4500 #ifdef FEAT_FOLDING | |
4501 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4502 foldOpenCursor(); | |
4503 #endif | |
4504 } | |
4505 } | |
4506 | |
4507 /* | |
4508 * "[" and "]" commands. | |
4509 * cap->arg is BACKWARD for "[" and FORWARD for "]". | |
4510 */ | |
4511 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4512 nv_brackets(cmdarg_T *cap) |
7 | 4513 { |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4514 pos_T new_pos = {0, 0, 0}; |
7 | 4515 pos_T prev_pos; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4516 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
|
4517 pos_T old_pos; // cursor position before command |
7 | 4518 int flag; |
4519 long n; | |
4520 int findc; | |
4521 int c; | |
4522 | |
4523 cap->oap->motion_type = MCHAR; | |
4524 cap->oap->inclusive = FALSE; | |
4525 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
|
4526 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error. |
7 | 4527 |
4528 #ifdef FEAT_SEARCHPATH | |
4529 /* | |
4530 * "[f" or "]f" : Edit file under the cursor (same as "gf") | |
4531 */ | |
4532 if (cap->nchar == 'f') | |
4533 nv_gotofile(cap); | |
4534 else | |
4535 #endif | |
4536 | |
4537 #ifdef FEAT_FIND_ID | |
4538 /* | |
1188 | 4539 * Find the occurrence(s) of the identifier or define under cursor |
4540 * in current and included files or jump to the first occurrence. | |
7 | 4541 * |
4542 * search list jump | |
4543 * fwd bwd fwd bwd fwd bwd | |
4544 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I" | |
4545 * define "]d" "[d" "]D" "[D" "]^D" "[^D" | |
4546 */ | |
4547 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
|
4548 # ifdef EBCDIC |
7 | 4549 "iI\005dD\067", |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4550 # else |
7 | 4551 "iI\011dD\004", |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4552 # endif |
7 | 4553 cap->nchar) != NULL) |
4554 { | |
4555 char_u *ptr; | |
4556 int len; | |
4557 | |
4558 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) | |
4559 clearop(cap->oap); | |
4560 else | |
4561 { | |
4562 find_pattern_in_path(ptr, 0, len, TRUE, | |
4563 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE, | |
4564 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY, | |
4565 cap->count1, | |
4566 isupper(cap->nchar) ? ACTION_SHOW_ALL : | |
4567 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO, | |
4568 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1, | |
4569 (linenr_T)MAXLNUM); | |
4570 curwin->w_set_curswant = TRUE; | |
4571 } | |
4572 } | |
4573 else | |
4574 #endif | |
4575 | |
4576 /* | |
4577 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')' | |
4578 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct. | |
4579 * "[/", "[*", "]/", "]*": go to Nth comment start/end. | |
4580 * "[m" or "]m" search for prev/next start of (Java) method. | |
4581 * "[M" or "]M" search for prev/next end of (Java) method. | |
4582 */ | |
4583 if ( (cap->cmdchar == '[' | |
4584 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL) | |
4585 || (cap->cmdchar == ']' | |
4586 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL)) | |
4587 { | |
4588 if (cap->nchar == '*') | |
4589 cap->nchar = '/'; | |
4590 prev_pos.lnum = 0; | |
4591 if (cap->nchar == 'm' || cap->nchar == 'M') | |
4592 { | |
4593 if (cap->cmdchar == '[') | |
4594 findc = '{'; | |
4595 else | |
4596 findc = '}'; | |
4597 n = 9999; | |
4598 } | |
4599 else | |
4600 { | |
4601 findc = cap->nchar; | |
4602 n = cap->count1; | |
4603 } | |
4604 for ( ; n > 0; --n) | |
4605 { | |
4606 if ((pos = findmatchlimit(cap->oap, findc, | |
4607 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL) | |
4608 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4609 if (new_pos.lnum == 0) // nothing found |
7 | 4610 { |
4611 if (cap->nchar != 'm' && cap->nchar != 'M') | |
4612 clearopbeep(cap->oap); | |
4613 } | |
4614 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4615 pos = &new_pos; // use last one found |
7 | 4616 break; |
4617 } | |
4618 prev_pos = new_pos; | |
4619 curwin->w_cursor = *pos; | |
4620 new_pos = *pos; | |
4621 } | |
4622 curwin->w_cursor = old_pos; | |
4623 | |
4624 /* | |
4625 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only | |
4626 * brought us to the match for "[m" and "]M" when inside a method. | |
4627 * Try finding the '{' or '}' we want to be at. | |
4628 * Also repeat for the given count. | |
4629 */ | |
4630 if (cap->nchar == 'm' || cap->nchar == 'M') | |
4631 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4632 // norm is TRUE for "]M" and "[m" |
7 | 4633 int norm = ((findc == '{') == (cap->nchar == 'm')); |
4634 | |
4635 n = cap->count1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4636 // found a match: we were inside a method |
7 | 4637 if (prev_pos.lnum != 0) |
4638 { | |
4639 pos = &prev_pos; | |
4640 curwin->w_cursor = prev_pos; | |
4641 if (norm) | |
4642 --n; | |
4643 } | |
4644 else | |
4645 pos = NULL; | |
4646 while (n > 0) | |
4647 { | |
4648 for (;;) | |
4649 { | |
4650 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0) | |
4651 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4652 // if not found anything, that's an error |
7 | 4653 if (pos == NULL) |
4654 clearopbeep(cap->oap); | |
4655 n = 0; | |
4656 break; | |
4657 } | |
4658 c = gchar_cursor(); | |
4659 if (c == '{' || c == '}') | |
4660 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4661 // 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
|
4662 // Or found the place to be at. |
7 | 4663 if ((c == findc && norm) || (n == 1 && !norm)) |
4664 { | |
4665 new_pos = curwin->w_cursor; | |
4666 pos = &new_pos; | |
4667 n = 0; | |
4668 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4669 // 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
|
4670 // class and we're inside now. Just go on. |
7 | 4671 else if (new_pos.lnum == 0) |
4672 { | |
4673 new_pos = curwin->w_cursor; | |
4674 pos = &new_pos; | |
4675 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4676 // found start/end of other method: go to match |
7 | 4677 else if ((pos = findmatchlimit(cap->oap, findc, |
4678 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, | |
4679 0)) == NULL) | |
4680 n = 0; | |
4681 else | |
4682 curwin->w_cursor = *pos; | |
4683 break; | |
4684 } | |
4685 } | |
4686 --n; | |
4687 } | |
4688 curwin->w_cursor = old_pos; | |
4689 if (pos == NULL && new_pos.lnum != 0) | |
4690 clearopbeep(cap->oap); | |
4691 } | |
4692 if (pos != NULL) | |
4693 { | |
4694 setpcmark(); | |
4695 curwin->w_cursor = *pos; | |
4696 curwin->w_set_curswant = TRUE; | |
4697 #ifdef FEAT_FOLDING | |
4698 if ((fdo_flags & FDO_BLOCK) && KeyTyped | |
4699 && cap->oap->op_type == OP_NOP) | |
4700 foldOpenCursor(); | |
4701 #endif | |
4702 } | |
4703 } | |
4704 | |
4705 /* | |
4706 * "[[", "[]", "]]" and "][": move to start or end of function | |
4707 */ | |
4708 else if (cap->nchar == '[' || cap->nchar == ']') | |
4709 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4710 if (cap->nchar == cap->cmdchar) // "]]" or "[[" |
7 | 4711 flag = '{'; |
4712 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4713 flag = '}'; // "][" or "[]" |
7 | 4714 |
4715 curwin->w_set_curswant = TRUE; | |
4716 /* | |
4717 * Imitate strange Vi behaviour: When using "]]" with an operator | |
4718 * we also stop at '}'. | |
4719 */ | |
503 | 4720 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag, |
7 | 4721 (cap->oap->op_type != OP_NOP |
4722 && cap->arg == FORWARD && flag == '{'))) | |
4723 clearopbeep(cap->oap); | |
4724 else | |
4725 { | |
4726 if (cap->oap->op_type == OP_NOP) | |
4727 beginline(BL_WHITE | BL_FIX); | |
4728 #ifdef FEAT_FOLDING | |
4729 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4730 foldOpenCursor(); | |
4731 #endif | |
4732 } | |
4733 } | |
4734 | |
4735 /* | |
4736 * "[p", "[P", "]P" and "]p": put with indent adjustment | |
4737 */ | |
4738 else if (cap->nchar == 'p' || cap->nchar == 'P') | |
4739 { | |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
4740 nv_put_opt(cap, TRUE); |
7 | 4741 } |
4742 | |
4743 /* | |
4744 * "['", "[`", "]'" and "]`": jump to next mark | |
4745 */ | |
4746 else if (cap->nchar == '\'' || cap->nchar == '`') | |
4747 { | |
4748 pos = &curwin->w_cursor; | |
4749 for (n = cap->count1; n > 0; --n) | |
4750 { | |
4751 prev_pos = *pos; | |
4752 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD, | |
4753 cap->nchar == '\''); | |
4754 if (pos == NULL) | |
4755 break; | |
4756 } | |
4757 if (pos == NULL) | |
4758 pos = &prev_pos; | |
4759 nv_cursormark(cap, cap->nchar == '\'', pos); | |
4760 } | |
4761 | |
4762 /* | |
4763 * [ or ] followed by a middle mouse click: put selected text with | |
4764 * indent adjustment. Any other button just does as usual. | |
4765 */ | |
2130
279380a812ad
updated for version 7.2.412
Bram Moolenaar <bram@zimbu.org>
parents:
2112
diff
changeset
|
4766 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE) |
7 | 4767 { |
4768 (void)do_mouse(cap->oap, cap->nchar, | |
4769 (cap->cmdchar == ']') ? FORWARD : BACKWARD, | |
4770 cap->count1, PUT_FIXINDENT); | |
4771 } | |
4772 | |
4773 #ifdef FEAT_FOLDING | |
4774 /* | |
4775 * "[z" and "]z": move to start or end of open fold. | |
4776 */ | |
4777 else if (cap->nchar == 'z') | |
4778 { | |
4779 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD, | |
4780 cap->count1) == FAIL) | |
4781 clearopbeep(cap->oap); | |
4782 } | |
4783 #endif | |
4784 | |
4785 #ifdef FEAT_DIFF | |
4786 /* | |
4787 * "[c" and "]c": move to next or previous diff-change. | |
4788 */ | |
4789 else if (cap->nchar == 'c') | |
4790 { | |
4791 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD, | |
4792 cap->count1) == FAIL) | |
4793 clearopbeep(cap->oap); | |
4794 } | |
4795 #endif | |
4796 | |
737 | 4797 #ifdef FEAT_SPELL |
236 | 4798 /* |
4799 * "[s", "[S", "]s" and "]S": move to next spell error. | |
4800 */ | |
4801 else if (cap->nchar == 's' || cap->nchar == 'S') | |
4802 { | |
249 | 4803 setpcmark(); |
4804 for (n = 0; n < cap->count1; ++n) | |
498 | 4805 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD, |
4806 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0) | |
249 | 4807 { |
4808 clearopbeep(cap->oap); | |
4809 break; | |
4810 } | |
13088
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
4811 else |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
4812 curwin->w_set_curswant = TRUE; |
819 | 4813 # ifdef FEAT_FOLDING |
4814 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) | |
4815 foldOpenCursor(); | |
4816 # endif | |
236 | 4817 } |
4818 #endif | |
4819 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4820 // Not a valid cap->nchar. |
7 | 4821 else |
4822 clearopbeep(cap->oap); | |
4823 } | |
4824 | |
4825 /* | |
4826 * Handle Normal mode "%" command. | |
4827 */ | |
4828 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4829 nv_percent(cmdarg_T *cap) |
7 | 4830 { |
4831 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
|
4832 #if defined(FEAT_FOLDING) |
7 | 4833 linenr_T lnum = curwin->w_cursor.lnum; |
4834 #endif | |
4835 | |
4836 cap->oap->inclusive = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4837 if (cap->count0) // {cnt}% : goto {cnt} percentage in file |
7 | 4838 { |
4839 if (cap->count0 > 100) | |
4840 clearopbeep(cap->oap); | |
4841 else | |
4842 { | |
4843 cap->oap->motion_type = MLINE; | |
4844 setpcmark(); | |
24010
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4845 // 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
|
4846 // 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
|
4847 // 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
|
4848 // to avoid overflows. |
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4849 if (curbuf->b_ml.ml_line_count >= 21474836) |
7 | 4850 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L) |
4851 / 100L * cap->count0; | |
4852 else | |
4853 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count * | |
4854 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
|
4855 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
|
4856 curwin->w_cursor.lnum = 1; |
7 | 4857 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
4858 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4859 beginline(BL_SOL | BL_FIX); | |
4860 } | |
4861 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4862 else // "%" : go to matching paren |
7 | 4863 { |
4864 cap->oap->motion_type = MCHAR; | |
4865 cap->oap->use_reg_one = TRUE; | |
4866 if ((pos = findmatch(cap->oap, NUL)) == NULL) | |
4867 clearopbeep(cap->oap); | |
4868 else | |
4869 { | |
4870 setpcmark(); | |
4871 curwin->w_cursor = *pos; | |
4872 curwin->w_set_curswant = TRUE; | |
4873 curwin->w_cursor.coladd = 0; | |
4874 adjust_for_sel(cap); | |
4875 } | |
4876 } | |
4877 #ifdef FEAT_FOLDING | |
4878 if (cap->oap->op_type == OP_NOP | |
4879 && lnum != curwin->w_cursor.lnum | |
4880 && (fdo_flags & FDO_PERCENT) | |
4881 && KeyTyped) | |
4882 foldOpenCursor(); | |
4883 #endif | |
4884 } | |
4885 | |
4886 /* | |
4887 * Handle "(" and ")" commands. | |
4888 * cap->arg is BACKWARD for "(" and FORWARD for ")". | |
4889 */ | |
4890 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4891 nv_brace(cmdarg_T *cap) |
7 | 4892 { |
4893 cap->oap->motion_type = MCHAR; | |
4894 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
|
4895 // The motion used to be inclusive for "(", but that is not what Vi does. |
620 | 4896 cap->oap->inclusive = FALSE; |
7 | 4897 curwin->w_set_curswant = TRUE; |
4898 | |
4899 if (findsent(cap->arg, cap->count1) == FAIL) | |
4900 clearopbeep(cap->oap); | |
4901 else | |
4902 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4903 // Don't leave the cursor on the NUL past end of line. |
1505 | 4904 adjust_cursor(cap->oap); |
7 | 4905 curwin->w_cursor.coladd = 0; |
4906 #ifdef FEAT_FOLDING | |
4907 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4908 foldOpenCursor(); | |
4909 #endif | |
4910 } | |
4911 } | |
4912 | |
4913 /* | |
4914 * "m" command: Mark a position. | |
4915 */ | |
4916 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4917 nv_mark(cmdarg_T *cap) |
7 | 4918 { |
4919 if (!checkclearop(cap->oap)) | |
4920 { | |
4921 if (setmark(cap->nchar) == FAIL) | |
4922 clearopbeep(cap->oap); | |
4923 } | |
4924 } | |
4925 | |
4926 /* | |
4927 * "{" and "}" commands. | |
4928 * cmd->arg is BACKWARD for "{" and FORWARD for "}". | |
4929 */ | |
4930 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4931 nv_findpar(cmdarg_T *cap) |
7 | 4932 { |
4933 cap->oap->motion_type = MCHAR; | |
4934 cap->oap->inclusive = FALSE; | |
4935 cap->oap->use_reg_one = TRUE; | |
4936 curwin->w_set_curswant = TRUE; | |
503 | 4937 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE)) |
7 | 4938 clearopbeep(cap->oap); |
4939 else | |
4940 { | |
4941 curwin->w_cursor.coladd = 0; | |
4942 #ifdef FEAT_FOLDING | |
4943 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4944 foldOpenCursor(); | |
4945 #endif | |
4946 } | |
4947 } | |
4948 | |
4949 /* | |
4950 * "u" command: Undo or make lower case. | |
4951 */ | |
4952 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4953 nv_undo(cmdarg_T *cap) |
7 | 4954 { |
5735 | 4955 if (cap->oap->op_type == OP_LOWER || VIsual_active) |
7 | 4956 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4957 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" |
7 | 4958 cap->cmdchar = 'g'; |
4959 cap->nchar = 'u'; | |
4960 nv_operator(cap); | |
4961 } | |
4962 else | |
4963 nv_kundo(cap); | |
4964 } | |
4965 | |
4966 /* | |
4967 * <Undo> command. | |
4968 */ | |
4969 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4970 nv_kundo(cmdarg_T *cap) |
7 | 4971 { |
4972 if (!checkclearopq(cap->oap)) | |
4973 { | |
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
|
4974 #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
|
4975 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
|
4976 { |
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
|
4977 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
|
4978 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
|
4979 } |
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 #endif |
7 | 4981 u_undo((int)cap->count1); |
4982 curwin->w_set_curswant = TRUE; | |
4983 } | |
4984 } | |
4985 | |
4986 /* | |
4987 * Handle the "r" command. | |
4988 */ | |
4989 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4990 nv_replace(cmdarg_T *cap) |
7 | 4991 { |
4992 char_u *ptr; | |
4993 int had_ctrl_v; | |
4994 long n; | |
4995 | |
4996 if (checkclearop(cap->oap)) | |
4997 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
|
4998 #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
|
4999 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
|
5000 { |
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
|
5001 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
|
5002 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
|
5003 } |
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 #endif |
7 | 5005 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5006 // get another character |
7 | 5007 if (cap->nchar == Ctrl_V) |
5008 { | |
5009 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
|
5010 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
|
5011 // Don't redo a multibyte character with CTRL-V. |
7 | 5012 if (cap->nchar > DEL) |
5013 had_ctrl_v = NUL; | |
5014 } | |
5015 else | |
5016 had_ctrl_v = NUL; | |
5017 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5018 // Abort if the character is a special key. |
1343 | 5019 if (IS_SPECIAL(cap->nchar)) |
5020 { | |
5021 clearopbeep(cap->oap); | |
5022 return; | |
5023 } | |
5024 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5025 // Visual mode "r" |
7 | 5026 if (VIsual_active) |
5027 { | |
1797 | 5028 if (got_int) |
5029 reset_VIsual(); | |
5428 | 5030 if (had_ctrl_v) |
5031 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5032 // 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
|
5033 // 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
|
5034 if (cap->nchar == CAR) |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
5035 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
|
5036 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
|
5037 cap->nchar = REPLACE_NL_NCHAR; |
5428 | 5038 } |
7 | 5039 nv_operator(cap); |
5040 return; | |
5041 } | |
5042 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5043 // Break tabs, etc. |
7 | 5044 if (virtual_active()) |
5045 { | |
5046 if (u_save_cursor() == FAIL) | |
5047 return; | |
5048 if (gchar_cursor() == NUL) | |
5049 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5050 // Add extra space and put the cursor on the first one. |
7 | 5051 coladvance_force((colnr_T)(getviscol() + cap->count1)); |
5052 curwin->w_cursor.col -= cap->count1; | |
5053 } | |
5054 else if (gchar_cursor() == TAB) | |
5055 coladvance_force(getviscol()); | |
5056 } | |
5057 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5058 // Abort if not enough characters to replace. |
7 | 5059 ptr = ml_get_cursor(); |
1343 | 5060 if (STRLEN(ptr) < (unsigned)cap->count1 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
5061 || (has_mbyte && mb_charlen(ptr) < cap->count1)) |
7 | 5062 { |
5063 clearopbeep(cap->oap); | |
5064 return; | |
5065 } | |
5066 | |
5067 /* | |
5068 * Replacing with a TAB is done by edit() when it is complicated because | |
5069 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB. | |
5070 * Other characters are done below to avoid problems with things like | |
5071 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC). | |
5072 */ | |
5073 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta)) | |
5074 { | |
5075 stuffnumReadbuff(cap->count1); | |
5076 stuffcharReadbuff('R'); | |
5077 stuffcharReadbuff('\t'); | |
5078 stuffcharReadbuff(ESC); | |
5079 return; | |
5080 } | |
5081 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5082 // save line for undo |
7 | 5083 if (u_save_cursor() == FAIL) |
5084 return; | |
5085 | |
5086 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n')) | |
5087 { | |
5088 /* | |
5089 * Replace character(s) by a single newline. | |
5090 * Strange vi behaviour: Only one newline is inserted. | |
5091 * Delete the characters here. | |
5092 * Insert the newline with an insert command, takes care of | |
5093 * autoindent. The insert command depends on being on the last | |
5094 * character of a line or not. | |
5095 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5096 (void)del_chars(cap->count1, FALSE); // delete the characters |
7 | 5097 stuffcharReadbuff('\r'); |
5098 stuffcharReadbuff(ESC); | |
5099 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5100 // Give 'r' to edit(), to get the redo command right. |
7 | 5101 invoke_edit(cap, TRUE, 'r', FALSE); |
5102 } | |
5103 else | |
5104 { | |
5105 prep_redo(cap->oap->regname, cap->count1, | |
5106 NUL, 'r', NUL, had_ctrl_v, cap->nchar); | |
5107 | |
5108 curbuf->b_op_start = curwin->w_cursor; | |
5109 if (has_mbyte) | |
5110 { | |
5111 int old_State = State; | |
5112 | |
5113 if (cap->ncharC1 != 0) | |
5114 AppendCharToRedobuff(cap->ncharC1); | |
5115 if (cap->ncharC2 != 0) | |
5116 AppendCharToRedobuff(cap->ncharC2); | |
5117 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5118 // 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
|
5119 // 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
|
5120 // composing characters for utf-8. |
7 | 5121 for (n = cap->count1; n > 0; --n) |
5122 { | |
5123 State = REPLACE; | |
3501 | 5124 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) |
5125 { | |
5126 int c = ins_copychar(curwin->w_cursor.lnum | |
5127 + (cap->nchar == Ctrl_Y ? -1 : 1)); | |
5128 if (c != NUL) | |
5129 ins_char(c); | |
5130 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5131 // will be decremented further down |
3501 | 5132 ++curwin->w_cursor.col; |
5133 } | |
5134 else | |
5135 ins_char(cap->nchar); | |
7 | 5136 State = old_State; |
5137 if (cap->ncharC1 != 0) | |
5138 ins_char(cap->ncharC1); | |
5139 if (cap->ncharC2 != 0) | |
5140 ins_char(cap->ncharC2); | |
5141 } | |
5142 } | |
5143 else | |
5144 { | |
5145 /* | |
5146 * Replace the characters within one line. | |
5147 */ | |
5148 for (n = cap->count1; n > 0; --n) | |
5149 { | |
5150 /* | |
5151 * 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
|
5152 * 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
|
5153 * At the same time we let know that the line will be changed. |
7 | 5154 */ |
3501 | 5155 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) |
5156 { | |
5157 int c = ins_copychar(curwin->w_cursor.lnum | |
5158 + (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
|
5159 |
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5160 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE); |
3501 | 5161 if (c != NUL) |
5162 ptr[curwin->w_cursor.col] = c; | |
5163 } | |
5164 else | |
25786
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5165 { |
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
5166 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE); |
3501 | 5167 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
|
5168 } |
7 | 5169 if (p_sm && msg_silent == 0) |
5170 showmatch(cap->nchar); | |
5171 ++curwin->w_cursor.col; | |
5172 } | |
5173 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5174 if (netbeans_active()) |
7 | 5175 { |
2210 | 5176 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1); |
7 | 5177 |
33 | 5178 netbeans_removed(curbuf, curwin->w_cursor.lnum, start, |
2210 | 5179 (long)cap->count1); |
7 | 5180 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start, |
33 | 5181 &ptr[start], (int)cap->count1); |
7 | 5182 } |
5183 #endif | |
5184 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5185 // mark the buffer as changed and prepare for displaying |
7 | 5186 changed_bytes(curwin->w_cursor.lnum, |
5187 (colnr_T)(curwin->w_cursor.col - cap->count1)); | |
5188 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5189 --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
|
5190 // 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
|
5191 // character, move two characters left |
7 | 5192 if (has_mbyte) |
5193 mb_adjust_cursor(); | |
5194 curbuf->b_op_end = curwin->w_cursor; | |
5195 curwin->w_set_curswant = TRUE; | |
5196 set_last_insert(cap->nchar); | |
5197 } | |
5198 } | |
5199 | |
5200 /* | |
5201 * 'o': Exchange start and end of Visual area. | |
5202 * 'O': same, but in block mode exchange left and right corners. | |
5203 */ | |
5204 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5205 v_swap_corners(int cmdchar) |
7 | 5206 { |
5207 pos_T old_cursor; | |
5208 colnr_T left, right; | |
5209 | |
5210 if (cmdchar == 'O' && VIsual_mode == Ctrl_V) | |
5211 { | |
5212 old_cursor = curwin->w_cursor; | |
5213 getvcols(curwin, &old_cursor, &VIsual, &left, &right); | |
5214 curwin->w_cursor.lnum = VIsual.lnum; | |
5215 coladvance(left); | |
5216 VIsual = curwin->w_cursor; | |
5217 | |
5218 curwin->w_cursor.lnum = old_cursor.lnum; | |
5219 curwin->w_curswant = right; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5220 // '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
|
5221 // right one column |
7 | 5222 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e') |
5223 ++curwin->w_curswant; | |
5224 coladvance(curwin->w_curswant); | |
5225 if (curwin->w_cursor.col == old_cursor.col | |
5226 && (!virtual_active() | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5227 || curwin->w_cursor.coladd == old_cursor.coladd)) |
7 | 5228 { |
5229 curwin->w_cursor.lnum = VIsual.lnum; | |
5230 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e') | |
5231 ++right; | |
5232 coladvance(right); | |
5233 VIsual = curwin->w_cursor; | |
5234 | |
5235 curwin->w_cursor.lnum = old_cursor.lnum; | |
5236 coladvance(left); | |
5237 curwin->w_curswant = left; | |
5238 } | |
5239 } | |
5240 else | |
5241 { | |
5242 old_cursor = curwin->w_cursor; | |
5243 curwin->w_cursor = VIsual; | |
5244 VIsual = old_cursor; | |
5245 curwin->w_set_curswant = TRUE; | |
5246 } | |
5247 } | |
5248 | |
5249 /* | |
5250 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE). | |
5251 */ | |
5252 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5253 nv_Replace(cmdarg_T *cap) |
7 | 5254 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5255 if (VIsual_active) // "R" is replace lines |
7 | 5256 { |
5257 cap->cmdchar = 'c'; | |
5258 cap->nchar = NUL; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5259 VIsual_mode_orig = VIsual_mode; // remember original area for gv |
7 | 5260 VIsual_mode = 'V'; |
5261 nv_operator(cap); | |
5262 } | |
5735 | 5263 else if (!checkclearopq(cap->oap)) |
7 | 5264 { |
5265 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
|
5266 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 5267 else |
5268 { | |
5269 if (virtual_active()) | |
5270 coladvance(getviscol()); | |
5271 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE); | |
5272 } | |
5273 } | |
5274 } | |
5275 | |
5276 /* | |
5277 * "gr". | |
5278 */ | |
5279 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5280 nv_vreplace(cmdarg_T *cap) |
7 | 5281 { |
5282 if (VIsual_active) | |
5283 { | |
5284 cap->cmdchar = 'r'; | |
5285 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
|
5286 nv_replace(cap); // Do same as "r" in Visual mode for now |
7 | 5287 } |
5735 | 5288 else if (!checkclearopq(cap->oap)) |
7 | 5289 { |
5290 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
|
5291 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 5292 else |
5293 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5294 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
|
5295 cap->extra_char = get_literal(FALSE); |
7 | 5296 stuffcharReadbuff(cap->extra_char); |
5297 stuffcharReadbuff(ESC); | |
5298 if (virtual_active()) | |
5299 coladvance(getviscol()); | |
5300 invoke_edit(cap, TRUE, 'v', FALSE); | |
5301 } | |
5302 } | |
5303 } | |
5304 | |
5305 /* | |
5306 * Swap case for "~" command, when it does not work like an operator. | |
5307 */ | |
5308 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5309 n_swapchar(cmdarg_T *cap) |
7 | 5310 { |
5311 long n; | |
5312 pos_T startpos; | |
5313 int did_change = 0; | |
5314 #ifdef FEAT_NETBEANS_INTG | |
5315 pos_T pos; | |
5316 char_u *ptr; | |
5317 int count; | |
5318 #endif | |
5319 | |
5320 if (checkclearopq(cap->oap)) | |
5321 return; | |
5322 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
5323 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL) |
7 | 5324 { |
5325 clearopbeep(cap->oap); | |
5326 return; | |
5327 } | |
5328 | |
5329 prep_redo_cmd(cap); | |
5330 | |
5331 if (u_save_cursor() == FAIL) | |
5332 return; | |
5333 | |
5334 startpos = curwin->w_cursor; | |
5335 #ifdef FEAT_NETBEANS_INTG | |
5336 pos = startpos; | |
5337 #endif | |
5338 for (n = cap->count1; n > 0; --n) | |
5339 { | |
5340 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor); | |
5341 inc_cursor(); | |
5342 if (gchar_cursor() == NUL) | |
5343 { | |
5344 if (vim_strchr(p_ww, '~') != NULL | |
5345 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
5346 { | |
5347 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5348 if (netbeans_active()) |
7 | 5349 { |
5350 if (did_change) | |
5351 { | |
5352 ptr = ml_get(pos.lnum); | |
835 | 5353 count = (int)STRLEN(ptr) - pos.col; |
33 | 5354 netbeans_removed(curbuf, pos.lnum, pos.col, |
5355 (long)count); | |
7 | 5356 netbeans_inserted(curbuf, pos.lnum, pos.col, |
33 | 5357 &ptr[pos.col], count); |
7 | 5358 } |
5359 pos.col = 0; | |
5360 pos.lnum++; | |
5361 } | |
5362 #endif | |
5363 ++curwin->w_cursor.lnum; | |
5364 curwin->w_cursor.col = 0; | |
5365 if (n > 1) | |
5366 { | |
5367 if (u_savesub(curwin->w_cursor.lnum) == FAIL) | |
5368 break; | |
5369 u_clearline(); | |
5370 } | |
5371 } | |
5372 else | |
5373 break; | |
5374 } | |
5375 } | |
5376 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5377 if (did_change && netbeans_active()) |
7 | 5378 { |
5379 ptr = ml_get(pos.lnum); | |
5380 count = curwin->w_cursor.col - pos.col; | |
33 | 5381 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count); |
5382 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count); | |
7 | 5383 } |
5384 #endif | |
5385 | |
5386 | |
5387 check_cursor(); | |
5388 curwin->w_set_curswant = TRUE; | |
5389 if (did_change) | |
5390 { | |
5391 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1, | |
5392 0L); | |
5393 curbuf->b_op_start = startpos; | |
5394 curbuf->b_op_end = curwin->w_cursor; | |
5395 if (curbuf->b_op_end.col > 0) | |
5396 --curbuf->b_op_end.col; | |
5397 } | |
5398 } | |
5399 | |
5400 /* | |
5401 * Move cursor to mark. | |
5402 */ | |
5403 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5404 nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos) |
7 | 5405 { |
5406 if (check_mark(pos) == FAIL) | |
5407 clearop(cap->oap); | |
5408 else | |
5409 { | |
5410 if (cap->cmdchar == '\'' | |
5411 || cap->cmdchar == '`' | |
5412 || cap->cmdchar == '[' | |
5413 || cap->cmdchar == ']') | |
5414 setpcmark(); | |
5415 curwin->w_cursor = *pos; | |
5416 if (flag) | |
5417 beginline(BL_WHITE | BL_FIX); | |
5418 else | |
5419 check_cursor(); | |
5420 } | |
5421 cap->oap->motion_type = flag ? MLINE : MCHAR; | |
5422 if (cap->cmdchar == '`') | |
5423 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
|
5424 cap->oap->inclusive = FALSE; // ignored if not MCHAR |
7 | 5425 curwin->w_set_curswant = TRUE; |
5426 } | |
5427 | |
5428 /* | |
5429 * Handle commands that are operators in Visual mode. | |
5430 */ | |
5431 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5432 v_visop(cmdarg_T *cap) |
7 | 5433 { |
5434 static char_u trans[] = "YyDdCcxdXdAAIIrr"; | |
5435 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5436 // 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
|
5437 // the end of the line, and "C" replaces till EOL |
7 | 5438 if (isupper(cap->cmdchar)) |
5439 { | |
5440 if (VIsual_mode != Ctrl_V) | |
4213 | 5441 { |
5442 VIsual_mode_orig = VIsual_mode; | |
7 | 5443 VIsual_mode = 'V'; |
4213 | 5444 } |
7 | 5445 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D') |
5446 curwin->w_curswant = MAXCOL; | |
5447 } | |
5448 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1); | |
5449 nv_operator(cap); | |
5450 } | |
5451 | |
5452 /* | |
5453 * "s" and "S" commands. | |
5454 */ | |
5455 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5456 nv_subst(cmdarg_T *cap) |
7 | 5457 { |
13298
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5458 #ifdef FEAT_TERMINAL |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
23165
diff
changeset
|
5459 // 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
|
5460 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
|
5461 return; |
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5462 #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
|
5463 #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
|
5464 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
|
5465 { |
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
|
5466 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
|
5467 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
|
5468 } |
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 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5470 if (VIsual_active) // "vs" and "vS" are the same as "vc" |
7 | 5471 { |
5472 if (cap->cmdchar == 'S') | |
4213 | 5473 { |
5474 VIsual_mode_orig = VIsual_mode; | |
7 | 5475 VIsual_mode = 'V'; |
4213 | 5476 } |
7 | 5477 cap->cmdchar = 'c'; |
5478 nv_operator(cap); | |
5479 } | |
5480 else | |
5481 nv_optrans(cap); | |
5482 } | |
5483 | |
5484 /* | |
5485 * Abbreviated commands. | |
5486 */ | |
5487 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5488 nv_abbrev(cmdarg_T *cap) |
7 | 5489 { |
5490 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
|
5491 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
|
5492 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5493 // in Visual mode these commands are operators |
7 | 5494 if (VIsual_active) |
5495 v_visop(cap); | |
5496 else | |
5497 nv_optrans(cap); | |
5498 } | |
5499 | |
5500 /* | |
5501 * Translate a command into another command. | |
5502 */ | |
5503 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5504 nv_optrans(cmdarg_T *cap) |
7 | 5505 { |
5506 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh", | |
5507 (char_u *)"d$", (char_u *)"c$", | |
5508 (char_u *)"cl", (char_u *)"cc", | |
5509 (char_u *)"yy", (char_u *)":s\r"}; | |
5510 static char_u *str = (char_u *)"xXDCsSY&"; | |
5511 | |
5512 if (!checkclearopq(cap->oap)) | |
5513 { | |
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
|
5514 // 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
|
5515 // either, because "2." should also not use the count. |
164 | 5516 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL) |
5517 { | |
5518 cap->oap->start = curwin->w_cursor; | |
5519 cap->oap->op_type = OP_DELETE; | |
1490 | 5520 #ifdef FEAT_EVAL |
5521 set_op_var(OP_DELETE); | |
5522 #endif | |
164 | 5523 cap->count1 = 1; |
5524 nv_dollar(cap); | |
5525 finish_op = TRUE; | |
5526 ResetRedobuff(); | |
5527 AppendCharToRedobuff('D'); | |
5528 } | |
5529 else | |
5530 { | |
5531 if (cap->count0) | |
5532 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
|
5533 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]); |
164 | 5534 } |
7 | 5535 } |
5536 cap->opcount = 0; | |
5537 } | |
5538 | |
5539 /* | |
5540 * "'" and "`" commands. Also for "g'" and "g`". | |
5541 * cap->arg is TRUE for "'" and "g'". | |
5542 */ | |
5543 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5544 nv_gomark(cmdarg_T *cap) |
7 | 5545 { |
5546 pos_T *pos; | |
5547 int c; | |
5548 #ifdef FEAT_FOLDING | |
4017 | 5549 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
|
5550 int old_KeyTyped = KeyTyped; // getting file may reset it |
7 | 5551 #endif |
5552 | |
5553 if (cap->cmdchar == 'g') | |
5554 c = cap->extra_char; | |
5555 else | |
5556 c = cap->nchar; | |
5557 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
|
5558 if (pos == (pos_T *)-1) // jumped to other file |
7 | 5559 { |
5560 if (cap->arg) | |
5561 { | |
5562 check_cursor_lnum(); | |
5563 beginline(BL_WHITE | BL_FIX); | |
5564 } | |
5565 else | |
5566 check_cursor(); | |
5567 } | |
5568 else | |
5569 nv_cursormark(cap, cap->arg, pos); | |
5570 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5571 // May need to clear the coladd that a mark includes. |
7 | 5572 if (!virtual_active()) |
5573 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
|
5574 check_cursor_col(); |
7 | 5575 #ifdef FEAT_FOLDING |
5576 if (cap->oap->op_type == OP_NOP | |
4057 | 5577 && pos != NULL |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
5578 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos)) |
7 | 5579 && (fdo_flags & FDO_MARK) |
5580 && old_KeyTyped) | |
5581 foldOpenCursor(); | |
5582 #endif | |
5583 } | |
5584 | |
5585 /* | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5586 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands. |
7 | 5587 */ |
5588 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5589 nv_pcmark(cmdarg_T *cap) |
7 | 5590 { |
5591 #ifdef FEAT_JUMPLIST | |
5592 pos_T *pos; | |
5593 # ifdef FEAT_FOLDING | |
5594 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
|
5595 int old_KeyTyped = KeyTyped; // getting file may reset it |
7 | 5596 # endif |
5597 | |
5598 if (!checkclearopq(cap->oap)) | |
5599 { | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5600 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
|
5601 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5602 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
|
5603 clearopbeep(cap->oap); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5604 return; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5605 } |
7 | 5606 if (cap->cmdchar == 'g') |
5607 pos = movechangelist((int)cap->count1); | |
5608 else | |
5609 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
|
5610 if (pos == (pos_T *)-1) // jump to other file |
7 | 5611 { |
5612 curwin->w_set_curswant = TRUE; | |
5613 check_cursor(); | |
5614 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5615 else if (pos != NULL) // can jump |
7 | 5616 nv_cursormark(cap, FALSE, pos); |
5617 else if (cap->cmdchar == 'g') | |
5618 { | |
5619 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
|
5620 emsg(_("E664: changelist is empty")); |
7 | 5621 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
|
5622 emsg(_("E662: At start of changelist")); |
7 | 5623 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15436
diff
changeset
|
5624 emsg(_("E663: At end of changelist")); |
7 | 5625 } |
5626 else | |
5627 clearopbeep(cap->oap); | |
5628 # ifdef FEAT_FOLDING | |
5629 if (cap->oap->op_type == OP_NOP | |
5630 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum) | |
5631 && (fdo_flags & FDO_MARK) | |
5632 && old_KeyTyped) | |
5633 foldOpenCursor(); | |
5634 # endif | |
5635 } | |
5636 #else | |
5637 clearopbeep(cap->oap); | |
5638 #endif | |
5639 } | |
5640 | |
5641 /* | |
5642 * Handle '"' command. | |
5643 */ | |
5644 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5645 nv_regname(cmdarg_T *cap) |
7 | 5646 { |
5647 if (checkclearop(cap->oap)) | |
5648 return; | |
5649 #ifdef FEAT_EVAL | |
5650 if (cap->nchar == '=') | |
5651 cap->nchar = get_expr_register(); | |
5652 #endif | |
5653 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE)) | |
5654 { | |
5655 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
|
5656 cap->opcount = cap->count0; // remember count before '"' |
7 | 5657 #ifdef FEAT_EVAL |
5658 set_reg_var(cap->oap->regname); | |
5659 #endif | |
5660 } | |
5661 else | |
5662 clearopbeep(cap->oap); | |
5663 } | |
5664 | |
5665 /* | |
5666 * Handle "v", "V" and "CTRL-V" commands. | |
5667 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg | |
5668 * is TRUE. | |
167 | 5669 * Handle CTRL-Q just like CTRL-V. |
7 | 5670 */ |
5671 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5672 nv_visual(cmdarg_T *cap) |
7 | 5673 { |
167 | 5674 if (cap->cmdchar == Ctrl_Q) |
5675 cap->cmdchar = Ctrl_V; | |
5676 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5677 // '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
|
5678 // characterwise, linewise, or blockwise. |
7 | 5679 if (cap->oap->op_type != OP_NOP) |
5680 { | |
15279
54457fc4af0b
patch 8.1.0648: custom operators can't act upon a forced motion
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5681 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
|
5682 finish_op = FALSE; // operator doesn't finish now but later |
7 | 5683 return; |
5684 } | |
5685 | |
5686 VIsual_select = cap->arg; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5687 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
|
5688 { |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5689 if (VIsual_mode == cap->cmdchar) // stop visual mode |
7 | 5690 end_visual_mode(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5691 else // toggle char/block mode |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5692 { // or char/line mode |
7 | 5693 VIsual_mode = cap->cmdchar; |
5694 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
|
5695 trigger_modechanged(); |
7 | 5696 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5697 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
|
5698 } |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5699 else // start Visual mode |
7 | 5700 { |
5701 check_visual_highlight(); | |
3537 | 5702 if (cap->count0 > 0 && resel_VIsual_mode != NUL) |
5703 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5704 // use previously selected part |
7 | 5705 VIsual = curwin->w_cursor; |
5706 | |
5707 VIsual_active = TRUE; | |
5708 VIsual_reselect = TRUE; | |
5709 if (!cap->arg) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5710 // start Select mode when 'selectmode' contains "cmd" |
7 | 5711 may_start_select('c'); |
5712 setmouse(); | |
641 | 5713 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
|
5714 redraw_cmdline = TRUE; // show visual mode later |
7 | 5715 /* |
5716 * For V and ^V, we multiply the number of lines even if there | |
5717 * was only one -- webb | |
5718 */ | |
5719 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1) | |
5720 { | |
5721 curwin->w_cursor.lnum += | |
5722 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
|
5723 check_cursor(); |
7 | 5724 } |
5725 VIsual_mode = resel_VIsual_mode; | |
5726 if (VIsual_mode == 'v') | |
5727 { | |
5728 if (resel_VIsual_line_count <= 1) | |
3125 | 5729 { |
5730 validate_virtcol(); | |
5731 curwin->w_curswant = curwin->w_virtcol | |
5732 + resel_VIsual_vcol * cap->count0 - 1; | |
5733 } | |
7 | 5734 else |
3125 | 5735 curwin->w_curswant = resel_VIsual_vcol; |
5736 coladvance(curwin->w_curswant); | |
7 | 5737 } |
3125 | 5738 if (resel_VIsual_vcol == MAXCOL) |
7 | 5739 { |
5740 curwin->w_curswant = MAXCOL; | |
5741 coladvance((colnr_T)MAXCOL); | |
5742 } | |
5743 else if (VIsual_mode == Ctrl_V) | |
5744 { | |
5745 validate_virtcol(); | |
5746 curwin->w_curswant = curwin->w_virtcol | |
3125 | 5747 + resel_VIsual_vcol * cap->count0 - 1; |
7 | 5748 coladvance(curwin->w_curswant); |
5749 } | |
5750 else | |
5751 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
|
5752 redraw_curbuf_later(INVERTED); // show the inversion |
7 | 5753 } |
5754 else | |
5755 { | |
5756 if (!cap->arg) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5757 // start Select mode when 'selectmode' contains "cmd" |
7 | 5758 may_start_select('c'); |
5759 n_start_visual_mode(cap->cmdchar); | |
3537 | 5760 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
|
5761 ++cap->count1; // include one more char |
3537 | 5762 if (cap->count0 > 0 && --cap->count1 > 0) |
5763 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5764 // With a count select that many characters or lines. |
3537 | 5765 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V) |
5766 nv_right(cap); | |
5767 else if (VIsual_mode == 'V') | |
5768 nv_down(cap); | |
5769 } | |
7 | 5770 } |
5771 } | |
5772 } | |
5773 | |
5774 /* | |
5775 * Start selection for Shift-movement keys. | |
5776 */ | |
5777 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5778 start_selection(void) |
7 | 5779 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5780 // if 'selectmode' contains "key", start Select mode |
7 | 5781 may_start_select('k'); |
5782 n_start_visual_mode('v'); | |
5783 } | |
5784 | |
5785 /* | |
5786 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu. | |
5787 */ | |
5788 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5789 may_start_select(int c) |
7 | 5790 { |
5791 VIsual_select = (stuff_empty() && typebuf_typed() | |
5792 && (vim_strchr(p_slm, c) != NULL)); | |
5793 } | |
5794 | |
5795 /* | |
5796 * Start Visual mode "c". | |
5797 * Should set VIsual_select before calling this. | |
5798 */ | |
5799 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5800 n_start_visual_mode(int c) |
7 | 5801 { |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5802 #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
|
5803 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
|
5804 && 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
|
5805 #endif |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5806 |
7 | 5807 VIsual_mode = c; |
5808 VIsual_active = TRUE; | |
5809 VIsual_reselect = TRUE; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5810 |
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5811 // 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
|
5812 // 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
|
5813 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB) |
3742 | 5814 { |
5815 validate_virtcol(); | |
7 | 5816 coladvance(curwin->w_virtcol); |
3742 | 5817 } |
7 | 5818 VIsual = curwin->w_cursor; |
5819 | |
5820 #ifdef FEAT_FOLDING | |
5821 foldAdjustVisual(); | |
5822 #endif | |
5823 | |
26157
20200363816c
patch 8.2.3610: crash when ModeChanged triggered too early
Bram Moolenaar <Bram@vim.org>
parents:
26101
diff
changeset
|
5824 trigger_modechanged(); |
7 | 5825 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
|
5826 #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
|
5827 // 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
|
5828 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
|
5829 #endif |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5830 |
641 | 5831 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
|
5832 redraw_cmdline = TRUE; // show visual mode later |
7 | 5833 #ifdef FEAT_CLIPBOARD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5834 // 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
|
5835 // end may still be the same, and the selection needs to be owned |
7 | 5836 clip_star.vmode = NUL; |
5837 #endif | |
5838 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5839 // 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
|
5840 // Visual area (when 'lazyredraw' is set). |
7 | 5841 if (curwin->w_redr_type < INVERTED) |
5842 { | |
5843 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum; | |
5844 curwin->w_old_visual_lnum = curwin->w_cursor.lnum; | |
5845 } | |
5846 } | |
5847 | |
5848 | |
5849 /* | |
5850 * CTRL-W: Window commands | |
5851 */ | |
5852 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5853 nv_window(cmdarg_T *cap) |
7 | 5854 { |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5855 if (cap->nchar == ':') |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5856 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5857 // "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
|
5858 cap->cmdchar = ':'; |
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5859 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
|
5860 nv_colon(cap); |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5861 } |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5862 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
|
5863 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c |
7 | 5864 } |
5865 | |
5866 /* | |
5867 * CTRL-Z: Suspend | |
5868 */ | |
5869 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5870 nv_suspend(cmdarg_T *cap) |
7 | 5871 { |
5872 clearop(cap->oap); | |
5873 if (VIsual_active) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5874 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
|
5875 do_cmdline_cmd((char_u *)"stop"); |
7 | 5876 } |
5877 | |
5878 /* | |
5879 * Commands starting with "g". | |
5880 */ | |
5881 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5882 nv_g_cmd(cmdarg_T *cap) |
7 | 5883 { |
5884 oparg_T *oap = cap->oap; | |
5885 pos_T tpos; | |
5886 int i; | |
5887 int flag = FALSE; | |
5888 | |
5889 switch (cap->nchar) | |
5890 { | |
6868 | 5891 case Ctrl_A: |
5892 case Ctrl_X: | |
7 | 5893 #ifdef MEM_PROFILE |
5894 /* | |
5895 * "g^A": dump log of used memory. | |
5896 */ | |
6868 | 5897 if (!VIsual_active && cap->nchar == Ctrl_A) |
5898 vim_mem_profile_dump(); | |
5899 else | |
5900 #endif | |
5901 /* | |
5902 * "g^A/g^X": sequentially increment visually selected region | |
5903 */ | |
5904 if (VIsual_active) | |
5905 { | |
5906 cap->arg = TRUE; | |
5907 cap->cmdchar = cap->nchar; | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
5908 cap->nchar = NUL; |
6868 | 5909 nv_addsub(cap); |
5910 } | |
5911 else | |
5912 clearopbeep(oap); | |
7 | 5913 break; |
5914 | |
5915 /* | |
5916 * "gR": Enter virtual replace mode. | |
5917 */ | |
5918 case 'R': | |
5919 cap->arg = TRUE; | |
5920 nv_Replace(cap); | |
5921 break; | |
5922 | |
5923 case 'r': | |
5924 nv_vreplace(cap); | |
5925 break; | |
5926 | |
5927 case '&': | |
5928 do_cmdline_cmd((char_u *)"%s//~/&"); | |
5929 break; | |
5930 | |
5931 /* | |
5932 * "gv": Reselect the previous Visual area. If Visual already active, | |
5933 * exchange previous and current Visual area. | |
5934 */ | |
5935 case 'v': | |
5936 if (checkclearop(oap)) | |
5937 break; | |
5938 | |
690 | 5939 if ( curbuf->b_visual.vi_start.lnum == 0 |
5940 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count | |
5941 || curbuf->b_visual.vi_end.lnum == 0) | |
7 | 5942 beep_flush(); |
5943 else | |
5944 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5945 // set w_cursor to the start of the Visual area, tpos to the end |
7 | 5946 if (VIsual_active) |
5947 { | |
5948 i = VIsual_mode; | |
690 | 5949 VIsual_mode = curbuf->b_visual.vi_mode; |
5950 curbuf->b_visual.vi_mode = i; | |
7 | 5951 # ifdef FEAT_EVAL |
5952 curbuf->b_visual_mode_eval = i; | |
5953 # endif | |
5954 i = curwin->w_curswant; | |
690 | 5955 curwin->w_curswant = curbuf->b_visual.vi_curswant; |
5956 curbuf->b_visual.vi_curswant = i; | |
5957 | |
5958 tpos = curbuf->b_visual.vi_end; | |
5959 curbuf->b_visual.vi_end = curwin->w_cursor; | |
5960 curwin->w_cursor = curbuf->b_visual.vi_start; | |
5961 curbuf->b_visual.vi_start = VIsual; | |
7 | 5962 } |
5963 else | |
5964 { | |
690 | 5965 VIsual_mode = curbuf->b_visual.vi_mode; |
5966 curwin->w_curswant = curbuf->b_visual.vi_curswant; | |
5967 tpos = curbuf->b_visual.vi_end; | |
5968 curwin->w_cursor = curbuf->b_visual.vi_start; | |
7 | 5969 } |
5970 | |
5971 VIsual_active = TRUE; | |
5972 VIsual_reselect = TRUE; | |
5973 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5974 // 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
|
5975 // area. Make sure they are on an existing character. |
7 | 5976 check_cursor(); |
5977 VIsual = curwin->w_cursor; | |
5978 curwin->w_cursor = tpos; | |
5979 check_cursor(); | |
5980 update_topline(); | |
5981 /* | |
5982 * When called from normal "g" command: start Select mode when | |
5983 * 'selectmode' contains "cmd". When called for K_SELECT, always | |
5984 * start Select mode. | |
5985 */ | |
5986 if (cap->arg) | |
5987 VIsual_select = TRUE; | |
5988 else | |
5989 may_start_select('c'); | |
5990 setmouse(); | |
5991 #ifdef FEAT_CLIPBOARD | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5992 // 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
|
5993 // end are still the same, and the selection needs to be owned |
7 | 5994 clip_star.vmode = NUL; |
5995 #endif | |
5996 redraw_curbuf_later(INVERTED); | |
5997 showmode(); | |
5998 } | |
5999 break; | |
6000 /* | |
6001 * "gV": Don't reselect the previous Visual area after a Select mode | |
6002 * mapping of menu. | |
6003 */ | |
6004 case 'V': | |
6005 VIsual_reselect = FALSE; | |
6006 break; | |
6007 | |
6008 /* | |
6009 * "gh": start Select mode. | |
6010 * "gH": start Select line mode. | |
6011 * "g^H": start Select block mode. | |
6012 */ | |
6013 case K_BS: | |
6014 cap->nchar = Ctrl_H; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6015 // FALLTHROUGH |
7 | 6016 case 'h': |
6017 case 'H': | |
6018 case Ctrl_H: | |
6019 # ifdef EBCDIC | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6020 // EBCDIC: 'v'-'h' != '^v'-'^h' |
7 | 6021 if (cap->nchar == Ctrl_H) |
6022 cap->cmdchar = Ctrl_V; | |
6023 else | |
6024 # endif | |
6025 cap->cmdchar = cap->nchar + ('v' - 'h'); | |
6026 cap->arg = TRUE; | |
6027 nv_visual(cap); | |
6028 break; | |
3701 | 6029 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6030 // "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
|
6031 // "gn" selects next match |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6032 // "gN" selects previous match |
3701 | 6033 case 'N': |
6034 case 'n': | |
6035 if (!current_search(cap->count1, cap->nchar == 'n')) | |
3896 | 6036 clearopbeep(oap); |
3701 | 6037 break; |
7 | 6038 |
6039 /* | |
6040 * "gj" and "gk" two new funny movement keys -- up and down | |
6041 * movement based on *screen* line rather than *file* line. | |
6042 */ | |
6043 case 'j': | |
6044 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
|
6045 // 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
|
6046 if (!curwin->w_p_wrap) |
7 | 6047 { |
6048 oap->motion_type = MLINE; | |
6049 i = cursor_down(cap->count1, oap->op_type == OP_NOP); | |
6050 } | |
6051 else | |
6052 i = nv_screengo(oap, FORWARD, cap->count1); | |
6053 if (i == FAIL) | |
6054 clearopbeep(oap); | |
6055 break; | |
6056 | |
6057 case 'k': | |
6058 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
|
6059 // 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
|
6060 if (!curwin->w_p_wrap) |
7 | 6061 { |
6062 oap->motion_type = MLINE; | |
6063 i = cursor_up(cap->count1, oap->op_type == OP_NOP); | |
6064 } | |
6065 else | |
6066 i = nv_screengo(oap, BACKWARD, cap->count1); | |
6067 if (i == FAIL) | |
6068 clearopbeep(oap); | |
6069 break; | |
6070 | |
6071 /* | |
6072 * "gJ": join two lines without inserting a space. | |
6073 */ | |
6074 case 'J': | |
6075 nv_join(cap); | |
6076 break; | |
6077 | |
6078 /* | |
6079 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines. | |
6080 * "gm": middle of "g0" and "g$". | |
6081 */ | |
6082 case '^': | |
6083 flag = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6084 // FALLTHROUGH |
7 | 6085 |
6086 case '0': | |
6087 case 'm': | |
6088 case K_HOME: | |
6089 case K_KHOME: | |
6090 oap->motion_type = MCHAR; | |
6091 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
|
6092 if (curwin->w_p_wrap && curwin->w_width != 0) |
7 | 6093 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6094 int width1 = curwin->w_width - curwin_col_off(); |
7 | 6095 int width2 = width1 + curwin_col_off2(); |
6096 | |
6097 validate_virtcol(); | |
6098 i = 0; | |
6099 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0) | |
6100 i = (curwin->w_virtcol - width1) / width2 * width2 + width1; | |
6101 } | |
6102 else | |
6103 i = curwin->w_leftcol; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6104 // 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
|
6105 // '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
|
6106 // to the left. |
7 | 6107 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
|
6108 i += (curwin->w_width - curwin_col_off() |
7 | 6109 + ((curwin->w_p_wrap && i > 0) |
6110 ? curwin_col_off2() : 0)) / 2; | |
6111 coladvance((colnr_T)i); | |
6112 if (flag) | |
6113 { | |
6114 do | |
6115 i = gchar_cursor(); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
6116 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
|
6117 curwin->w_valid &= ~VALID_WCOL; |
7 | 6118 } |
6119 curwin->w_set_curswant = TRUE; | |
6120 break; | |
6121 | |
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
|
6122 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
|
6123 { |
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
|
6124 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
|
6125 |
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
|
6126 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
|
6127 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
|
6128 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
|
6129 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
|
6130 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
|
6131 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
|
6132 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
|
6133 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
|
6134 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
|
6135 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
|
6136 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
|
6137 } |
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 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
|
6139 |
7 | 6140 case '_': |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6141 // "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
|
6142 // downward. |
7 | 6143 cap->oap->motion_type = MCHAR; |
6144 cap->oap->inclusive = TRUE; | |
6145 curwin->w_curswant = MAXCOL; | |
6146 if (cursor_down((long)(cap->count1 - 1), | |
6147 cap->oap->op_type == OP_NOP) == FAIL) | |
6148 clearopbeep(cap->oap); | |
6149 else | |
6150 { | |
6151 char_u *ptr = ml_get_curline(); | |
6152 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6153 // In Visual mode we may end up after the line. |
7 | 6154 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL) |
6155 --curwin->w_cursor.col; | |
6156 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6157 // Decrease the cursor column until it's on a non-blank. |
7 | 6158 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
|
6159 && VIM_ISWHITE(ptr[curwin->w_cursor.col])) |
7 | 6160 --curwin->w_cursor.col; |
6161 curwin->w_set_curswant = TRUE; | |
2040
70c67b1bb1f1
updated for version 7.2.329
Bram Moolenaar <bram@zimbu.org>
parents:
2024
diff
changeset
|
6162 adjust_for_sel(cap); |
7 | 6163 } |
6164 break; | |
6165 | |
6166 case '$': | |
6167 case K_END: | |
6168 case K_KEND: | |
6169 { | |
6170 int col_off = curwin_col_off(); | |
6171 | |
6172 oap->motion_type = MCHAR; | |
6173 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
|
6174 if (curwin->w_p_wrap && curwin->w_width != 0) |
7 | 6175 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6176 curwin->w_curswant = MAXCOL; // so we stay at the end |
7 | 6177 if (cap->count1 == 1) |
6178 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6179 int width1 = curwin->w_width - col_off; |
7 | 6180 int width2 = width1 + curwin_col_off2(); |
6181 | |
6182 validate_virtcol(); | |
6183 i = width1 - 1; | |
6184 if (curwin->w_virtcol >= (colnr_T)width1) | |
6185 i += ((curwin->w_virtcol - width1) / width2 + 1) | |
6186 * width2; | |
6187 coladvance((colnr_T)i); | |
5162
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6188 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6189 // Make sure we stick in this column. |
5162
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6190 validate_virtcol(); |
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6191 curwin->w_curswant = curwin->w_virtcol; |
c624928fbc49
updated for version 7.4a.007
Bram Moolenaar <bram@vim.org>
parents:
4472
diff
changeset
|
6192 curwin->w_set_curswant = FALSE; |
7 | 6193 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap) |
6194 { | |
6195 /* | |
6196 * Check for landing on a character that got split at | |
6197 * the end of the line. We do not want to advance to | |
6198 * the next screen line. | |
6199 */ | |
6200 if (curwin->w_virtcol > (colnr_T)i) | |
6201 --curwin->w_cursor.col; | |
6202 } | |
6203 } | |
6204 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL) | |
6205 clearopbeep(oap); | |
6206 } | |
6207 else | |
6208 { | |
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
|
6209 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
|
6210 // 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
|
6211 (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
|
6212 |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
6213 i = curwin->w_leftcol + curwin->w_width - col_off - 1; |
7 | 6214 coladvance((colnr_T)i); |
40 | 6215 |
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
|
6216 // 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
|
6217 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
|
6218 && (*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
|
6219 { |
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
|
6220 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
|
6221 |
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 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
|
6223 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
|
6224 --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
|
6225 } |
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 |
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
|
6227 // Make sure we stick in this column. |
40 | 6228 validate_virtcol(); |
6229 curwin->w_curswant = curwin->w_virtcol; | |
6230 curwin->w_set_curswant = FALSE; | |
7 | 6231 } |
6232 } | |
6233 break; | |
6234 | |
6235 /* | |
6236 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>" | |
6237 */ | |
6238 case '*': | |
6239 case '#': | |
6240 #if POUND != '#' | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6241 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
|
6242 #endif |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6243 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
|
6244 case ']': // :tselect for current identifier |
7 | 6245 nv_ident(cap); |
6246 break; | |
6247 | |
6248 /* | |
6249 * ge and gE: go back to end of word | |
6250 */ | |
6251 case 'e': | |
6252 case 'E': | |
6253 oap->motion_type = MCHAR; | |
6254 curwin->w_set_curswant = TRUE; | |
6255 oap->inclusive = TRUE; | |
6256 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL) | |
6257 clearopbeep(oap); | |
6258 break; | |
6259 | |
6260 /* | |
6261 * "g CTRL-G": display info about cursor position | |
6262 */ | |
6263 case Ctrl_G: | |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
6264 cursor_pos_info(NULL); |
7 | 6265 break; |
6266 | |
6267 /* | |
6268 * "gi": start Insert at the last position. | |
6269 */ | |
6270 case 'i': | |
6271 if (curbuf->b_last_insert.lnum != 0) | |
6272 { | |
6273 curwin->w_cursor = curbuf->b_last_insert; | |
6274 check_cursor_lnum(); | |
6275 i = (int)STRLEN(ml_get_curline()); | |
6276 if (curwin->w_cursor.col > (colnr_T)i) | |
6277 { | |
6278 if (virtual_active()) | |
6279 curwin->w_cursor.coladd += curwin->w_cursor.col - i; | |
6280 curwin->w_cursor.col = i; | |
6281 } | |
6282 } | |
6283 cap->cmdchar = 'i'; | |
6284 nv_edit(cap); | |
6285 break; | |
6286 | |
6287 /* | |
6288 * "gI": Start insert in column 1. | |
6289 */ | |
6290 case 'I': | |
6291 beginline(0); | |
6292 if (!checkclearopq(oap)) | |
6293 invoke_edit(cap, FALSE, 'g', FALSE); | |
6294 break; | |
6295 | |
6296 #ifdef FEAT_SEARCHPATH | |
6297 /* | |
6298 * "gf": goto file, edit file under cursor | |
6299 * "]f" and "[f": can also be used. | |
6300 */ | |
6301 case 'f': | |
681 | 6302 case 'F': |
7 | 6303 nv_gotofile(cap); |
6304 break; | |
6305 #endif | |
6306 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6307 // "g'm" and "g`m": jump to mark without setting pcmark |
7 | 6308 case '\'': |
6309 cap->arg = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6310 // FALLTHROUGH |
7 | 6311 case '`': |
6312 nv_gomark(cap); | |
6313 break; | |
6314 | |
6315 /* | |
6316 * "gs": Goto sleep. | |
6317 */ | |
6318 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
|
6319 do_sleep(cap->count1 * 1000L, FALSE); |
7 | 6320 break; |
6321 | |
6322 /* | |
6323 * "ga": Display the ascii value of the character under the | |
6324 * cursor. It is displayed in decimal, hex, and octal. -- webb | |
6325 */ | |
6326 case 'a': | |
6327 do_ascii(NULL); | |
6328 break; | |
6329 | |
6330 /* | |
6331 * "g8": Display the bytes used for the UTF-8 character under the | |
6332 * cursor. It is displayed in hex. | |
775 | 6333 * "8g8" finds illegal byte sequence. |
7 | 6334 */ |
6335 case '8': | |
775 | 6336 if (cap->count0 == 8) |
6337 utf_find_illegal(); | |
6338 else | |
6339 show_utf8(); | |
7 | 6340 break; |
6341 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6342 // "g<": show scrollback text |
447 | 6343 case '<': |
6344 show_sb_text(); | |
6345 break; | |
6346 | |
7 | 6347 /* |
6348 * "gg": Goto the first line in file. With a count it goes to | |
6349 * that line number like for "G". -- webb | |
6350 */ | |
6351 case 'g': | |
6352 cap->arg = FALSE; | |
6353 nv_goto(cap); | |
6354 break; | |
6355 | |
6356 /* | |
6357 * Two-character operators: | |
6358 * "gq" Format text | |
6359 * "gw" Format text and keep cursor position | |
6360 * "g~" Toggle the case of the text. | |
6361 * "gu" Change text to lower case. | |
6362 * "gU" Change text to upper case. | |
6363 * "g?" rot13 encoding | |
602 | 6364 * "g@" call 'operatorfunc' |
7 | 6365 */ |
6366 case 'q': | |
6367 case 'w': | |
6368 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
|
6369 // FALLTHROUGH |
7 | 6370 case '~': |
6371 case 'u': | |
6372 case 'U': | |
6373 case '?': | |
602 | 6374 case '@': |
7 | 6375 nv_operator(cap); |
6376 break; | |
6377 | |
6378 /* | |
1188 | 6379 * "gd": Find first occurrence of pattern under the cursor in the |
7 | 6380 * current function |
6381 * "gD": idem, but in the current file. | |
6382 */ | |
6383 case 'd': | |
6384 case 'D': | |
523 | 6385 nv_gd(oap, cap->nchar, (int)cap->count0); |
7 | 6386 break; |
6387 | |
6388 /* | |
6389 * g<*Mouse> : <C-*mouse> | |
6390 */ | |
6391 case K_MIDDLEMOUSE: | |
6392 case K_MIDDLEDRAG: | |
6393 case K_MIDDLERELEASE: | |
6394 case K_LEFTMOUSE: | |
6395 case K_LEFTDRAG: | |
6396 case K_LEFTRELEASE: | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
6397 case K_MOUSEMOVE: |
7 | 6398 case K_RIGHTMOUSE: |
6399 case K_RIGHTDRAG: | |
6400 case K_RIGHTRELEASE: | |
6401 case K_X1MOUSE: | |
6402 case K_X1DRAG: | |
6403 case K_X1RELEASE: | |
6404 case K_X2MOUSE: | |
6405 case K_X2DRAG: | |
6406 case K_X2RELEASE: | |
6407 mod_mask = MOD_MASK_CTRL; | |
6408 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0); | |
6409 break; | |
6410 | |
6411 case K_IGNORE: | |
6412 break; | |
6413 | |
6414 /* | |
6415 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text | |
6416 */ | |
6417 case 'p': | |
6418 case 'P': | |
6419 nv_put(cap); | |
6420 break; | |
6421 | |
6422 #ifdef FEAT_BYTEOFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6423 // "go": goto byte count from start of buffer |
7 | 6424 case 'o': |
6425 goto_byte(cap->count0); | |
6426 break; | |
6427 #endif | |
6428 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6429 // "gQ": improved Ex mode |
7 | 6430 case 'Q': |
633 | 6431 if (text_locked()) |
7 | 6432 { |
6433 clearopbeep(cap->oap); | |
633 | 6434 text_locked_msg(); |
7 | 6435 break; |
6436 } | |
631 | 6437 |
7 | 6438 if (!checkclearopq(oap)) |
6439 do_exmode(TRUE); | |
6440 break; | |
6441 | |
6442 #ifdef FEAT_JUMPLIST | |
6443 case ',': | |
6444 nv_pcmark(cap); | |
6445 break; | |
6446 | |
6447 case ';': | |
6448 cap->count1 = -cap->count1; | |
6449 nv_pcmark(cap); | |
6450 break; | |
6451 #endif | |
6452 | |
667 | 6453 case 't': |
3630 | 6454 if (!checkclearop(oap)) |
6455 goto_tabpage((int)cap->count0); | |
667 | 6456 break; |
682 | 6457 case 'T': |
3630 | 6458 if (!checkclearop(oap)) |
6459 goto_tabpage(-(int)cap->count1); | |
682 | 6460 break; |
667 | 6461 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6462 case TAB: |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6463 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
|
6464 clearopbeep(oap); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6465 break; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6466 |
750 | 6467 case '+': |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6468 case '-': // "g+" and "g-": undo or redo along the timeline |
750 | 6469 if (!checkclearopq(oap)) |
771 | 6470 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
|
6471 FALSE, FALSE, FALSE); |
750 | 6472 break; |
6473 | |
7 | 6474 default: |
6475 clearopbeep(oap); | |
6476 break; | |
6477 } | |
6478 } | |
6479 | |
6480 /* | |
6481 * Handle "o" and "O" commands. | |
6482 */ | |
6483 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6484 n_opencmd(cmdarg_T *cap) |
7 | 6485 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6486 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6487 linenr_T oldline = curwin->w_cursor.lnum; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6488 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6489 |
7 | 6490 if (!checkclearopq(cap->oap)) |
6491 { | |
6492 #ifdef FEAT_FOLDING | |
6493 if (cap->cmdchar == 'O') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6494 // Open above the first line of a folded sequence of lines |
7 | 6495 (void)hasFolding(curwin->w_cursor.lnum, |
6496 &curwin->w_cursor.lnum, NULL); | |
6497 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6498 // Open below the last line of a folded sequence of lines |
7 | 6499 (void)hasFolding(curwin->w_cursor.lnum, |
6500 NULL, &curwin->w_cursor.lnum); | |
6501 #endif | |
6502 if (u_save((linenr_T)(curwin->w_cursor.lnum - | |
6503 (cap->cmdchar == 'O' ? 1 : 0)), | |
6504 (linenr_T)(curwin->w_cursor.lnum + | |
6505 (cap->cmdchar == 'o' ? 1 : 0)) | |
6506 ) == OK | |
6507 && 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
|
6508 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0, |
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18154
diff
changeset
|
6509 0) == OK) |
7 | 6510 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6511 #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
|
6512 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
|
6513 redrawWinline(curwin, oldline); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6514 #endif |
6834 | 6515 #ifdef FEAT_SYN_HL |
6821 | 6516 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
|
6517 // force redraw of cursorline |
6821 | 6518 curwin->w_valid &= ~VALID_CROW; |
6834 | 6519 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6520 // 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
|
6521 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
|
6522 cap->count1 = 1; |
7 | 6523 invoke_edit(cap, FALSE, cap->cmdchar, TRUE); |
6524 } | |
6525 } | |
6526 } | |
6527 | |
6528 /* | |
6529 * "." command: redo last change. | |
6530 */ | |
6531 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6532 nv_dot(cmdarg_T *cap) |
7 | 6533 { |
6534 if (!checkclearopq(cap->oap)) | |
6535 { | |
6536 /* | |
6537 * If "restart_edit" is TRUE, the last but one command is repeated | |
6538 * instead of the last command (inserting text). This is used for | |
6539 * CTRL-O <.> in insert mode. | |
6540 */ | |
6541 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL) | |
6542 clearopbeep(cap->oap); | |
6543 } | |
6544 } | |
6545 | |
6546 /* | |
6547 * CTRL-R: undo undo | |
6548 */ | |
6549 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6550 nv_redo(cmdarg_T *cap) |
7 | 6551 { |
6552 if (!checkclearopq(cap->oap)) | |
6553 { | |
6554 u_redo((int)cap->count1); | |
6555 curwin->w_set_curswant = TRUE; | |
6556 } | |
6557 } | |
6558 | |
6559 /* | |
6560 * Handle "U" command. | |
6561 */ | |
6562 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6563 nv_Undo(cmdarg_T *cap) |
7 | 6564 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6565 // In Visual mode and typing "gUU" triggers an operator |
5735 | 6566 if (cap->oap->op_type == OP_UPPER || VIsual_active) |
7 | 6567 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6568 // translate "gUU" to "gUgU" |
7 | 6569 cap->cmdchar = 'g'; |
6570 cap->nchar = 'U'; | |
6571 nv_operator(cap); | |
6572 } | |
6573 else if (!checkclearopq(cap->oap)) | |
6574 { | |
6575 u_undoline(); | |
6576 curwin->w_set_curswant = TRUE; | |
6577 } | |
6578 } | |
6579 | |
6580 /* | |
6581 * '~' command: If tilde is not an operator and Visual is off: swap case of a | |
6582 * single character. | |
6583 */ | |
6584 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6585 nv_tilde(cmdarg_T *cap) |
7 | 6586 { |
5735 | 6587 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
|
6588 { |
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
|
6589 #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
|
6590 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
|
6591 { |
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
|
6592 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
|
6593 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
|
6594 } |
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 #endif |
7 | 6596 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
|
6597 } |
7 | 6598 else |
6599 nv_operator(cap); | |
6600 } | |
6601 | |
6602 /* | |
6603 * Handle an operator command. | |
6604 * The actual work is done by do_pending_operator(). | |
6605 */ | |
6606 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6607 nv_operator(cmdarg_T *cap) |
7 | 6608 { |
6609 int op_type; | |
6610 | |
6611 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
|
6612 #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
|
6613 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
|
6614 { |
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
|
6615 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
|
6616 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
|
6617 } |
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 #endif |
7 | 6619 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6620 if (op_type == cap->oap->op_type) // double operator works on lines |
7 | 6621 nv_lineop(cap); |
6622 else if (!checkclearop(cap->oap)) | |
6623 { | |
6624 cap->oap->start = curwin->w_cursor; | |
6625 cap->oap->op_type = op_type; | |
1490 | 6626 #ifdef FEAT_EVAL |
6627 set_op_var(op_type); | |
6628 #endif | |
6629 } | |
6630 } | |
6631 | |
6632 #ifdef FEAT_EVAL | |
6633 /* | |
6634 * Set v:operator to the characters for "optype". | |
6635 */ | |
6636 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6637 set_op_var(int optype) |
1490 | 6638 { |
6639 char_u opchars[3]; | |
6640 | |
6641 if (optype == OP_NOP) | |
6642 set_vim_var_string(VV_OP, NULL, 0); | |
6643 else | |
6644 { | |
6645 opchars[0] = get_op_char(optype); | |
6646 opchars[1] = get_extra_op_char(optype); | |
6647 opchars[2] = NUL; | |
6648 set_vim_var_string(VV_OP, opchars, -1); | |
6649 } | |
6650 } | |
6651 #endif | |
7 | 6652 |
6653 /* | |
6654 * Handle linewise operator "dd", "yy", etc. | |
6655 * | |
6656 * "_" is is a strange motion command that helps make operators more logical. | |
6657 * It is actually implemented, but not documented in the real Vi. This motion | |
6658 * command actually refers to "the current line". Commands like "dd" and "yy" | |
6659 * are really an alternate form of "d_" and "y_". It does accept a count, so | |
6660 * "d3_" works to delete 3 lines. | |
6661 */ | |
6662 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6663 nv_lineop(cmdarg_T *cap) |
7 | 6664 { |
6665 cap->oap->motion_type = MLINE; | |
6666 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL) | |
6667 clearopbeep(cap->oap); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6668 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions |
4011 | 6669 && cap->oap->motion_force != 'v' |
6670 && cap->oap->motion_force != Ctrl_V) | |
7 | 6671 || cap->oap->op_type == OP_LSHIFT |
6672 || cap->oap->op_type == OP_RSHIFT) | |
6673 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
|
6674 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor |
7 | 6675 beginline(BL_WHITE | BL_FIX); |
6676 } | |
6677 | |
6678 /* | |
6679 * <Home> command. | |
6680 */ | |
6681 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6682 nv_home(cmdarg_T *cap) |
7 | 6683 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6684 // CTRL-HOME is like "gg" |
180 | 6685 if (mod_mask & MOD_MASK_CTRL) |
6686 nv_goto(cap); | |
6687 else | |
6688 { | |
6689 cap->count0 = 1; | |
6690 nv_pipe(cap); | |
6691 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6692 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
|
6693 // one-character line). |
7 | 6694 } |
6695 | |
6696 /* | |
6697 * "|" command. | |
6698 */ | |
6699 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6700 nv_pipe(cmdarg_T *cap) |
7 | 6701 { |
6702 cap->oap->motion_type = MCHAR; | |
6703 cap->oap->inclusive = FALSE; | |
6704 beginline(0); | |
6705 if (cap->count0 > 0) | |
6706 { | |
6707 coladvance((colnr_T)(cap->count0 - 1)); | |
6708 curwin->w_curswant = (colnr_T)(cap->count0 - 1); | |
6709 } | |
6710 else | |
6711 curwin->w_curswant = 0; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6712 // 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
|
6713 // we ended; differs if line is too short |
7 | 6714 curwin->w_set_curswant = FALSE; |
6715 } | |
6716 | |
6717 /* | |
6718 * Handle back-word command "b" and "B". | |
6719 * cap->arg is 1 for "B" | |
6720 */ | |
6721 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6722 nv_bck_word(cmdarg_T *cap) |
7 | 6723 { |
6724 cap->oap->motion_type = MCHAR; | |
6725 cap->oap->inclusive = FALSE; | |
6726 curwin->w_set_curswant = TRUE; | |
6727 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL) | |
6728 clearopbeep(cap->oap); | |
6729 #ifdef FEAT_FOLDING | |
6730 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6731 foldOpenCursor(); | |
6732 #endif | |
6733 } | |
6734 | |
6735 /* | |
6736 * Handle word motion commands "e", "E", "w" and "W". | |
6737 * cap->arg is TRUE for "E" and "W". | |
6738 */ | |
6739 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6740 nv_wordcmd(cmdarg_T *cap) |
7 | 6741 { |
6742 int n; | |
6743 int word_end; | |
6744 int flag = FALSE; | |
1573 | 6745 pos_T startpos = curwin->w_cursor; |
7 | 6746 |
6747 /* | |
6748 * Set inclusive for the "E" and "e" command. | |
6749 */ | |
6750 if (cap->cmdchar == 'e' || cap->cmdchar == 'E') | |
6751 word_end = TRUE; | |
6752 else | |
6753 word_end = FALSE; | |
6754 cap->oap->inclusive = word_end; | |
6755 | |
6756 /* | |
6757 * "cw" and "cW" are a special case. | |
6758 */ | |
6759 if (!word_end && cap->oap->op_type == OP_CHANGE) | |
6760 { | |
6761 n = gchar_cursor(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6762 if (n != NUL) // not an empty line |
7 | 6763 { |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
6764 if (VIM_ISWHITE(n)) |
7 | 6765 { |
6766 /* | |
6767 * Reproduce a funny Vi behaviour: "cw" on a blank only | |
6768 * changes one character, not all blanks until the start of | |
6769 * the next word. Only do this when the 'w' flag is included | |
6770 * in 'cpoptions'. | |
6771 */ | |
6772 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL) | |
6773 { | |
6774 cap->oap->inclusive = TRUE; | |
6775 cap->oap->motion_type = MCHAR; | |
6776 return; | |
6777 } | |
6778 } | |
6779 else | |
6780 { | |
6781 /* | |
6782 * This is a little strange. To match what the real Vi does, | |
6783 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided | |
6784 * that we are not on a space or a TAB. This seems impolite | |
6785 * at first, but it's really more what we mean when we say | |
6786 * 'cw'. | |
6787 * Another strangeness: When standing on the end of a word | |
4352 | 6788 * "ce" will change until the end of the next word, but "cw" |
7 | 6789 * will change only one character! This is done by setting |
6790 * flag. | |
6791 */ | |
6792 cap->oap->inclusive = TRUE; | |
6793 word_end = TRUE; | |
6794 flag = TRUE; | |
6795 } | |
6796 } | |
6797 } | |
6798 | |
6799 cap->oap->motion_type = MCHAR; | |
6800 curwin->w_set_curswant = TRUE; | |
6801 if (word_end) | |
6802 n = end_word(cap->count1, cap->arg, flag, FALSE); | |
6803 else | |
6804 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP); | |
6805 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6806 // 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
|
6807 // 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
|
6808 if (LT_POS(startpos, curwin->w_cursor)) |
1505 | 6809 adjust_cursor(cap->oap); |
7 | 6810 |
6811 if (n == FAIL && cap->oap->op_type == OP_NOP) | |
6812 clearopbeep(cap->oap); | |
6813 else | |
6814 { | |
6815 adjust_for_sel(cap); | |
6816 #ifdef FEAT_FOLDING | |
6817 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6818 foldOpenCursor(); | |
6819 #endif | |
6820 } | |
6821 } | |
6822 | |
6823 /* | |
1505 | 6824 * Used after a movement command: If the cursor ends up on the NUL after the |
6825 * end of the line, may move it back to the last character and make the motion | |
6826 * inclusive. | |
6827 */ | |
6828 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6829 adjust_cursor(oparg_T *oap) |
1505 | 6830 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6831 // 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
|
6832 // - the column is > 0 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6833 // - 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
|
6834 // - 'virtualedit' is not "all" and not "onemore". |
1505 | 6835 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL |
6836 && (!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
|
6837 && !virtual_active() && (get_ve_flags() & VE_ONEMORE) == 0) |
1505 | 6838 { |
6839 --curwin->w_cursor.col; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6840 // prevent cursor from moving on the trail byte |
1505 | 6841 if (has_mbyte) |
6842 mb_adjust_cursor(); | |
6843 oap->inclusive = TRUE; | |
6844 } | |
6845 } | |
6846 | |
6847 /* | |
7 | 6848 * "0" and "^" commands. |
6849 * cap->arg is the argument for beginline(). | |
6850 */ | |
6851 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6852 nv_beginline(cmdarg_T *cap) |
7 | 6853 { |
6854 cap->oap->motion_type = MCHAR; | |
6855 cap->oap->inclusive = FALSE; | |
6856 beginline(cap->arg); | |
6857 #ifdef FEAT_FOLDING | |
6858 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6859 foldOpenCursor(); | |
6860 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6861 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
|
6862 // one-character line). |
7 | 6863 } |
6864 | |
6865 /* | |
6866 * In exclusive Visual mode, may include the last character. | |
6867 */ | |
6868 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6869 adjust_for_sel(cmdarg_T *cap) |
7 | 6870 { |
6871 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
|
6872 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor)) |
7 | 6873 { |
6874 if (has_mbyte) | |
6875 inc_cursor(); | |
6876 else | |
6877 ++curwin->w_cursor.col; | |
6878 cap->oap->inclusive = FALSE; | |
6879 } | |
6880 } | |
6881 | |
6882 /* | |
6883 * Exclude last character at end of Visual area for 'selection' == "exclusive". | |
6884 * Should check VIsual_mode before calling this. | |
6885 * Returns TRUE when backed up to the previous line. | |
6886 */ | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
6887 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6888 unadjust_for_sel(void) |
7 | 6889 { |
6890 pos_T *pp; | |
6891 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6892 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
|
6893 { |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6894 if (LT_POS(VIsual, curwin->w_cursor)) |
7 | 6895 pp = &curwin->w_cursor; |
6896 else | |
6897 pp = &VIsual; | |
6898 if (pp->coladd > 0) | |
6899 --pp->coladd; | |
6900 else | |
6901 if (pp->col > 0) | |
6902 { | |
6903 --pp->col; | |
2933 | 6904 mb_adjustpos(curbuf, pp); |
7 | 6905 } |
6906 else if (pp->lnum > 1) | |
6907 { | |
6908 --pp->lnum; | |
6909 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum)); | |
6910 return TRUE; | |
6911 } | |
6912 } | |
6913 return FALSE; | |
6914 } | |
6915 | |
6916 /* | |
6917 * SELECT key in Normal or Visual mode: end of Select mode mapping. | |
6918 */ | |
6919 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6920 nv_select(cmdarg_T *cap) |
7 | 6921 { |
6922 if (VIsual_active) | |
6923 VIsual_select = TRUE; | |
6924 else if (VIsual_reselect) | |
6925 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6926 cap->nchar = 'v'; // fake "gv" command |
7 | 6927 cap->arg = TRUE; |
6928 nv_g_cmd(cap); | |
6929 } | |
6930 } | |
6931 | |
6932 | |
6933 /* | |
6934 * "G", "gg", CTRL-END, CTRL-HOME. | |
6935 * cap->arg is TRUE for "G". | |
6936 */ | |
6937 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6938 nv_goto(cmdarg_T *cap) |
7 | 6939 { |
6940 linenr_T lnum; | |
6941 | |
6942 if (cap->arg) | |
6943 lnum = curbuf->b_ml.ml_line_count; | |
6944 else | |
6945 lnum = 1L; | |
6946 cap->oap->motion_type = MLINE; | |
6947 setpcmark(); | |
6948 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6949 // When a count is given, use it instead of the default lnum |
7 | 6950 if (cap->count0 != 0) |
6951 lnum = cap->count0; | |
6952 if (lnum < 1L) | |
6953 lnum = 1L; | |
6954 else if (lnum > curbuf->b_ml.ml_line_count) | |
6955 lnum = curbuf->b_ml.ml_line_count; | |
6956 curwin->w_cursor.lnum = lnum; | |
6957 beginline(BL_SOL | BL_FIX); | |
6958 #ifdef FEAT_FOLDING | |
6959 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6960 foldOpenCursor(); | |
6961 #endif | |
6962 } | |
6963 | |
6964 /* | |
6965 * CTRL-\ in Normal mode. | |
6966 */ | |
6967 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6968 nv_normal(cmdarg_T *cap) |
7 | 6969 { |
6970 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G) | |
6971 { | |
6972 clearop(cap->oap); | |
643 | 6973 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
|
6974 clear_cmdline = TRUE; // unshow mode later |
7 | 6975 restart_edit = 0; |
6976 #ifdef FEAT_CMDWIN | |
6977 if (cmdwin_type != 0) | |
6978 cmdwin_result = Ctrl_C; | |
6979 #endif | |
6980 if (VIsual_active) | |
6981 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6982 end_visual_mode(); // stop Visual |
7 | 6983 redraw_curbuf_later(INVERTED); |
6984 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6985 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. |
7 | 6986 if (cap->nchar == Ctrl_G && p_im) |
6987 restart_edit = 'a'; | |
6988 } | |
6989 else | |
6990 clearopbeep(cap->oap); | |
6991 } | |
6992 | |
6993 /* | |
6994 * ESC in Normal mode: beep, but don't flush buffers. | |
6995 * Don't even beep if we are canceling a command. | |
6996 */ | |
6997 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6998 nv_esc(cmdarg_T *cap) |
7 | 6999 { |
7000 int no_reason; | |
7001 | |
7002 no_reason = (cap->oap->op_type == OP_NOP | |
7003 && cap->opcount == 0 | |
7004 && cap->count0 == 0 | |
7005 && cap->oap->regname == 0 | |
7006 && !p_im); | |
7007 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7008 if (cap->arg) // TRUE for CTRL-C |
7 | 7009 { |
7010 if (restart_edit == 0 | |
7011 #ifdef FEAT_CMDWIN | |
7012 && cmdwin_type == 0 | |
7013 #endif | |
7014 && !VIsual_active | |
7015 && 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
|
7016 { |
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
|
7017 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
|
7018 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
|
7019 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
|
7020 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
|
7021 } |
7 | 7022 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7023 // 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
|
7024 // set again below when halfway a mapping. |
7 | 7025 if (!p_im) |
7026 restart_edit = 0; | |
7027 #ifdef FEAT_CMDWIN | |
7028 if (cmdwin_type != 0) | |
7029 { | |
7030 cmdwin_result = K_IGNORE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7031 got_int = FALSE; // don't stop executing autocommands et al. |
7 | 7032 return; |
7033 } | |
7034 #endif | |
7035 } | |
24012
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7036 #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
|
7037 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
|
7038 { |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7039 // 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
|
7040 // 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
|
7041 // loop. |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7042 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
|
7043 return; |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7044 } |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
7045 #endif |
7 | 7046 |
7047 if (VIsual_active) | |
7048 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7049 end_visual_mode(); // stop Visual |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7050 check_cursor_col(); // make sure cursor is not beyond EOL |
7 | 7051 curwin->w_set_curswant = TRUE; |
7052 redraw_curbuf_later(INVERTED); | |
7053 } | |
5735 | 7054 else if (no_reason) |
6949 | 7055 vim_beep(BO_ESC); |
7 | 7056 clearop(cap->oap); |
7057 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7058 // 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
|
7059 // 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
|
7060 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0) |
7 | 7061 restart_edit = 'a'; |
7062 } | |
7063 | |
7064 /* | |
17984
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7065 * 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
|
7066 */ |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7067 void |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7068 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
|
7069 { |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7070 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
|
7071 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
|
7072 { |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7073 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
|
7074 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7075 // 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
|
7076 // 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
|
7077 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
|
7078 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
|
7079 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
|
7080 } |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7081 else |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7082 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
|
7083 } |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7084 |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
7085 /* |
7 | 7086 * 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
|
7087 * Also handle K_PS, start bracketed paste. |
7 | 7088 */ |
7089 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7090 nv_edit(cmdarg_T *cap) |
7 | 7091 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7092 // <Insert> is equal to "i" |
7 | 7093 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS) |
7094 cap->cmdchar = 'i'; | |
7095 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7096 // in Visual mode "A" and "I" are an operator |
7 | 7097 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
|
7098 { |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7099 #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
|
7100 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
|
7101 { |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
7102 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
|
7103 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
|
7104 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
|
7105 return; |
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 #endif |
7 | 7108 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
|
7109 } |
7 | 7110 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7111 // in Visual mode and after an operator "a" and "i" are for text objects |
5735 | 7112 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i') |
7113 && (cap->oap->op_type != OP_NOP || VIsual_active)) | |
7 | 7114 { |
7115 #ifdef FEAT_TEXTOBJ | |
7116 nv_object(cap); | |
7117 #else | |
7118 clearopbeep(cap->oap); | |
7119 #endif | |
7120 } | |
11892
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7121 #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
|
7122 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
|
7123 { |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7124 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
|
7125 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
|
7126 return; |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7127 } |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
7128 #endif |
7 | 7129 else if (!curbuf->b_p_ma && !p_im) |
7130 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7131 // 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
|
7132 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 7133 clearop(cap->oap); |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7134 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
|
7135 // drop the pasted text |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7136 bracketed_paste(PASTE_INSERT, TRUE, NULL); |
7 | 7137 } |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7138 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
|
7139 { |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7140 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
|
7141 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
|
7142 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7143 // 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
|
7144 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
|
7145 { |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7146 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
|
7147 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
|
7148 } |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7149 else |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7150 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
|
7151 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
|
7152 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
|
7153 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
|
7154 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
|
7155 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
|
7156 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7157 // 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
|
7158 // 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
|
7159 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
|
7160 && 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
|
7161 inc_cursor(); |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7162 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7163 // 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
|
7164 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
|
7165 } |
7 | 7166 else if (!checkclearopq(cap->oap)) |
7167 { | |
7168 switch (cap->cmdchar) | |
7169 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7170 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
|
7171 set_cursor_for_append_to_line(); |
7 | 7172 break; |
7173 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7174 case 'I': // "I"nsert before the first non-blank |
164 | 7175 if (vim_strchr(p_cpo, CPO_INSEND) == NULL) |
7176 beginline(BL_WHITE); | |
7177 else | |
7178 beginline(BL_WHITE|BL_FIX); | |
7 | 7179 break; |
7180 | |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
7181 case K_PS: |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7182 // 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
|
7183 // 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
|
7184 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
|
7185 break; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7186 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7187 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7188 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
|
7189 // 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
|
7190 // column otherwise, also to append after an unprintable char |
7 | 7191 if (virtual_active() |
7192 && (curwin->w_cursor.coladd > 0 | |
7193 || *ml_get_cursor() == NUL | |
7194 || *ml_get_cursor() == TAB)) | |
7195 curwin->w_cursor.coladd++; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
7196 else if (*ml_get_cursor() != NUL) |
7 | 7197 inc_cursor(); |
7198 break; | |
7199 } | |
7200 | |
7201 if (curwin->w_cursor.coladd && cap->cmdchar != 'A') | |
7202 { | |
7203 int save_State = State; | |
7204 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7205 // 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
|
7206 // character past the end of the line |
7 | 7207 State = INSERT; |
7208 coladvance(getviscol()); | |
7209 State = save_State; | |
7210 } | |
7211 | |
7212 invoke_edit(cap, FALSE, cap->cmdchar, FALSE); | |
7213 } | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7214 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
|
7215 // drop the pasted text |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7216 bracketed_paste(PASTE_INSERT, TRUE, NULL); |
7 | 7217 } |
7218 | |
7219 /* | |
7220 * Invoke edit() and take care of "restart_edit" and the return value. | |
7221 */ | |
7222 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7223 invoke_edit( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7224 cmdarg_T *cap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7225 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
|
7226 int cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7227 int startln) |
7 | 7228 { |
7229 int restart_edit_save = 0; | |
7230 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7231 // 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
|
7232 // 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
|
7233 // it. |
7 | 7234 if (repl || !stuff_empty()) |
7235 restart_edit_save = restart_edit; | |
7236 else | |
7237 restart_edit_save = 0; | |
7238 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7239 // Always reset "restart_edit", this is not a restarted edit. |
7 | 7240 restart_edit = 0; |
7241 | |
7242 if (edit(cmd, startln, cap->count1)) | |
7243 cap->retval |= CA_COMMAND_BUSY; | |
7244 | |
7245 if (restart_edit == 0) | |
7246 restart_edit = restart_edit_save; | |
7247 } | |
7248 | |
7249 #ifdef FEAT_TEXTOBJ | |
7250 /* | |
7251 * "a" or "i" while an operator is pending or in Visual mode: object motion. | |
7252 */ | |
7253 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7254 nv_object( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7255 cmdarg_T *cap) |
7 | 7256 { |
7257 int flag; | |
7258 int include; | |
7259 char_u *mps_save; | |
7260 | |
7261 if (cap->cmdchar == 'i') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7262 include = FALSE; // "ix" = inner object: exclude white space |
7 | 7263 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7264 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
|
7265 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7266 // Make sure (), [], {} and <> are in 'matchpairs' |
7 | 7267 mps_save = curbuf->b_p_mps; |
7268 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>"; | |
7269 | |
7270 switch (cap->nchar) | |
7271 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7272 case 'w': // "aw" = a word |
7 | 7273 flag = current_word(cap->oap, cap->count1, include, FALSE); |
7274 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7275 case 'W': // "aW" = a WORD |
7 | 7276 flag = current_word(cap->oap, cap->count1, include, TRUE); |
7277 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7278 case 'b': // "ab" = a braces block |
7 | 7279 case '(': |
7280 case ')': | |
7281 flag = current_block(cap->oap, cap->count1, include, '(', ')'); | |
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 Brackets 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 '[': // "a[" = a [] block |
7 | 7289 case ']': |
7290 flag = current_block(cap->oap, cap->count1, include, '[', ']'); | |
7291 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7292 case '<': // "a<" = a <> block |
7 | 7293 case '>': |
7294 flag = current_block(cap->oap, cap->count1, include, '<', '>'); | |
7295 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7296 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
|
7297 // 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
|
7298 // 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
|
7299 // (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
|
7300 // 1) <b> 2) <b> |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7301 // foobar foobar |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7302 // </b> </b> |
6661 | 7303 cap->retval |= CA_NO_ADJ_OP_END; |
420 | 7304 flag = current_tagblock(cap->oap, cap->count1, include); |
7305 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7306 case 'p': // "ap" = a paragraph |
7 | 7307 flag = current_par(cap->oap, cap->count1, include, 'p'); |
7308 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7309 case 's': // "as" = a sentence |
7 | 7310 flag = current_sent(cap->oap, cap->count1, include); |
7311 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7312 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
|
7313 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
|
7314 case '`': // "a`" = a backtick quoted string |
12 | 7315 flag = current_quote(cap->oap, cap->count1, include, |
7316 cap->nchar); | |
7317 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7318 #if 0 // TODO |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7319 case 'S': // "aS" = a section |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7320 case 'f': // "af" = a filename |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7321 case 'u': // "au" = a URL |
7 | 7322 #endif |
7323 default: | |
7324 flag = FAIL; | |
7325 break; | |
7326 } | |
7327 | |
7328 curbuf->b_p_mps = mps_save; | |
7329 if (flag == FAIL) | |
7330 clearopbeep(cap->oap); | |
7331 adjust_cursor_col(); | |
7332 curwin->w_set_curswant = TRUE; | |
7333 } | |
7334 #endif | |
7335 | |
7336 /* | |
7337 * "q" command: Start/stop recording. | |
7338 * "q:", "q/", "q?": edit command-line in command-line window. | |
7339 */ | |
7340 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7341 nv_record(cmdarg_T *cap) |
7 | 7342 { |
7343 if (cap->oap->op_type == OP_FORMAT) | |
7344 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7345 // "gqq" is the same as "gqgq": format line |
7 | 7346 cap->cmdchar = 'g'; |
7347 cap->nchar = 'q'; | |
7348 nv_operator(cap); | |
7349 } | |
7350 else if (!checkclearop(cap->oap)) | |
7351 { | |
7352 #ifdef FEAT_CMDWIN | |
7353 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') | |
7354 { | |
7355 stuffcharReadbuff(cap->nchar); | |
7356 stuffcharReadbuff(K_CMDWIN); | |
7357 } | |
7358 else | |
7359 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7360 // (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
|
7361 // 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
|
7362 if (reg_executing == 0 && do_record(cap->nchar) == FAIL) |
7 | 7363 clearopbeep(cap->oap); |
7364 } | |
7365 } | |
7366 | |
7367 /* | |
7368 * Handle the "@r" command. | |
7369 */ | |
7370 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7371 nv_at(cmdarg_T *cap) |
7 | 7372 { |
7373 if (checkclearop(cap->oap)) | |
7374 return; | |
7375 #ifdef FEAT_EVAL | |
7376 if (cap->nchar == '=') | |
7377 { | |
7378 if (get_expr_register() == NUL) | |
7379 return; | |
7380 } | |
7381 #endif | |
7382 while (cap->count1-- && !got_int) | |
7383 { | |
1034 | 7384 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL) |
7 | 7385 { |
7386 clearopbeep(cap->oap); | |
7387 break; | |
7388 } | |
7389 line_breakcheck(); | |
7390 } | |
7391 } | |
7392 | |
7393 /* | |
7394 * Handle the CTRL-U and CTRL-D commands. | |
7395 */ | |
7396 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7397 nv_halfpage(cmdarg_T *cap) |
7 | 7398 { |
7399 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1) | |
7400 || (cap->cmdchar == Ctrl_D | |
7401 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)) | |
7402 clearopbeep(cap->oap); | |
7403 else if (!checkclearop(cap->oap)) | |
7404 halfpage(cap->cmdchar == Ctrl_D, cap->count0); | |
7405 } | |
7406 | |
7407 /* | |
7408 * Handle "J" or "gJ" command. | |
7409 */ | |
7410 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7411 nv_join(cmdarg_T *cap) |
7 | 7412 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7413 if (VIsual_active) // join the visual lines |
7 | 7414 nv_operator(cap); |
5735 | 7415 else if (!checkclearop(cap->oap)) |
7 | 7416 { |
7417 if (cap->count0 <= 1) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7418 cap->count0 = 2; // default for join is two lines! |
7 | 7419 if (curwin->w_cursor.lnum + cap->count0 - 1 > |
7420 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
|
7421 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7422 // 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
|
7423 if (cap->count0 <= 2) |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7424 { |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7425 clearopbeep(cap->oap); |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7426 return; |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7427 } |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7428 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
|
7429 - curwin->w_cursor.lnum + 1; |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7430 } |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7431 |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7432 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
|
7433 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
|
7434 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE); |
7 | 7435 } |
7436 } | |
7437 | |
7438 /* | |
7439 * "P", "gP", "p" and "gp" commands. | |
7440 */ | |
7441 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7442 nv_put(cmdarg_T *cap) |
7 | 7443 { |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7444 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
|
7445 } |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7446 |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7447 /* |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7448 * "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
|
7449 * "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
|
7450 */ |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7451 static void |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7452 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
|
7453 { |
7 | 7454 int regname = 0; |
7455 void *reg1 = NULL, *reg2 = NULL; | |
84 | 7456 int empty = FALSE; |
236 | 7457 int was_visual = FALSE; |
7 | 7458 int dir; |
7459 int flags = 0; | |
7460 | |
7461 if (cap->oap->op_type != OP_NOP) | |
7462 { | |
7463 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7464 // "dp" is ":diffput" |
7 | 7465 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p') |
7466 { | |
7467 clearop(cap->oap); | |
6314 | 7468 nv_diffgetput(TRUE, cap->opcount); |
7 | 7469 } |
7470 else | |
7471 #endif | |
7472 clearopbeep(cap->oap); | |
7473 } | |
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
|
7474 #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
|
7475 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
|
7476 { |
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
|
7477 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
|
7478 } |
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 #endif |
7 | 7480 else |
7481 { | |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7482 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
|
7483 { |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7484 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
|
7485 ? FORWARD : BACKWARD; |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7486 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
|
7487 } |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7488 else |
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 == 'P' |
24752
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
7490 || ((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
|
7491 && cap->nchar == 'P')) ? BACKWARD : FORWARD; |
7 | 7492 prep_redo_cmd(cap); |
7493 if (cap->cmdchar == 'g') | |
7494 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
|
7495 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
|
7496 flags |= PUT_BLOCK_INNER; |
7 | 7497 |
7498 if (VIsual_active) | |
7499 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7500 // 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
|
7501 // 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
|
7502 // 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
|
7503 // overwrites if the old contents is being put. |
236 | 7504 was_visual = TRUE; |
7 | 7505 regname = cap->oap->regname; |
5735 | 7506 #ifdef FEAT_CLIPBOARD |
7 | 7507 adjust_clip_reg(®name); |
5735 | 7508 #endif |
5682 | 7509 if (regname == 0 || regname == '"' |
4013 | 7510 || VIM_ISDIGIT(regname) || regname == '-' |
5735 | 7511 #ifdef FEAT_CLIPBOARD |
7 | 7512 || (clip_unnamed && (regname == '*' || regname == '+')) |
5735 | 7513 #endif |
7 | 7514 |
7515 ) | |
7516 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7517 // 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
|
7518 // put, save it first. |
7 | 7519 reg1 = get_register(regname, TRUE); |
7520 } | |
7521 | |
17787
92e0996e1cb8
patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents:
17730
diff
changeset
|
7522 // Now delete the selected text. Avoid messages here. |
7 | 7523 cap->cmdchar = 'd'; |
7524 cap->nchar = NUL; | |
7525 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
|
7526 ++msg_silent; |
7 | 7527 nv_operator(cap); |
7528 do_pending_operator(cap, 0, FALSE); | |
84 | 7529 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
|
7530 --msg_silent; |
7 | 7531 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7532 // delete PUT_LINE_BACKWARD; |
7 | 7533 cap->oap->regname = regname; |
7534 | |
7535 if (reg1 != NULL) | |
7536 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7537 // 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
|
7538 // it first. Then put back what was there before the delete. |
7 | 7539 reg2 = get_register(regname, FALSE); |
7540 put_register(regname, reg1); | |
7541 } | |
7542 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7543 // 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
|
7544 // 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
|
7545 // characterwise, split a line when putting lines. |
7 | 7546 if (VIsual_mode == 'V') |
7547 flags |= PUT_LINE; | |
7548 else if (VIsual_mode == 'v') | |
7549 flags |= PUT_LINE_SPLIT; | |
7550 if (VIsual_mode == Ctrl_V && dir == FORWARD) | |
7551 flags |= PUT_LINE_FORWARD; | |
7552 dir = BACKWARD; | |
7553 if ((VIsual_mode != 'V' | |
7554 && curwin->w_cursor.col < curbuf->b_op_start.col) | |
7555 || (VIsual_mode == 'V' | |
7556 && 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
|
7557 // 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
|
7558 // forward. |
7 | 7559 dir = FORWARD; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7560 // May have been reset in do_put(). |
5365 | 7561 VIsual_active = TRUE; |
7 | 7562 } |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
7563 do_put(cap->oap->regname, NULL, dir, cap->count1, flags); |
7 | 7564 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7565 // If a register was saved, put it back now. |
7 | 7566 if (reg2 != NULL) |
7567 put_register(regname, reg2); | |
236 | 7568 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7569 // 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
|
7570 // be the most useful, since the original text was removed. |
236 | 7571 if (was_visual) |
7572 { | |
690 | 7573 curbuf->b_visual.vi_start = curbuf->b_op_start; |
7574 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
|
7575 // need to adjust cursor position |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
7576 if (*p_sel == 'e') |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
7577 inc(&curbuf->b_visual.vi_end); |
236 | 7578 } |
7579 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7580 // 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
|
7581 // line that needs to be deleted now. |
84 | 7582 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL) |
817 | 7583 { |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
7584 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
|
7585 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1); |
817 | 7586 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7587 // 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
|
7588 // line. |
817 | 7589 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
7590 { | |
7591 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
7592 coladvance((colnr_T)MAXCOL); | |
7593 } | |
7594 } | |
7 | 7595 auto_format(FALSE, TRUE); |
7596 } | |
7597 } | |
7598 | |
7599 /* | |
7600 * "o" and "O" commands. | |
7601 */ | |
7602 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7603 nv_open(cmdarg_T *cap) |
7 | 7604 { |
7605 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7606 // "do" is ":diffget" |
7 | 7607 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o') |
7608 { | |
7609 clearop(cap->oap); | |
6314 | 7610 nv_diffgetput(FALSE, cap->opcount); |
7 | 7611 } |
7612 else | |
7613 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7614 if (VIsual_active) // switch start and end of visual |
7 | 7615 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
|
7616 #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
|
7617 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
|
7618 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
|
7619 #endif |
7 | 7620 else |
7621 n_opencmd(cap); | |
7622 } | |
7623 | |
7624 #ifdef FEAT_NETBEANS_INTG | |
7625 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7626 nv_nbcmd(cmdarg_T *cap) |
7 | 7627 { |
7628 netbeans_keycommand(cap->nchar); | |
7629 } | |
7630 #endif | |
7631 | |
7632 #ifdef FEAT_DND | |
7633 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7634 nv_drop(cmdarg_T *cap UNUSED) |
7 | 7635 { |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
7636 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND); |
7 | 7637 } |
7638 #endif | |
203 | 7639 |
7640 /* | |
7641 * Trigger CursorHold event. | |
7642 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the | |
7643 * input buffer. "did_cursorhold" is set to avoid retriggering. | |
7644 */ | |
7645 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7646 nv_cursorhold(cmdarg_T *cap) |
203 | 7647 { |
7648 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf); | |
7649 did_cursorhold = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7650 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now |
226 | 7651 } |