annotate src/normal.c @ 27418:6ecfb8d99353 v8.2.4237

patch 8.2.4237: record buffer wrong if character in Select mode was not typed Commit: https://github.com/vim/vim/commit/fbf4f1ca159028382eaeb3bfc31bb6bb96dbb67a Author: zeertzjq <zeertzjq@outlook.com> Date: Fri Jan 28 12:50:43 2022 +0000 patch 8.2.4237: record buffer wrong if character in Select mode was not typed Problem: Record buffer wrong if character in Select mode was not typed. Solution: Only delete the tail from the record buffer if the character was typed. (closes #9650)
author Bram Moolenaar <Bram@vim.org>
date Fri, 28 Jan 2022 14:00:04 +0100
parents 722db0819111
children 41e0dcf38521
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 * normal.c: Contains the main routine for processing characters in command
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * mode. Communicates closely with the code in ops.c to handle
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 * the operators.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18
2667
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
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
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 * nv_*(): functions called to handle Normal and Visual mode commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 * n_*(): functions called to handle Normal mode commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 * v_*(): functions called to handle Visual mode commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 #endif
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
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);
27263
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
92 static void nv_redo_or_register(cmdarg_T *cap);
7803
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
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 * Function to be called for a Normal or Visual mode command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 * The argument is a cmdarg_T.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 */
7803
37c929c4a073 commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
135 typedef void (*nv_func_T)(cmdarg_T *cap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
137 // Values for cmd_flags.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
138 #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
139 #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
140 #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
141 #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
142
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
143 #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
144 #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
145 #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
146 #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
147 #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
148 #define NV_NCW 0x200 // not allowed in command-line window
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151 * Generally speaking, every Normal mode command should either clear any
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 * pending operator (with *clearop*()), or set the motion type variable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 * oap->motion_type.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 * When a cursor motion command is made, it is marked as being a character or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 * line oriented motion. Then, if an operator is in effect, the operation
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 * becomes character or line oriented accordingly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 * This table contains one entry for every Normal or Visual mode command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 * The order doesn't matter, init_normal_cmds() will create a sorted index.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 * It is faster when all keys from zero to '~' are present.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 static const struct nv_cmd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
167 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
168 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
169 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
170 short cmd_arg; // value for ca.arg
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 } nv_cmds[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 {NUL, nv_error, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 {Ctrl_A, nv_addsub, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 {Ctrl_B, nv_page, NV_STS, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 {Ctrl_C, nv_esc, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 {Ctrl_D, nv_halfpage, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 {Ctrl_E, nv_scroll_line, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 {Ctrl_F, nv_page, NV_STS, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 {Ctrl_G, nv_ctrlg, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 {Ctrl_H, nv_ctrlh, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 {Ctrl_I, nv_pcmark, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 {NL, nv_down, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 {Ctrl_K, nv_error, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 {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
186 {CAR, nv_down, 0, TRUE},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 {Ctrl_N, nv_down, NV_STS, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 {Ctrl_O, nv_ctrlo, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 {Ctrl_P, nv_up, NV_STS, FALSE},
167
c93c9cad9618 updated for version 7.0051
vimboss
parents: 164
diff changeset
190 {Ctrl_Q, nv_visual, 0, FALSE},
27263
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
191 {Ctrl_R, nv_redo_or_register, 0, 0},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 {Ctrl_S, nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 {Ctrl_T, nv_tagpop, NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 {Ctrl_U, nv_halfpage, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 {Ctrl_V, nv_visual, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 {'V', nv_visual, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 {'v', nv_visual, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 {Ctrl_W, nv_window, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 {Ctrl_X, nv_addsub, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 {Ctrl_Y, nv_scroll_line, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 {Ctrl_Z, nv_suspend, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 {ESC, nv_esc, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 {Ctrl_RSB, nv_ident, NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 {Ctrl_HAT, nv_hat, NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 {Ctrl__, nv_error, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 {' ', nv_right, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 {'!', nv_operator, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 {'#', nv_ident, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 {'$', nv_dollar, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 {'%', nv_percent, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 {'&', nv_optrans, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 {'(', nv_brace, 0, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 {')', nv_brace, 0, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 {'*', nv_ident, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 {'+', nv_down, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 {',', nv_csearch, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 {'-', nv_up, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 {'.', nv_dot, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 {'/', nv_search, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 {'0', nv_beginline, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 {'1', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 {'2', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 {'3', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 {'4', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 {'5', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 {'6', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 {'7', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 {'8', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 {'9', nv_ignore, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 {':', nv_colon, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 {';', nv_csearch, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 {'<', nv_operator, NV_RL, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 {'=', nv_operator, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 {'>', nv_operator, NV_RL, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 {'?', nv_search, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 {'@', nv_at, NV_NCH_NOP, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240 {'A', nv_edit, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 {'B', nv_bck_word, 0, 1},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 {'C', nv_abbrev, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 {'D', nv_abbrev, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 {'E', nv_wordcmd, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 {'G', nv_goto, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 {'H', nv_scroll, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 {'I', nv_edit, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 {'J', nv_join, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 {'K', nv_ident, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 {'L', nv_scroll, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 {'M', nv_scroll, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 {'N', nv_next, 0, SEARCH_REV},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 {'O', nv_open, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 {'P', nv_put, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 {'Q', nv_exmode, NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 {'R', nv_Replace, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 {'S', nv_subst, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 {'U', nv_Undo, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 {'W', nv_wordcmd, 0, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262 {'X', nv_abbrev, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 {'Y', nv_abbrev, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 {'\\', nv_error, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267 {']', nv_brackets, NV_NCH_ALW, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 {'_', nv_lineop, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 {'`', nv_gomark, NV_NCH_ALW, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 {'a', nv_edit, NV_NCH, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272 {'b', nv_bck_word, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 {'c', nv_operator, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 {'d', nv_operator, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 {'e', nv_wordcmd, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 {'h', nv_left, NV_RL, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 {'i', nv_edit, NV_NCH, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 {'j', nv_down, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 {'k', nv_up, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282 {'l', nv_right, NV_RL, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 {'m', nv_mark, NV_NCH_NOP, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 {'n', nv_next, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 {'o', nv_open, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 {'p', nv_put, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 {'q', nv_record, NV_NCH, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289 {'s', nv_subst, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 {'u', nv_undo, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 {'w', nv_wordcmd, 0, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293 {'x', nv_abbrev, NV_KEEPREG, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294 {'y', nv_operator, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 {'z', nv_zet, NV_NCH_ALW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 {'{', nv_findpar, 0, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 {'|', nv_pipe, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 {'}', nv_findpar, 0, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 {'~', nv_tilde, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
301 // pound sign
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302 {POUND, nv_ident, 0, 0},
2409
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2378
diff changeset
303 {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
304 {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
305 {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
306 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 {K_LEFTMOUSE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 {K_LEFTDRAG, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 {K_LEFTRELEASE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 {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
312 {K_MOUSEMOVE, nv_mouse, 0, 0},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
313 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 {K_MIDDLEDRAG, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 {K_MIDDLERELEASE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 {K_RIGHTMOUSE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
317 {K_RIGHTDRAG, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318 {K_RIGHTRELEASE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 {K_X1MOUSE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 {K_X1DRAG, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 {K_X1RELEASE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
322 {K_X2MOUSE, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
323 {K_X2DRAG, nv_mouse, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
324 {K_X2RELEASE, nv_mouse, 0, 0},
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
325 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
326 {K_NOP, nv_nop, 0, 0},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327 {K_INS, nv_edit, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
328 {K_KINS, nv_edit, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
329 {K_BS, nv_ctrlh, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
331 {K_S_UP, nv_page, NV_SS, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
332 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 {K_S_DOWN, nv_page, NV_SS, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
337 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
338 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
340 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
341 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
342 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
343 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
344 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
345 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346 {K_S_END, nv_end, NV_SS, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 {K_S_HOME, nv_home, NV_SS, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 {K_DEL, nv_abbrev, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 {K_KDEL, nv_abbrev, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 {K_UNDO, nv_kundo, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 {K_HELP, nv_help, NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 {K_F1, nv_help, NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357 {K_XF1, nv_help, NV_NCW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 {K_SELECT, nv_select, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 #endif
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
363 #ifdef FEAT_GUI_TABLINE
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
364 {K_TABLINE, nv_tabline, 0, 0},
686
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
365 {K_TABMENU, nv_tabmenu, 0, 0},
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
366 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 #ifdef FEAT_NETBEANS_INTG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 #ifdef FEAT_DND
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 {K_DROP, nv_drop, NV_STS, 0},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 #endif
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
373 {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
374 {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
375 {K_COMMAND, nv_colon, 0, 0},
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
376 {K_SCRIPT_COMMAND, nv_colon, 0, 0},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
379 // 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
380 #define NV_CMDS_SIZE ARRAY_LENGTH(nv_cmds)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381
26226
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
382 #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
383 // Sorted index of commands in nv_cmds[].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 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
385 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
387 // The highest index for which
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
388 // nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389 static int nv_max_linear;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
390
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
391 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 * Compare functions for qsort() below, that checks the command character
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
393 * through the index in nv_cmd_idx[].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
394 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
396 nv_compare(const void *s1, const void *s2)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
397 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 int c1, c2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
400 // The commands are sorted on absolute value.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 c1 = nv_cmds[*(const short *)s1].cmd_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
402 c2 = nv_cmds[*(const short *)s2].cmd_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 if (c1 < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 c1 = -c1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 if (c2 < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406 c2 = -c2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 return c1 - c2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 * Initialize the nv_cmd_idx[] table.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
414 init_normal_cmds(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
415 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
418 // Fill the index table with a one to one relation.
1877
b5c1cb6f8d56 updated for version 7.2-174
vimboss
parents: 1866
diff changeset
419 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
420 nv_cmd_idx[i] = i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
421
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
422 // Sort the commands by the command character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
423 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
425 // Find the first entry that can't be indexed by the command character.
1877
b5c1cb6f8d56 updated for version 7.2-174
vimboss
parents: 1866
diff changeset
426 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 nv_max_linear = i - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433 * Search for a command in the commands table.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
434 * Returns -1 for invalid command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
435 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
436 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
437 find_command(int cmdchar)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 int idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 int top, bot;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
444 // A multi-byte character is never a command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 if (cmdchar >= 0x100)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
448 // 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
449 // negative value, but are sorted on their absolute value.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 if (cmdchar < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 cmdchar = -cmdchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
453 // 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
454 // nv_cmd_idx[].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 if (cmdchar <= nv_max_linear)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 return nv_cmd_idx[cmdchar];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
458 // Perform a binary search.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 bot = nv_max_linear + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 top = NV_CMDS_SIZE - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 idx = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 while (bot <= top)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 i = (top + bot) / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 if (c < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 c = -c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 if (cmdchar == c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 idx = nv_cmd_idx[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 if (cmdchar > c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474 bot = i + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 top = i - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 return idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 /*
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
482 * Handle the count before a normal command and set cap->count0.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
483 */
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
484 static int
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
485 normal_cmd_get_count(
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
486 cmdarg_T *cap,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
487 int c,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
488 int toplevel UNUSED,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
489 int set_prevcount UNUSED,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
490 int *ctrl_w,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
491 int *need_flushbuf UNUSED)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
492 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
493 getcount:
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
494 if (!(VIsual_active && VIsual_select))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
495 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
496 // Handle a count before a command and compute ca.count0.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
497 // Note that '0' is a command and not the start of a count, but it's
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
498 // part of a count after other digits.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
499 while ((c >= '1' && c <= '9')
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
500 || (cap->count0 != 0 && (c == K_DEL || c == K_KDEL
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
501 || c == '0')))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
502 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
503 if (c == K_DEL || c == K_KDEL)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
504 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
505 cap->count0 /= 10;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
506 #ifdef FEAT_CMDL_INFO
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
507 del_from_showcmd(4); // delete the digit and ~@%
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
508 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
509 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
510 else if (cap->count0 > 99999999L)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
511 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
512 cap->count0 = 999999999L;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
513 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
514 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
515 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
516 cap->count0 = cap->count0 * 10 + (c - '0');
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
517 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
518 #ifdef FEAT_EVAL
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
519 // Set v:count here, when called from main() and not a stuffed
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
520 // command, so that v:count can be used in an expression mapping
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
521 // right after the count. Do set it for redo.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
522 if (toplevel && readbuf1_empty())
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
523 set_vcount_ca(cap, &set_prevcount);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
524 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
525 if (*ctrl_w)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
526 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
527 ++no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
528 ++allow_keys; // no mapping for nchar, but keys
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
529 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
530 ++no_zero_mapping; // don't map zero here
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
531 c = plain_vgetc();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
532 LANGMAP_ADJUST(c, TRUE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
533 --no_zero_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
534 if (*ctrl_w)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
535 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
536 --no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
537 --allow_keys;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
538 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
539 #ifdef FEAT_CMDL_INFO
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
540 *need_flushbuf |= add_to_showcmd(c);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
541 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
542 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
543
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
544 // If we got CTRL-W there may be a/another count
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
545 if (c == Ctrl_W && !*ctrl_w && cap->oap->op_type == OP_NOP)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
546 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
547 *ctrl_w = TRUE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
548 cap->opcount = cap->count0; // remember first count
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
549 cap->count0 = 0;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
550 ++no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
551 ++allow_keys; // no mapping for nchar, but keys
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
552 c = plain_vgetc(); // get next character
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
553 LANGMAP_ADJUST(c, TRUE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
554 --no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
555 --allow_keys;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
556 #ifdef FEAT_CMDL_INFO
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
557 *need_flushbuf |= add_to_showcmd(c);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
558 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
559 goto getcount; // jump back
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
560 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
561 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
562
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
563 if (c == K_CURSORHOLD)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
564 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
565 // Save the count values so that ca.opcount and ca.count0 are exactly
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
566 // the same when coming back here after handling K_CURSORHOLD.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
567 cap->oap->prev_opcount = cap->opcount;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
568 cap->oap->prev_count0 = cap->count0;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
569 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
570 else if (cap->opcount != 0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
571 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
572 // If we're in the middle of an operator (including after entering a
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
573 // yank buffer with '"') AND we had a count before the operator, then
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
574 // that count overrides the current value of ca.count0.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
575 // What this means effectively, is that commands like "3dw" get turned
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
576 // into "d3w" which makes things fall into place pretty neatly.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
577 // If you give a count before AND after the operator, they are
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
578 // multiplied.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
579 if (cap->count0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
580 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
581 if (cap->opcount >= 999999999L / cap->count0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
582 cap->count0 = 999999999L;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
583 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
584 cap->count0 *= cap->opcount;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
585 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
586 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
587 cap->count0 = cap->opcount;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
588 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
589
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
590 // Always remember the count. It will be set to zero (on the next call,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
591 // above) when there is no pending operator.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
592 // When called from main(), save the count for use by the "count" built-in
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
593 // variable.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
594 cap->opcount = cap->count0;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
595 cap->count1 = (cap->count0 == 0 ? 1 : cap->count0);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
596
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
597 #ifdef FEAT_EVAL
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
598 // Only set v:count when called from main() and not a stuffed command.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
599 // Do set it for redo.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
600 if (toplevel && readbuf1_empty())
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
601 set_vcount(cap->count0, cap->count1, set_prevcount);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
602 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
603
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
604 return c;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
605 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
606
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
607 /*
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
608 * Returns TRUE if the normal command (cap) needs a second character.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
609 */
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
610 static int
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
611 normal_cmd_needs_more_chars(cmdarg_T *cap, short_u cmd_flags)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
612 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
613 return ((cmd_flags & NV_NCH)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
614 && (((cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
615 && cap->oap->op_type == OP_NOP)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
616 || (cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
617 || (cap->cmdchar == 'q'
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
618 && cap->oap->op_type == OP_NOP
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
619 && reg_recording == 0
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
620 && reg_executing == 0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
621 || ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
622 && (cap->oap->op_type != OP_NOP || VIsual_active))));
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
623 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
624
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
625 /*
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
626 * Get one or more additional characters for a normal command.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
627 * Return the updated command index (if changed).
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
628 */
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
629 static int
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
630 normal_cmd_get_more_chars(
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
631 int idx_arg,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
632 cmdarg_T *cap,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
633 int *need_flushbuf UNUSED)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
634 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
635 int idx = idx_arg;
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
636 int c;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
637 int *cp;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
638 int repl = FALSE; // get character for replace mode
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
639 int lit = FALSE; // get extra character literally
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
640 int langmap_active = FALSE; // using :lmap mappings
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
641 int lang; // getting a text character
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
642 #ifdef HAVE_INPUT_METHOD
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
643 int save_smd; // saved value of p_smd
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
644 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
645
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
646 ++no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
647 ++allow_keys; // no mapping for nchar, but allow key codes
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
648 // Don't generate a CursorHold event here, most commands can't handle
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
649 // it, e.g., nv_replace(), nv_csearch().
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
650 did_cursorhold = TRUE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
651 if (cap->cmdchar == 'g')
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
652 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
653 /*
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
654 * For 'g' get the next character now, so that we can check for
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
655 * "gr", "g'" and "g`".
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
656 */
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
657 cap->nchar = plain_vgetc();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
658 LANGMAP_ADJUST(cap->nchar, TRUE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
659 #ifdef FEAT_CMDL_INFO
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
660 *need_flushbuf |= add_to_showcmd(cap->nchar);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
661 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
662 if (cap->nchar == 'r' || cap->nchar == '\'' || cap->nchar == '`'
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
663 || cap->nchar == Ctrl_BSL)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
664 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
665 cp = &cap->extra_char; // need to get a third character
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
666 if (cap->nchar != 'r')
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
667 lit = TRUE; // get it literally
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
668 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
669 repl = TRUE; // get it in replace mode
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
670 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
671 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
672 cp = NULL; // no third character needed
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
673 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
674 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
675 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
676 if (cap->cmdchar == 'r') // get it in replace mode
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
677 repl = TRUE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
678 cp = &cap->nchar;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
679 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
680 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
681
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
682 /*
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
683 * Get a second or third character.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
684 */
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
685 if (cp != NULL)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
686 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
687 if (repl)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
688 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
689 State = REPLACE; // pretend Replace mode
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
690 #ifdef CURSOR_SHAPE
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
691 ui_cursor_shape(); // show different cursor shape
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
692 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
693 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
694 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
695 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
696 // Allow mappings defined with ":lmap".
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
697 --no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
698 --allow_keys;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
699 if (repl)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
700 State = LREPLACE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
701 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
702 State = LANGMAP;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
703 langmap_active = TRUE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
704 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
705 #ifdef HAVE_INPUT_METHOD
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
706 save_smd = p_smd;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
707 p_smd = FALSE; // Don't let the IM code show the mode here
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
708 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
709 im_set_active(TRUE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
710 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
711 if ((State & INSERT) && !p_ek)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
712 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
713 #ifdef FEAT_JOB_CHANNEL
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
714 ch_log_output = TRUE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
715 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
716 // Disable bracketed paste and modifyOtherKeys here, we won't
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
717 // recognize the escape sequences with 'esckeys' off.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
718 out_str(T_BD);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
719 out_str(T_CTE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
720 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
721
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
722 *cp = plain_vgetc();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
723
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
724 if ((State & INSERT) && !p_ek)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
725 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
726 #ifdef FEAT_JOB_CHANNEL
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
727 ch_log_output = TRUE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
728 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
729 // Re-enable bracketed paste mode and modifyOtherKeys
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
730 out_str(T_BE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
731 out_str(T_CTI);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
732 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
733
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
734 if (langmap_active)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
735 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
736 // Undo the decrement done above
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
737 ++no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
738 ++allow_keys;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
739 State = NORMAL_BUSY;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
740 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
741 #ifdef HAVE_INPUT_METHOD
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
742 if (lang)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
743 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
744 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
745 im_save_status(&curbuf->b_p_iminsert);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
746 im_set_active(FALSE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
747 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
748 p_smd = save_smd;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
749 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
750 State = NORMAL_BUSY;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
751 #ifdef FEAT_CMDL_INFO
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
752 *need_flushbuf |= add_to_showcmd(*cp);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
753 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
754
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
755 if (!lit)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
756 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
757 #ifdef FEAT_DIGRAPHS
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
758 // Typing CTRL-K gets a digraph.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
759 if (*cp == Ctrl_K
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
760 && ((nv_cmds[idx].cmd_flags & NV_LANG)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
761 || cp == &cap->extra_char)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
762 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
763 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
764 c = get_digraph(FALSE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
765 if (c > 0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
766 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
767 *cp = c;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
768 # ifdef FEAT_CMDL_INFO
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
769 // Guessing how to update showcmd here...
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
770 del_from_showcmd(3);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
771 *need_flushbuf |= add_to_showcmd(*cp);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
772 # endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
773 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
774 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
775 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
776
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
777 // adjust chars > 127, except after "tTfFr" commands
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
778 LANGMAP_ADJUST(*cp, !lang);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
779 #ifdef FEAT_RIGHTLEFT
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
780 // adjust Hebrew mapped char
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
781 if (p_hkmap && lang && KeyTyped)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
782 *cp = hkmap(*cp);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
783 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
784 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
785
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
786 // When the next character is CTRL-\ a following CTRL-N means the
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
787 // command is aborted and we go to Normal mode.
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
788 if (cp == &cap->extra_char
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
789 && cap->nchar == Ctrl_BSL
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
790 && (cap->extra_char == Ctrl_N || cap->extra_char == Ctrl_G))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
791 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
792 cap->cmdchar = Ctrl_BSL;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
793 cap->nchar = cap->extra_char;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
794 idx = find_command(cap->cmdchar);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
795 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
796 else if ((cap->nchar == 'n' || cap->nchar == 'N') && cap->cmdchar == 'g')
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
797 cap->oap->op_type = get_op_type(*cp, NUL);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
798 else if (*cp == Ctrl_BSL)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
799 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
800 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
801
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
802 // There is a busy wait here when typing "f<C-\>" and then
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
803 // something different from CTRL-N. Can't be avoided.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
804 while ((c = vpeekc()) <= 0 && towait > 0L)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
805 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
806 do_sleep(towait > 50L ? 50L : towait, FALSE);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
807 towait -= 50L;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
808 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
809 if (c > 0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
810 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
811 c = plain_vgetc();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
812 if (c != Ctrl_N && c != Ctrl_G)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
813 vungetc(c);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
814 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
815 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
816 cap->cmdchar = Ctrl_BSL;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
817 cap->nchar = c;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
818 idx = find_command(cap->cmdchar);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
819 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
820 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
821 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
822
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
823 // When getting a text character and the next character is a
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
824 // multi-byte character, it could be a composing character.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
825 // However, don't wait for it to arrive. Also, do enable mapping,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
826 // because if it's put back with vungetc() it's too late to apply
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
827 // mapping.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
828 --no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
829 while (enc_utf8 && lang && (c = vpeekc()) > 0
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
830 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
831 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
832 c = plain_vgetc();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
833 if (!utf_iscomposing(c))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
834 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
835 vungetc(c); // it wasn't, put it back
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
836 break;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
837 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
838 else if (cap->ncharC1 == 0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
839 cap->ncharC1 = c;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
840 else
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
841 cap->ncharC2 = c;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
842 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
843 ++no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
844 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
845 --no_mapping;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
846 --allow_keys;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
847
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
848 return idx;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
849 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
850
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
851 /*
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
852 * Returns TRUE if after processing a normal mode command, need to wait for a
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
853 * moment when a message is displayed that will be overwritten by the mode
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
854 * message.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
855 */
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
856 static int
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
857 normal_cmd_need_to_wait_for_msg(cmdarg_T *cap, pos_T *old_pos)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
858 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
859 // In Visual mode and with "^O" in Insert mode, a short message will be
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
860 // overwritten by the mode message. Wait a bit, until a key is hit.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
861 // In Visual mode, it's more important to keep the Visual area updated
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
862 // than keeping a message (e.g. from a /pat search).
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
863 // Only do this if the command was typed, not from a mapping.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
864 // Don't wait when emsg_silent is non-zero.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
865 // Also wait a bit after an error message, e.g. for "^O:".
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
866 // Don't redraw the screen, it would remove the message.
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
867 return ( ((p_smd
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
868 && msg_silent == 0
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
869 && (restart_edit != 0
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
870 || (VIsual_active
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
871 && old_pos->lnum == curwin->w_cursor.lnum
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
872 && old_pos->col == curwin->w_cursor.col)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
873 )
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
874 && (clear_cmdline
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
875 || redraw_cmdline)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
876 && (msg_didout || (msg_didany && msg_scroll))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
877 && !msg_nowait
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
878 && KeyTyped)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
879 || (restart_edit != 0
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
880 && !VIsual_active
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
881 && (msg_scroll
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
882 || emsg_on_display)))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
883 && cap->oap->regname == 0
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
884 && !(cap->retval & CA_COMMAND_BUSY)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
885 && stuff_empty()
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
886 && typebuf_typed()
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
887 && emsg_silent == 0
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
888 && !in_assert_fails
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
889 && !did_wait_return
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
890 && cap->oap->op_type == OP_NOP);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
891 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
892
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
893 /*
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
894 * After processing a normal mode command, wait for a moment when a message is
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
895 * displayed that will be overwritten by the mode message.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
896 */
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
897 static void
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
898 normal_cmd_wait_for_msg(void)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
899 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
900 int save_State = State;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
901
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
902 // Draw the cursor with the right shape here
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
903 if (restart_edit != 0)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
904 State = INSERT;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
905
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
906 // If need to redraw, and there is a "keep_msg", redraw before the
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
907 // delay
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
908 if (must_redraw && keep_msg != NULL && !emsg_on_display)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
909 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
910 char_u *kmsg;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
911
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
912 kmsg = keep_msg;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
913 keep_msg = NULL;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
914 // Showmode() will clear keep_msg, but we want to use it anyway.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
915 // First update w_topline.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
916 setcursor();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
917 update_screen(0);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
918 // now reset it, otherwise it's put in the history again
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
919 keep_msg = kmsg;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
920
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
921 kmsg = vim_strsave(keep_msg);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
922 if (kmsg != NULL)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
923 {
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
924 msg_attr((char *)kmsg, keep_msg_attr);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
925 vim_free(kmsg);
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
926 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
927 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
928 setcursor();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
929 #ifdef CURSOR_SHAPE
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
930 ui_cursor_shape(); // may show different cursor shape
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
931 #endif
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
932 cursor_on();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
933 out_flush();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
934 if (msg_scroll || emsg_on_display)
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
935 ui_delay(1003L, TRUE); // wait at least one second
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
936 ui_delay(3003L, FALSE); // wait up to three seconds
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
937 State = save_State;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
938
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
939 msg_scroll = FALSE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
940 emsg_on_display = FALSE;
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
941 }
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
942
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
943 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
944 * Execute a command in Normal mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
947 normal_cmd(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
948 oparg_T *oap,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
949 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
950 {
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
951 cmdarg_T ca; // command arguments
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
952 int c;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
953 int ctrl_w = FALSE; // got CTRL-W command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
954 int old_col = curwin->w_curswant;
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
955 int need_flushbuf = FALSE; // need to call out_flush()
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
956 pos_T old_pos; // cursor position before command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
957 int mapped_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
958 static int old_mapped_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
959 int idx;
1751
aeac63ad9430 updated for version 7.2-048
vimboss
parents: 1743
diff changeset
960 int set_prevcount = FALSE;
21405
5324acb43fea patch 8.2.1253: CTRL-K in Insert mode gets <CursorHold> inserted
Bram Moolenaar <Bram@vim.org>
parents: 20754
diff changeset
961 int save_did_cursorhold = did_cursorhold;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
962
20007
aadd1cae2ff5 patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents: 19681
diff changeset
963 CLEAR_FIELD(ca); // also resets ca.retval
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
964 ca.oap = oap;
1692
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
965
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
966 // 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
967 // "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
968 // remembered in "opcount".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
969 ca.opcount = opcount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
970
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
971 // If there is an operator pending, then the command we take this time
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
972 // will terminate it. Finish_op tells us to finish the operation before
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
973 // returning this time (unless the operation was cancelled).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974 #ifdef CURSOR_SHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 c = finish_op;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 finish_op = (oap->op_type != OP_NOP);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
978 #ifdef CURSOR_SHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 if (finish_op != c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
980 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
981 ui_cursor_shape(); // may show different cursor shape
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
982 # ifdef FEAT_MOUSESHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
983 update_mouseshape(-1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
984 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
985 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
986 #endif
26042
6b39ab99e367 patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents: 25994
diff changeset
987 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
988
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
989 // 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
990 // count.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 if (!finish_op && !oap->regname)
1751
aeac63ad9430 updated for version 7.2-048
vimboss
parents: 1743
diff changeset
992 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993 ca.opcount = 0;
1751
aeac63ad9430 updated for version 7.2-048
vimboss
parents: 1743
diff changeset
994 #ifdef FEAT_EVAL
aeac63ad9430 updated for version 7.2-048
vimboss
parents: 1743
diff changeset
995 set_prevcount = TRUE;
aeac63ad9430 updated for version 7.2-048
vimboss
parents: 1743
diff changeset
996 #endif
aeac63ad9430 updated for version 7.2-048
vimboss
parents: 1743
diff changeset
997 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
998
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
999 // 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
1000 // 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
1001 // "3 * 2".
1692
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1002 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1003 {
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1004 ca.opcount = oap->prev_opcount;
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1005 ca.count0 = oap->prev_count0;
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1006 oap->prev_opcount = 0;
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1007 oap->prev_count0 = 0;
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1008 }
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1009
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1010 mapped_len = typebuf_maplen();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1011
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1012 State = NORMAL_BUSY;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1013 #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
1014 dont_scroll = FALSE; // allow scrolling here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1015 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1016
2667
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1017 #ifdef FEAT_EVAL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1018 // 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
1019 // 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
1020 // when there is no count. Do set it for redo.
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5600
diff changeset
1021 if (toplevel && readbuf1_empty())
2667
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1022 set_vcount_ca(&ca, &set_prevcount);
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1023 #endif
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1024
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1025 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1026 * Get the command character from the user.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1027 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1028 c = safe_vgetc();
7703
39251e981d1f commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents: 7578
diff changeset
1029 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1030
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1031 // If a mapping was started in Visual or Select mode, remember the length
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1032 // of the mapping. This is used below to not return to Insert mode for as
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1033 // long as the mapping is being executed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1034 if (restart_edit == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1035 old_mapped_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1036 else if (old_mapped_len
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
1037 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1038 old_mapped_len = typebuf_maplen();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1039
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1040 if (c == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1041 c = K_ZERO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1043 // In Select mode, typed text replaces the selection.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044 if (VIsual_active
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 && VIsual_select
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1046 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1047 {
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
1048 int len;
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
1049
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1050 // 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
1051 // '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
1052 // restart automatically.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1053 // 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
1054 // be mapped in Insert mode. Required for ":lmap" to work.
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
1055 len = ins_char_typebuf(vgetc_char, vgetc_mod_mask);
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
1056
27418
6ecfb8d99353 patch 8.2.4237: record buffer wrong if character in Select mode was not typed
Bram Moolenaar <Bram@vim.org>
parents: 27400
diff changeset
1057 // When recording and gotchars() was called the character will be
6ecfb8d99353 patch 8.2.4237: record buffer wrong if character in Select mode was not typed
Bram Moolenaar <Bram@vim.org>
parents: 27400
diff changeset
1058 // recorded again, remove the previous recording.
6ecfb8d99353 patch 8.2.4237: record buffer wrong if character in Select mode was not typed
Bram Moolenaar <Bram@vim.org>
parents: 27400
diff changeset
1059 if (KeyTyped)
6ecfb8d99353 patch 8.2.4237: record buffer wrong if character in Select mode was not typed
Bram Moolenaar <Bram@vim.org>
parents: 27400
diff changeset
1060 ungetchars(len);
26929
9975bd408d6c patch 8.2.3993: when recording a change in Select mode char appears twice
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
1061
275
fb70e333c94e updated for version 7.0074
vimboss
parents: 268
diff changeset
1062 if (restart_edit != 0)
fb70e333c94e updated for version 7.0074
vimboss
parents: 268
diff changeset
1063 c = 'd';
fb70e333c94e updated for version 7.0074
vimboss
parents: 268
diff changeset
1064 else
fb70e333c94e updated for version 7.0074
vimboss
parents: 268
diff changeset
1065 c = 'c';
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1066 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
1067 old_mapped_len = 0; // do go to Insert mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1069
26468
2fc13817b100 patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents: 26258
diff changeset
1070 // If the window was made so small that nothing shows, make it at least one
2fc13817b100 patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents: 26258
diff changeset
1071 // line and one column when typing a command.
2fc13817b100 patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents: 26258
diff changeset
1072 if (KeyTyped && !KeyStuffed)
2fc13817b100 patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents: 26258
diff changeset
1073 win_ensure_size();
2fc13817b100 patch 8.2.3764: cannot see any text when window was made zero lines
Bram Moolenaar <Bram@vim.org>
parents: 26258
diff changeset
1074
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1075 #ifdef FEAT_CMDL_INFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1076 need_flushbuf = add_to_showcmd(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1077 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1078
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1079 // Get the command count
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1080 c = normal_cmd_get_count(&ca, c, toplevel, set_prevcount, &ctrl_w,
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1081 &need_flushbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1083 // Find the command character in the table of commands.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1084 // For CTRL-W we already got nchar when looking for a count.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1085 if (ctrl_w)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1087 ca.nchar = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 ca.cmdchar = Ctrl_W;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091 ca.cmdchar = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1092 idx = find_command(ca.cmdchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093 if (idx < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1095 // Not a known command: beep.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 clearopbeep(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 goto normal_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 }
631
68a196b7504d updated for version 7.0182
vimboss
parents: 620
diff changeset
1099
633
7437be625546 updated for version 7.0183
vimboss
parents: 631
diff changeset
1100 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
631
68a196b7504d updated for version 7.0182
vimboss
parents: 620
diff changeset
1101 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1102 // This command is not allowed while editing a cmdline: beep.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1103 clearopbeep(oap);
633
7437be625546 updated for version 7.0183
vimboss
parents: 631
diff changeset
1104 text_locked_msg();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1105 goto normal_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 }
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
1107 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
1108 goto normal_end;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1110 // In Visual/Select mode, a few keys are handled in a special way.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1111 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1112 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1113 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1114 if (km_stopsel
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1115 && (nv_cmds[idx].cmd_flags & NV_STS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1116 && !(mod_mask & MOD_MASK_SHIFT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1117 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1118 end_visual_mode();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1119 redraw_curbuf_later(INVERTED);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1120 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1121
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1122 // Keys that work different when 'keymodel' contains "startsel"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1123 if (km_startsel)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1124 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1125 if (nv_cmds[idx].cmd_flags & NV_SS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1126 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1127 unshift_special(&ca);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1128 idx = find_command(ca.cmdchar);
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 835
diff changeset
1129 if (idx < 0)
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 835
diff changeset
1130 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1131 // Just in case
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 835
diff changeset
1132 clearopbeep(oap);
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 835
diff changeset
1133 goto normal_end;
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 835
diff changeset
1134 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1135 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1136 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137 && (mod_mask & MOD_MASK_SHIFT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1138 mod_mask &= ~MOD_MASK_SHIFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1139 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1140 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1141
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1142 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1143 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144 && (nv_cmds[idx].cmd_flags & NV_RL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1146 // 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
1147 // 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
1148 // to "dl".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1149 switch (ca.cmdchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1150 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1151 case 'l': ca.cmdchar = 'h'; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1152 case K_RIGHT: ca.cmdchar = K_LEFT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1155 case 'h': ca.cmdchar = 'l'; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1156 case K_LEFT: ca.cmdchar = K_RIGHT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1157 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1158 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1159 case '>': ca.cmdchar = '<'; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1160 case '<': ca.cmdchar = '>'; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1161 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1162 idx = find_command(ca.cmdchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1163 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1164 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1165
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1166 // Get additional characters if we need them.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1167 if (normal_cmd_needs_more_chars(&ca, nv_cmds[idx].cmd_flags))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1168 idx = normal_cmd_get_more_chars(idx, &ca, &need_flushbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1169
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 #ifdef FEAT_CMDL_INFO
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1171 // Flush the showcmd characters onto the screen so we can see them while
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1172 // the command is being executed. Only do this when the shown command was
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1173 // actually displayed, otherwise this will slow down a lot when executing
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1174 // mappings.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 if (need_flushbuf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1176 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1177 #endif
1727
b61422c4dc7a updated for version 7.2-025
vimboss
parents: 1712
diff changeset
1178 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
1179 {
b530a433fe7d patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents: 21405
diff changeset
1180 if (ex_normal_busy)
b530a433fe7d patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents: 21405
diff changeset
1181 did_cursorhold = save_did_cursorhold;
b530a433fe7d patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents: 21405
diff changeset
1182 else
b530a433fe7d patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents: 21405
diff changeset
1183 did_cursorhold = FALSE;
b530a433fe7d patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents: 21405
diff changeset
1184 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1185
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 State = NORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1187
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1188 if (ca.nchar == ESC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 clearop(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1191 if (restart_edit == 0 && goto_im())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 restart_edit = 'a';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 goto normal_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1195
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 22
diff changeset
1196 if (ca.cmdchar != K_IGNORE)
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 22
diff changeset
1197 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1198 msg_didout = FALSE; // don't scroll screen up for normal command
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 22
diff changeset
1199 msg_col = 0;
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 22
diff changeset
1200 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1202 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
1203
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1204 // 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
1205 // mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206 if (!VIsual_active && km_startsel)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 if (nv_cmds[idx].cmd_flags & NV_SS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1209 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1210 start_selection();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 unshift_special(&ca);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 idx = find_command(ca.cmdchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1215 && (mod_mask & MOD_MASK_SHIFT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1216 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 start_selection();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1218 mod_mask &= ~MOD_MASK_SHIFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1222 // Execute the command!
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1223 // Call the command function found in the commands table.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 ca.arg = nv_cmds[idx].cmd_arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 (nv_cmds[idx].cmd_func)(&ca);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1227 // If we didn't start or finish an operator, reset oap->regname, unless we
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1228 // need it later.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 if (!finish_op
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 && !oap->op_type
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 clearop(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 #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
1235 reset_reg_var();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1236 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1237 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1239 // 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
1240 // character or "z333<cr>".
36
125e80798a85 updated for version 7.0021
vimboss
parents: 33
diff changeset
1241 if (old_mapped_len > 0)
125e80798a85 updated for version 7.0021
vimboss
parents: 33
diff changeset
1242 old_mapped_len = typebuf_maplen();
125e80798a85 updated for version 7.0021
vimboss
parents: 33
diff changeset
1243
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1244 // If an operation is pending, handle it. But not for K_IGNORE or
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1245 // K_MOUSEMOVE.
24586
b7f58be68c02 patch 8.2.2832: operator cancelled by moving mouse when using popup
Bram Moolenaar <Bram@vim.org>
parents: 24341
diff changeset
1246 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
1247 do_pending_operator(&ca, old_col, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248
27354
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1249 // Wait for a moment when a message is displayed that will be overwritten
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1250 // by the mode message.
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1251 if (normal_cmd_need_to_wait_for_msg(&ca, &old_pos))
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1252 normal_cmd_wait_for_msg();
469e643b7729 patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27273
diff changeset
1253
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1254 // Finish up after executing a Normal mode command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 normal_end:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 msg_nowait = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258
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
1259 #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
1260 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
1261 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
1262 #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
1263
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1264 // Reset finish_op, in case it was set
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1265 #ifdef CURSOR_SHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 c = finish_op;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268 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
1269 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1270 #ifdef CURSOR_SHAPE
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1271 // 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
1272 // mode or did a replace command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 if (c || ca.cmdchar == 'r')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1275 ui_cursor_shape(); // may show different cursor shape
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276 # ifdef FEAT_MOUSESHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 update_mouseshape(-1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1282 #ifdef FEAT_CMDL_INFO
1692
c8c47cc9dab1 updated for version 7.2b-025
vimboss
parents: 1689
diff changeset
1283 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
1284 && ca.cmdchar != K_CURSORHOLD)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 clear_showcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1287
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1288 checkpcmark(); // check if we moved since setting pcmark
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1289 vim_free(ca.searchbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1290
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1291 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1292 mb_adjust_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1293
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1294 if (curwin->w_p_scb && toplevel)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1295 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1296 validate_cursor(); // may need to update w_leftcol
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1297 do_check_scrollbind(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1298 }
13384
6740c499de13 patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1299
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
1300 if (curwin->w_p_crb && toplevel)
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
1301 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1302 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
1303 do_check_cursorbind();
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
1304 }
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
1305
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
1306 #ifdef FEAT_TERMINAL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1307 // 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
1308 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
1309 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
1310 #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
1311
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1312 // May restart edit(), if we got here with CTRL-O in Insert mode (but not
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1313 // if still inside a mapping that started in Visual mode).
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1314 // May switch from Visual to Select mode after CTRL-O command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1315 if ( oap->op_type == OP_NOP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1316 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1317 || restart_VIsual_select == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1318 && !(ca.retval & CA_COMMAND_BUSY)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1319 && stuff_empty()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1320 && oap->regname == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1321 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1322 if (restart_VIsual_select == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1323 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1324 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
1325 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 showmode();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1327 restart_VIsual_select = 0;
27263
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
1328 VIsual_select_reg = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1329 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
1330 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1331 (void)edit(restart_edit, FALSE, 1L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1332 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1334 if (restart_VIsual_select == 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 restart_VIsual_select = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1337 // Save count before an operator for next time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1338 opcount = ca.opcount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1339 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1340
2667
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1341 #ifdef FEAT_EVAL
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1342 /*
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1343 * Set v:count and v:count1 according to "cap".
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1344 * Set v:prevcount only when "set_prevcount" is TRUE.
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1345 */
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1346 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1347 set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
2667
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1348 {
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1349 long count = cap->count0;
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1350
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1351 // multiply with cap->opcount the same way as above
2667
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1352 if (cap->opcount != 0)
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1353 count = cap->opcount * (count == 0 ? 1 : count);
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1354 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
1355 *set_prevcount = FALSE; // only set v:prevcount once
2667
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1356 }
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1357 #endif
a53e7d3fd741 updated for version 7.3.086
Bram Moolenaar <bram@vim.org>
parents: 2603
diff changeset
1358
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1359 /*
19681
e21c22c58e2b patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
1360 * Check if highlighting for Visual mode is possible, give a warning message
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1361 * if not.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1362 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1363 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1364 check_visual_highlight(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1365 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1366 static int did_check = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1367
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1368 if (full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1369 {
11158
501f46f7644c patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
1370 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
1371 msg(_("Warning: terminal cannot highlight"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1372 did_check = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1373 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1374 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1375
23021
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1376 #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
1377 /*
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1378 * 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
1379 */
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1380 static void
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1381 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
1382 {
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1383 oparg_T oa;
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1384 yankreg_T *reg;
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1385
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1386 clear_oparg(&oa);
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1387 oa.regname = regname;
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1388 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
1389 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
1390 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
1391 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
1392 free_register(reg);
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1393 }
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1394 #endif
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1395
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1396 /*
638
593092a5362b updated for version 7.0185
vimboss
parents: 633
diff changeset
1397 * End Visual mode.
24788
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1398 * 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
1399 * from do_pending_operator().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1400 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1401 void
24788
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1402 end_visual_mode()
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1403 {
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1404 end_visual_mode_keep_button();
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1405 reset_held_button();
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1406 }
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1407
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1408 void
b36ceac30454 patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents: 24784
diff changeset
1409 end_visual_mode_keep_button()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1410 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1411 #ifdef FEAT_CLIPBOARD
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1412 // If we are using the clipboard, then remember what was selected in case
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1413 // we need to paste it somewhere while we still own the selection.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1414 // Only do this when the clipboard is already owned. Don't want to grab
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1415 // the selection when hitting ESC.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416 if (clip_star.available && clip_star.owned)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417 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
1418
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1419 # 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
1420 // 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
1421 // 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
1422 if (has_textyankpost())
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1423 {
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1424 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
1425 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
1426 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
1427 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
1428 }
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1429 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1430 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1431
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1432 VIsual_active = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1433 setmouse();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1434 mouse_dragging = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1435
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1436 // Save the current VIsual area for '< and '> marks, and "gv"
690
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
1437 curbuf->b_visual.vi_mode = VIsual_mode;
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
1438 curbuf->b_visual.vi_start = VIsual;
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
1439 curbuf->b_visual.vi_end = curwin->w_cursor;
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
1440 curbuf->b_visual.vi_curswant = curwin->w_curswant;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1441 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1442 curbuf->b_visual_mode_eval = VIsual_mode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1443 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1444 if (!virtual_active())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1445 curwin->w_cursor.coladd = 0;
6979
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1446 may_clear_cmdline();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1447
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1448 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
1449 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1451
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1452 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1453 * Reset VIsual_active and VIsual_reselect.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1454 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1456 reset_VIsual_and_resel(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1457 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1458 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 end_visual_mode();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1461 redraw_curbuf_later(INVERTED); // delete the inversion later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463 VIsual_reselect = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1466 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1467 * Reset VIsual_active and VIsual_reselect if it's set.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1468 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1469 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1470 reset_VIsual(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1471 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1472 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1473 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 end_visual_mode();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1475 redraw_curbuf_later(INVERTED); // delete the inversion later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476 VIsual_reselect = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1477 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1478 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1479
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1480 void
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1481 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
1482 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1483 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
1484 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1485 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
1486 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
1487 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1488 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1489
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1490 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1491 * Check for a balloon-eval special item to include when searching for an
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1492 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493 * Returns TRUE if the character at "*ptr" should be included.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1494 * "dir" is FORWARD or BACKWARD, the direction of searching.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1495 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1496 * "bnp" points to a counter for square brackets.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1498 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1499 find_is_eval_item(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1500 char_u *ptr,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1501 int *colp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1502 int *bnp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1503 int dir)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1504 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1505 // Accept everything inside [].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1506 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1507 ++*bnp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1508 if (*bnp > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1509 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1510 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1511 --*bnp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1512 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1513 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1515 // skip over "s.var"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1516 if (*ptr == '.')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1517 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1518
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1519 // two-character item: s->var
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1520 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1521 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1522 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1523 *colp += dir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1524 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1526 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1527 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1529 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1530 * Find the identifier under or to the right of the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1531 * "find_type" can have one of three values:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1532 * 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
1533 * 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
1534 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
184
476198990769 updated for version 7.0057
vimboss
parents: 180
diff changeset
1535 * FIND_EVAL: find text useful for C program debugging
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 * 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
1538 * 1. Search forward for the start of an identifier/text. Doesn't move if
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1539 * 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
1540 * 2. Search backward for the start of this identifier/text.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1541 * This doesn't match the real Vi but I like it a little better and it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1542 * 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
1543 * 3. Search forward to the end of this identifier/text.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544 * When FIND_IDENT isn't defined, we backup until a blank.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 *
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1546 * 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
1547 * 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
1548 * points into the current buffer line and is not always NUL terminated.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550 int
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1551 find_ident_under_cursor(char_u **text, int find_type)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1552 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1553 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
1554 curwin->w_cursor.col, text, NULL, find_type);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1555 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1556
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1557 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 * Like find_ident_under_cursor(), but for any window and any position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 * However: Uses 'iskeyword' from the current window!.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1560 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1561 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1562 find_ident_at_pos(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1563 win_T *wp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1564 linenr_T lnum,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1565 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
1566 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
1567 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
1568 int find_type)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1569 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1570 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
1571 int col = 0; // init to shut up GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1572 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1573 int this_class = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1574 int prev_class;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1575 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
1576 int bn = 0; // bracket nesting
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1577
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1578 // if i == 0: try to find an identifier
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
1579 // if i == 1: try to find any non-white text
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1580 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1581 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1582 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1583 /*
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1584 * 1. skip to start of identifier/text
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1585 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1586 col = startcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1587 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1588 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1589 while (ptr[col] != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1590 {
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1591 // Stop at a ']' to evaluate "a[x]".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1592 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1593 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 this_class = mb_get_class(ptr + col);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1595 if (this_class != 0 && (i == 1 || this_class != 1))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1596 break;
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 447
diff changeset
1597 col += (*mb_ptr2len)(ptr + col);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1598 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1600 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601 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
1602 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1603 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1604 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1605 ++col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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 // When starting on a ']' count it, so that we include the '['.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1608 bn = ptr[col] == ']';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1609
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1610 /*
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1611 * 2. Back up to start of identifier/text.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1612 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1613 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1614 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1615 // Remember class of character under cursor.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1616 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1617 this_class = mb_get_class((char_u *)"a");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1618 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1619 this_class = mb_get_class(ptr + col);
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 820
diff changeset
1620 while (col > 0 && this_class != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1621 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1622 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1623 prev_class = mb_get_class(ptr + prevcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1624 if (this_class != prev_class
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1625 && (i == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1626 || prev_class == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1627 || (find_type & FIND_IDENT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1628 && (!(find_type & FIND_EVAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1629 || prevcol == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1630 || !find_is_eval_item(ptr + prevcol, &prevcol,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1631 &bn, BACKWARD))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1632 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1633 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1634 col = prevcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1635 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1636
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1637 // 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
1638 // identifier, stop searching.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1639 if (this_class > 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1640 this_class = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1641 if (!(find_type & FIND_STRING) || this_class == 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1642 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1643 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1644 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1645 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1646 while (col > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1647 && ((i == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1648 ? 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
1649 : (!VIM_ISWHITE(ptr[col - 1])
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1650 && (!(find_type & FIND_IDENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1651 || !vim_iswordc(ptr[col - 1]))))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1652 || ((find_type & FIND_EVAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1653 && col > 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1654 && find_is_eval_item(ptr + col - 1, &col,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1655 &bn, BACKWARD))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1656 ))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1657 --col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1658
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1659 // 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
1660 // identifier, stop searching.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1661 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1662 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1663 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1664 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1665
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
1666 if (ptr[col] == NUL || (i == 0
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
1667 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1668 {
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1669 // 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
1670 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
1671 {
df06694b761b patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
1672 if (find_type & FIND_STRING)
26909
aa65d1808bd0 patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26804
diff changeset
1673 emsg(_(e_no_string_under_cursor));
16908
df06694b761b patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
1674 else
26909
aa65d1808bd0 patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26804
diff changeset
1675 emsg(_(e_no_identifier_under_cursor));
16908
df06694b761b patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
1676 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1677 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1678 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1679 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
1680 *text = ptr;
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1681 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
1682 *textcol = col;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1683
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1684 /*
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1685 * 3. Find the end if the identifier/text.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1686 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1687 bn = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1688 startcol -= col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1689 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1690 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1691 {
17316
8813e1626e0a patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents: 17292
diff changeset
1692 // Search for point of changing multibyte character class.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1693 this_class = mb_get_class(ptr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1694 while (ptr[col] != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1695 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1696 : mb_get_class(ptr + col) != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1697 || ((find_type & FIND_EVAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1698 && col <= (int)startcol
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1699 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1700 ))
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 447
diff changeset
1701 col += (*mb_ptr2len)(ptr + col);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1702 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1703 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1704 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
1705 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1706 || ((find_type & FIND_EVAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1707 && col <= (int)startcol
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1708 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1709 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1710 ++col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1711
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1712 return col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1713 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1714
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1715 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1716 * Prepare for redo of a normal command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1717 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1718 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1719 prep_redo_cmd(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1720 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1721 prep_redo(cap->oap->regname, cap->count0,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1722 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1723 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1724
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1725 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1726 * Prepare for redo of any command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1727 * Note that only the last argument can be a multi-byte char.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1728 */
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18128
diff changeset
1729 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1730 prep_redo(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1731 int regname,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1732 long num,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1733 int cmd1,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1734 int cmd2,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1735 int cmd3,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1736 int cmd4,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1737 int cmd5)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1738 {
26226
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
1739 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
1740 }
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
1741
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
1742 /*
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
1743 * 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
1744 */
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
1745 void
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
1746 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
1747 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
1748 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
1749 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
1750 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
1751 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
1752 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
1753 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
1754 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
1755 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1756 ResetRedobuff();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1757 if (regname != 0) // yank from specified buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1758 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1759 AppendCharToRedobuff('"');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1760 AppendCharToRedobuff(regname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1761 }
26226
9a8e9383e4cd patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents: 26159
diff changeset
1762 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
1763 AppendNumberToRedobuff(num1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1764 if (cmd1 != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1765 AppendCharToRedobuff(cmd1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1766 if (cmd2 != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1767 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
1768 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
1769 AppendNumberToRedobuff(num2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770 if (cmd3 != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1771 AppendCharToRedobuff(cmd3);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772 if (cmd4 != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773 AppendCharToRedobuff(cmd4);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1774 if (cmd5 != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1775 AppendCharToRedobuff(cmd5);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1776 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1777
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1778 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1779 * check for operator active and clear it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1780 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1781 * return TRUE if operator was active
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1783 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1784 checkclearop(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1786 if (oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1787 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1788 clearopbeep(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1789 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1790 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1791
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1792 /*
1131
c82da8beb64a updated for version 7.1a
vimboss
parents: 1051
diff changeset
1793 * Check for operator or Visual active. Clear active operator.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1794 *
1131
c82da8beb64a updated for version 7.1a
vimboss
parents: 1051
diff changeset
1795 * Return TRUE if operator or Visual was active.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1796 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1798 checkclearopq(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1799 {
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
1800 if (oap->op_type == OP_NOP && !VIsual_active)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1801 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1802 clearopbeep(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1803 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1804 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1805
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18128
diff changeset
1806 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1807 clearop(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1808 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1809 oap->op_type = OP_NOP;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1810 oap->regname = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1811 oap->motion_force = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1812 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
1813 motion_force = NUL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1814 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1815
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18128
diff changeset
1816 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1817 clearopbeep(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1818 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1819 clearop(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1820 beep_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1821 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1822
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1823 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1824 * Remove the shift modifier from a special key.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1825 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1826 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1827 unshift_special(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1828 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1829 switch (cap->cmdchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1830 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1831 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1832 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1833 case K_S_UP: cap->cmdchar = K_UP; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1834 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1835 case K_S_HOME: cap->cmdchar = K_HOME; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1836 case K_S_END: cap->cmdchar = K_END; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1837 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1838 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1839 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1840
6979
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1841 /*
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1842 * If the mode is currently displayed clear the command line or update the
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1843 * command displayed.
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1844 */
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1845 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1846 may_clear_cmdline(void)
6979
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1847 {
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1848 if (mode_displayed)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1849 clear_cmdline = TRUE; // unshow visual mode later
6979
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1850 #ifdef FEAT_CMDL_INFO
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1851 else
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1852 clear_showcmd();
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1853 #endif
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1854 }
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
1855
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1856 #if defined(FEAT_CMDL_INFO) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1857 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1858 * Routines for displaying a partly typed command
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1859 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1860
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
1861 #define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 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
1863 static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1864 static int showcmd_is_clear = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1865 static int showcmd_visual = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1866
7803
37c929c4a073 commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
1867 static void display_showcmd(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1868
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1869 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1870 clear_showcmd(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1871 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1872 if (!p_sc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1873 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1874
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1875 if (VIsual_active && !char_avail())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1876 {
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
1877 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1878 long lines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1879 colnr_T leftcol, rightcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1880 linenr_T top, bot;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1881
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1882 // Show the size of the Visual area.
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1811
diff changeset
1883 if (cursor_bot)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1884 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1885 top = VIsual.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1886 bot = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1887 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1888 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1889 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1890 top = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1891 bot = VIsual.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1892 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1893 # ifdef FEAT_FOLDING
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1894 // Include closed folds as a whole.
7009
286fd54c7ae3 patch 7.4.822
Bram Moolenaar <bram@vim.org>
parents: 7001
diff changeset
1895 (void)hasFolding(top, &top, NULL);
286fd54c7ae3 patch 7.4.822
Bram Moolenaar <bram@vim.org>
parents: 7001
diff changeset
1896 (void)hasFolding(bot, NULL, &bot);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1897 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1898 lines = bot - top + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1899
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1900 if (VIsual_mode == Ctrl_V)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1901 {
2335
2a5478294078 Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents: 2326
diff changeset
1902 # ifdef FEAT_LINEBREAK
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1811
diff changeset
1903 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
1904 char_u *saved_w_sbr = curwin->w_p_sbr;
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1811
diff changeset
1905
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1906 // Make 'sbr' empty for a moment to get the correct size.
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1811
diff changeset
1907 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
1908 curwin->w_p_sbr = empty_option;
2335
2a5478294078 Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents: 2326
diff changeset
1909 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1910 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
1911 # ifdef FEAT_LINEBREAK
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1811
diff changeset
1912 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
1913 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
1914 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1915 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1916 (long)(rightcol - leftcol + 1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1917 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1918 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1919 sprintf((char *)showcmd_buf, "%ld", lines);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1920 else
2324
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1921 {
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1922 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
1923 int l;
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1924 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
1925 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
1926
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1927 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
1928 {
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1929 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
1930 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
1931 }
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1932 else
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1933 {
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1934 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
1935 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
1936 }
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1937 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
1938 {
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1939 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
1940 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
1941 {
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1942 ++bytes;
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1943 ++chars;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1944 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
1945 }
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1946 bytes += l;
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1947 ++chars;
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1948 s += l;
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1949 }
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1950 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
1951 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
1952 else
0a258a67051d In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
1953 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
1954 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1955 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1956 showcmd_visual = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1959 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960 showcmd_buf[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 showcmd_visual = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1962
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
1963 // Don't actually display something if there is nothing to clear.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1964 if (showcmd_is_clear)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1965 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1966 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1967
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1968 display_showcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1969 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1970
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1971 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1972 * Add 'c' to string of shown command chars.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1973 * Return TRUE if output has been written (and setcursor() has been called).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1974 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1975 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1976 add_to_showcmd(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1977 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1978 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1979 int old_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1980 int extra_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1981 int overflow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1982 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1983 static int ignore[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1984 {
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18291
diff changeset
1985 #ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1986 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1987 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
1988 #endif
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10636
diff changeset
1989 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
1990 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1991 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1992 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
1993 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1994 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
631
68a196b7504d updated for version 7.0182
vimboss
parents: 620
diff changeset
1995 K_CURSORHOLD,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1996 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1997 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1998
641
6a944e0bd5d2 updated for version 7.0186
vimboss
parents: 638
diff changeset
1999 if (!p_sc || msg_silent != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2000 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2001
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2002 if (showcmd_visual)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2003 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2004 showcmd_buf[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2005 showcmd_visual = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2006 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2007
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2008 // Ignore keys that are scrollbar updates and mouse clicks
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2009 if (IS_SPECIAL(c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2010 for (i = 0; ignore[i] != 0; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2011 if (ignore[i] == c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2012 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2013
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2014 p = transchar(c);
5535
40aff213baff updated for version 7.4.116
Bram Moolenaar <bram@vim.org>
parents: 5523
diff changeset
2015 if (*p == ' ')
40aff213baff updated for version 7.4.116
Bram Moolenaar <bram@vim.org>
parents: 5523
diff changeset
2016 STRCPY(p, "<20>");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2017 old_len = (int)STRLEN(showcmd_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2018 extra_len = (int)STRLEN(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2019 overflow = old_len + extra_len - SHOWCMD_COLS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2020 if (overflow > 0)
1362
2f70b8f1f1e3 updated for version 7.1-076
vimboss
parents: 1343
diff changeset
2021 mch_memmove(showcmd_buf, showcmd_buf + overflow,
2f70b8f1f1e3 updated for version 7.1-076
vimboss
parents: 1343
diff changeset
2022 old_len - overflow + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2023 STRCAT(showcmd_buf, p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2024
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2025 if (char_avail())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2026 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2027
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2028 display_showcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2029
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2030 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2031 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2032
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2033 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2034 add_to_showcmd_c(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2035 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2036 if (!add_to_showcmd(c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2037 setcursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2038 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2039
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2040 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2041 * Delete 'len' characters from the end of the shown command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2042 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2043 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2044 del_from_showcmd(int len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2045 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2046 int old_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2047
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2048 if (!p_sc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2049 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2050
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2051 old_len = (int)STRLEN(showcmd_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2052 if (len > old_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2053 len = old_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2054 showcmd_buf[old_len - len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2055
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2056 if (!char_avail())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2057 display_showcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2058 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2059
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2060 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2061 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2062 * something and there is a partial mapping.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2063 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2064 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2065 push_showcmd(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2066 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2067 if (p_sc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2068 STRCPY(old_showcmd_buf, showcmd_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2069 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2070
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2071 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2072 pop_showcmd(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2073 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2074 if (!p_sc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2075 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2076
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2077 STRCPY(showcmd_buf, old_showcmd_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2078
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2079 display_showcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2080 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2081
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2082 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2083 display_showcmd(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2084 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2085 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2086
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2087 cursor_off();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2088
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2089 len = (int)STRLEN(showcmd_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2090 if (len == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2091 showcmd_is_clear = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2092 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2093 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2094 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2095 showcmd_is_clear = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2096 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2097
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2098 // clear the rest of an old message by outputting up to SHOWCMD_COLS
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2099 // spaces
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2100 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2101
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2102 setcursor(); // put cursor back where it belongs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2103 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2104 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2105
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2106 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2107 * When "check" is FALSE, prepare for commands that scroll the window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2108 * When "check" is TRUE, take care of scroll-binding after the window has
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2109 * scrolled. Called from normal_cmd() and edit().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2110 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2111 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2112 do_check_scrollbind(int check)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2113 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2114 static win_T *old_curwin = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2115 static linenr_T old_topline = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2116 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2117 static int old_topfill = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2118 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2119 static buf_T *old_buf = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2120 static colnr_T old_leftcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2121
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2122 if (check && curwin->w_p_scb)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2123 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2124 // 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
2125 // the values.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2126 if (did_syncbind)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2127 did_syncbind = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2128 else if (curwin == old_curwin)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2129 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2130 // Synchronize other windows, as necessary according to
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2131 // 'scrollbind'. Don't do this after an ":edit" command, except
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2132 // when 'diff' is set.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2133 if ((curwin->w_buffer == old_buf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2134 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2135 || curwin->w_p_diff
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2136 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2137 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2138 && (curwin->w_topline != old_topline
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2139 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2140 || curwin->w_topfill != old_topfill
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2141 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2142 || curwin->w_leftcol != old_leftcol))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2143 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2144 check_scrollbind(curwin->w_topline - old_topline,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2145 (long)(curwin->w_leftcol - old_leftcol));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2146 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2147 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2148 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2150 // When switching between windows, make sure that the relative
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2151 // vertical offset is valid for the new window. The relative
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2152 // offset is invalid whenever another 'scrollbind' window has
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2153 // scrolled to a point that would force the current window to
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2154 // scroll past the beginning or end of its buffer. When the
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2155 // resync is performed, some of the other 'scrollbind' windows may
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2156 // need to jump so that the current window's relative position is
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2157 // visible on-screen.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2158 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2159 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2160 curwin->w_scbind_pos = curwin->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2161 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2162
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2163 old_curwin = curwin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2164 old_topline = curwin->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2165 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2166 old_topfill = curwin->w_topfill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2167 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2168 old_buf = curwin->w_buffer;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2169 old_leftcol = curwin->w_leftcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2170 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2171
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2172 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2173 * Synchronize any windows that have "scrollbind" set, based on the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2174 * number of rows by which the current window has changed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2175 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2176 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2177 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2178 check_scrollbind(linenr_T topline_diff, long leftcol_diff)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2179 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2180 int want_ver;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2181 int want_hor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2182 win_T *old_curwin = curwin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2183 buf_T *old_curbuf = curbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2184 int old_VIsual_select = VIsual_select;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2185 int old_VIsual_active = VIsual_active;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2186 colnr_T tgt_leftcol = curwin->w_leftcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2187 long topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2188 long y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2189
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2190 // check 'scrollopt' string for vertical and horizontal scroll options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2191 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2192 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2193 want_ver |= old_curwin->w_p_diff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2194 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2195 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2196
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2197 // loop through the scrollbound windows and scroll accordingly
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2198 VIsual_select = VIsual_active = 0;
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9399
diff changeset
2199 FOR_ALL_WINDOWS(curwin)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2200 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2201 curbuf = curwin->w_buffer;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2202 // skip original window and windows with 'noscrollbind'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2203 if (curwin != old_curwin && curwin->w_p_scb)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2204 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2205 // do the vertical scroll
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2206 if (want_ver)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2207 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2208 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2209 if (old_curwin->w_p_diff && curwin->w_p_diff)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2210 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2211 diff_set_topline(old_curwin, curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2213 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2214 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2215 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2216 curwin->w_scbind_pos += topline_diff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2217 topline = curwin->w_scbind_pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2218 if (topline > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2219 topline = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220 if (topline < 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2221 topline = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2222
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2223 y = topline - curwin->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2224 if (y > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 scrollup(y, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2226 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2227 scrolldown(-y, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2228 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2229
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2230 redraw_later(VALID);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2231 cursor_correct();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2232 curwin->w_redr_status = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2233 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2234
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2235 // do the horizontal scroll
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2236 if (want_hor && curwin->w_leftcol != tgt_leftcol)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2237 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 curwin->w_leftcol = tgt_leftcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 leftcol_changed();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2240 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2241 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2242 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2243
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2244 // reset current-window
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245 VIsual_select = old_VIsual_select;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2246 VIsual_active = old_VIsual_active;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2247 curwin = old_curwin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248 curbuf = old_curbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2249 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2250
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2252 * Command character that's ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2253 * 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
2254 * xon/xoff.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2255 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2257 nv_ignore(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2259 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2260 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2261
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2262 /*
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2263 * Command character that doesn't do anything, but unlike nv_ignore() does
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2264 * start edit(). Used for "startinsert" executed while starting up.
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2265 */
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2266 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2267 nv_nop(cmdarg_T *cap UNUSED)
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2268 {
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2269 }
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2270
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
2271 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2272 * Command character doesn't exist.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2273 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2274 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2275 nv_error(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2276 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2277 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2278 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2279
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2280 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2281 * <Help> and <F1> commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2282 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2283 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2284 nv_help(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2287 ex_help(NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2288 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2290 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2291 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2292 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2293 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2294 nv_addsub(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2295 {
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
2296 #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
2297 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
2298 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
2299 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
2300 #endif
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2301 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
2302 {
7578
fdae4c496775 commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2303 prep_redo_cmd(cap);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2304 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
2305 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
2306 cap->oap->op_type = OP_NOP;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2307 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2308 else if (VIsual_active)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2309 nv_operator(cap);
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
2310 else
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2311 clearop(cap->oap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2312 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2313
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2314 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2315 * CTRL-F, CTRL-B, etc: Scroll page up or down.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2316 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2317 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2318 nv_page(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2319 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2320 if (!checkclearop(cap->oap))
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2321 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2322 if (mod_mask & MOD_MASK_CTRL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2323 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2324 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2325 if (cap->arg == BACKWARD)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2326 goto_tabpage(-(int)cap->count1);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2327 else
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2328 goto_tabpage((int)cap->count0);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2329 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2330 else
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12467
diff changeset
2331 (void)onepage(cap->arg, cap->count1);
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
2332 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2333 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2334
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2335 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2336 * Implementation of "gd" and "gD" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2337 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2338 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2339 nv_gd(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2340 oparg_T *oap,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2341 int nchar,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2342 int thisblock) // 1 for "1gd" and "1gD"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2343 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2344 int len;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2345 char_u *ptr;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2346
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2347 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
2348 || 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
2349 == 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
2350 {
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2351 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
2352 }
5317b0ae4893 patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents: 26094
diff changeset
2353 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
2354 {
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2355 #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
2356 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
2357 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
2358 #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
2359 // 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
2360 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
2361 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
2362 }
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2363 }
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2364
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2365 /*
10251
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2366 * 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
2367 * otherwise.
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2368 */
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2369 static int
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2370 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
2371 {
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2372 int i;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2373 int incomment = FALSE;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2374 int instring = 0;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2375 int prev = 0;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2376
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2377 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
2378 {
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2379 if (instring != 0)
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2380 {
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2381 if (prev != '\\' && line[i] == instring)
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2382 instring = 0;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2383 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2384 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
2385 {
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2386 instring = line[i];
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2387 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2388 else
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 if (incomment)
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2391 {
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2392 if (prev == '*' && line[i] == '/')
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2393 incomment = FALSE;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2394 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2395 else if (prev == '/' && line[i] == '*')
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 incomment = TRUE;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2398 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2399 else if (prev == '/' && line[i] == '/')
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2400 {
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2401 return FALSE;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2402 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2403 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2404
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2405 prev = line[i];
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2406 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2407
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2408 return incomment == FALSE && instring == 0;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2409 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2410
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2411 /*
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2412 * Search for variable declaration of "ptr[len]".
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2413 * When "locally" is TRUE in the current function ("gd"), otherwise in the
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2414 * current file ("gD").
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2415 * When "thisblock" is TRUE check the {} block scope.
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2416 * Return FAIL when not found.
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2417 */
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2418 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2419 find_decl(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2420 char_u *ptr,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2421 int len,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2422 int locally,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2423 int thisblock,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2424 int flags_arg) // flags passed to searchit()
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2425 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2426 char_u *pat;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2427 pos_T old_pos;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2428 pos_T par_pos;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2429 pos_T found_pos;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2430 int t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2431 int save_p_ws;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2432 int save_p_scs;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2433 int retval = OK;
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 936
diff changeset
2434 int incll;
9315
1b4946fa3777 commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents: 9098
diff changeset
2435 int searchflags = flags_arg;
10251
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2436 int valid;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2437
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2438 if ((pat = alloc(len + 7)) == NULL)
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2439 return FAIL;
268
8e3c690f1f3c updated for version 7.0072
vimboss
parents: 249
diff changeset
2440
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2441 // 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
2442 // and "~" causes trouble.
268
8e3c690f1f3c updated for version 7.0072
vimboss
parents: 249
diff changeset
2443 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
8e3c690f1f3c updated for version 7.0072
vimboss
parents: 249
diff changeset
2444 len, ptr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2445 old_pos = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2446 save_p_ws = p_ws;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2447 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
2448 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
2449 p_scs = FALSE; // don't switch ignorecase off now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2450
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2451 // With "gD" go to line 1.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2452 // With "gd" Search back for the start of the current function, then go
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2453 // back until a blank line. If this fails go to line 1.
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 936
diff changeset
2454 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2455 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2456 setpcmark(); // Set in findpar() otherwise
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2457 curwin->w_cursor.lnum = 1;
539
b13dbb7b797c updated for version 7.0153
vimboss
parents: 534
diff changeset
2458 par_pos = curwin->w_cursor;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2459 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2460 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2461 {
539
b13dbb7b797c updated for version 7.0153
vimboss
parents: 534
diff changeset
2462 par_pos = curwin->w_cursor;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2463 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2464 --curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2465 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2466 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2467
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2468 // 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
2469 CLEAR_POS(&found_pos);
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2470 for (;;)
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2471 {
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
2472 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
2473 pat, 1L, searchflags, RE_LAST, NULL);
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2474 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
2475 t = FAIL; // match after start is failure too
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2476
718
7b21554be7a1 updated for version 7.0219
vimboss
parents: 714
diff changeset
2477 if (thisblock && t != FAIL)
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2478 {
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2479 pos_T *pos;
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2480
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2481 // 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
2482 // position where we started the search from.
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2483 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2484 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2485 && pos->lnum < old_pos.lnum)
11366
b16bc115a270 patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
2486 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2487 // 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
2488 // Skip to the end.
11366
b16bc115a270 patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
2489 curwin->w_cursor = *pos;
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2490 continue;
11366
b16bc115a270 patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
2491 }
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2492 }
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
2493
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2494 if (t == FAIL)
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2495 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2496 // If we previously found a valid position, use it.
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2497 if (found_pos.lnum != 0)
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2498 {
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2499 curwin->w_cursor = found_pos;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2500 t = OK;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2501 }
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2502 break;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2503 }
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3537
diff changeset
2504 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2505 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2506 // Ignore this line, continue at start of next line.
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2507 ++curwin->w_cursor.lnum;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2508 curwin->w_cursor.col = 0;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2509 continue;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2510 }
10251
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2511 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
2512
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2513 // 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
2514 // 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
2515 if (!valid && found_pos.lnum != 0)
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2516 {
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2517 curwin->w_cursor = found_pos;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2518 break;
10251
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2519 }
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2520
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2521 // 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
2522 if (valid && !locally)
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2523 break;
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2524 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2525 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2526 // If we previously found a valid position, use it.
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2527 if (found_pos.lnum != 0)
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2528 curwin->w_cursor = found_pos;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2529 break;
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2530 }
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2531
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2532 // 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
2533 // 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
2534 // 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
2535 if (!valid)
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
2536 CLEAR_POS(&found_pos);
10251
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2537 else
bc442c2296a7 commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
2538 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
2539 // 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
2540 // position.
9315
1b4946fa3777 commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents: 9098
diff changeset
2541 searchflags &= ~SEARCH_START;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2542 }
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2543
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2544 if (t == FAIL)
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2545 {
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2546 retval = FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2547 curwin->w_cursor = old_pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2548 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2550 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2551 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
2552 // "n" searches forward now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2553 reset_search_dir();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2555
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2556 vim_free(pat);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2557 p_ws = save_p_ws;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2558 p_scs = save_p_scs;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2559
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
2560 return retval;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2561 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2562
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2563 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2564 * Move 'dist' lines in direction 'dir', counting lines by *screen*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2565 * lines rather than lines in the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2566 * 'dist' must be positive.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2567 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2568 * Return OK if able to move cursor, FAIL otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2569 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2570 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2571 nv_screengo(oparg_T *oap, int dir, long dist)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2573 int linelen = linetabsize(ml_get_curline());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 int retval = OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2575 int atend = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2576 int n;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2577 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
2578 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
2579 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
2580 int width2; // text width for wrapped screen line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2581
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2582 oap->motion_type = MCHAR;
5192
c28202427d71 updated for version 7.4a.022
Bram Moolenaar <bram@vim.org>
parents: 5162
diff changeset
2583 oap->inclusive = (curwin->w_curswant == MAXCOL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2584
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 col_off1 = curwin_col_off();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2586 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
2587 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
2588 width2 = curwin->w_width - col_off2;
6559
22f164bd7e8e updated for version 7.4.606
Bram Moolenaar <bram@vim.org>
parents: 6497
diff changeset
2589 if (width2 == 0)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2590 width2 = 1; // avoid divide by zero
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2591
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2592 if (curwin->w_width != 0)
8643
24b43dd167eb commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents: 8445
diff changeset
2593 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2594 // Instead of sticking at the last character of the buffer line we
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2595 // try to stick in the last column of the screen.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2596 if (curwin->w_curswant == MAXCOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2597 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2598 atend = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2599 validate_virtcol();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2600 if (width1 <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2601 curwin->w_curswant = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2602 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2603 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2604 curwin->w_curswant = width1 - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2605 if (curwin->w_virtcol > curwin->w_curswant)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2606 curwin->w_curswant += ((curwin->w_virtcol
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2607 - curwin->w_curswant - 1) / width2 + 1) * width2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2608 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2609 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2610 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2611 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2612 if (linelen > width1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2613 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2614 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2615 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
2616 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
2617 curwin->w_curswant = n - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2618 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2619
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2620 while (dist--)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2621 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2622 if (dir == BACKWARD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2623 {
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
2624 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
2625 #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
2626 && !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
2627 #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
2628 )
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
2629 // 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
2630 // 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
2631 // which will get clipped to column 0.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2632 curwin->w_curswant -= width2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2633 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2634 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2635 // 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
2636 #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
2637 // 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
2638 // '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
2639 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
2640 (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
2641 &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
2642 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2643 if (curwin->w_cursor.lnum == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2644 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2645 retval = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2646 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2647 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2648 --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
2649
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2650 linelen = linetabsize(ml_get_curline());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2651 if (linelen > width1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2652 curwin->w_curswant += (((linelen - width1 - 1) / width2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2653 + 1) * width2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2654 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2655 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2656 else // dir == FORWARD
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2657 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2658 if (linelen > width1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2659 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2660 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2661 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
2662 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
2663 #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
2664 && !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
2665 #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
2666 )
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2667 // move forward within line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2668 curwin->w_curswant += width2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2669 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2670 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2671 // to next line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2672 #ifdef FEAT_FOLDING
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2673 // Move to the end of a closed fold.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2674 (void)hasFolding(curwin->w_cursor.lnum, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2675 &curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2676 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2677 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2678 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2679 retval = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2680 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2681 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2682 curwin->w_cursor.lnum++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2683 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
2684 // 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
2685 // 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
2686 // 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
2687 // 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
2688 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
2689 curwin->w_curswant -= width2;
2911
c6df8554b39d updated for version 7.3.228
Bram Moolenaar <bram@vim.org>
parents: 2829
diff changeset
2690 linelen = linetabsize(ml_get_curline());
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2691 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2692 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693 }
8643
24b43dd167eb commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents: 8445
diff changeset
2694 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695
5600
d289f2167d70 updated for version 7.4.147
Bram Moolenaar <bram@vim.org>
parents: 5535
diff changeset
2696 if (virtual_active() && atend)
d289f2167d70 updated for version 7.4.147
Bram Moolenaar <bram@vim.org>
parents: 5535
diff changeset
2697 coladvance(MAXCOL);
d289f2167d70 updated for version 7.4.147
Bram Moolenaar <bram@vim.org>
parents: 5535
diff changeset
2698 else
d289f2167d70 updated for version 7.4.147
Bram Moolenaar <bram@vim.org>
parents: 5535
diff changeset
2699 coladvance(curwin->w_curswant);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2700
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2701 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2702 {
6178
2e804ebb3ee8 updated for version 7.4.425
Bram Moolenaar <bram@vim.org>
parents: 6071
diff changeset
2703 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
2704 int c;
6178
2e804ebb3ee8 updated for version 7.4.425
Bram Moolenaar <bram@vim.org>
parents: 6071
diff changeset
2705
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2706 // Check for landing on a character that got split at the end of the
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2707 // last line. We want to advance a screenline, not end up in the same
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2708 // screenline or move two screenlines.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 validate_virtcol();
6178
2e804ebb3ee8 updated for version 7.4.425
Bram Moolenaar <bram@vim.org>
parents: 6071
diff changeset
2710 virtcol = curwin->w_virtcol;
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2711 #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
2712 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
2713 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
2714 #endif
6178
2e804ebb3ee8 updated for version 7.4.425
Bram Moolenaar <bram@vim.org>
parents: 6071
diff changeset
2715
26094
f53f365078dd patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2716 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
2717 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
2718 && (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
2719 && !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
2720 oneright();
f53f365078dd patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2721
6178
2e804ebb3ee8 updated for version 7.4.425
Bram Moolenaar <bram@vim.org>
parents: 6071
diff changeset
2722 if (virtcol > curwin->w_curswant
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 && (curwin->w_curswant < (colnr_T)width1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724 ? (curwin->w_curswant > (colnr_T)width1 / 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2725 : ((curwin->w_curswant - width1) % width2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2726 > (colnr_T)width2 / 2)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2727 --curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2728 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2729
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2730 if (atend)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2731 curwin->w_curswant = MAXCOL; // stick in the last column
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2732
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2733 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2734 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2735
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2736 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2737 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2738 * cap->arg must be TRUE for CTRL-E.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2739 */
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18128
diff changeset
2740 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2741 nv_scroll_line(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 if (!checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2744 scroll_redraw(cap->arg, cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2745 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2746
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2747 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2748 * Scroll "count" lines up or down, and redraw.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2749 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2750 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2751 scroll_redraw(int up, long count)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2752 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2753 linenr_T prev_topline = curwin->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2754 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2755 int prev_topfill = curwin->w_topfill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2756 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2757 linenr_T prev_lnum = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2758
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2759 if (up)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2760 scrollup(count, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2761 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2762 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
2763 if (get_scrolloff_value())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2764 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2765 // 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
2766 // valid, otherwise the screen jumps back at the end of the file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2767 cursor_correct();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2768 check_cursor_moved(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2769 curwin->w_valid |= VALID_TOPLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2770
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2771 // 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
2772 // 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
2773 // first line of the buffer is already on the screen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2774 while (curwin->w_topline == prev_topline
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2775 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2776 && curwin->w_topfill == prev_topfill
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2777 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2778 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2779 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2780 if (up)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2781 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2782 if (curwin->w_cursor.lnum > prev_lnum
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2783 || cursor_down(1L, FALSE) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2784 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2785 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2786 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2787 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2788 if (curwin->w_cursor.lnum < prev_lnum
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2789 || prev_topline == 1L
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2790 || cursor_up(1L, FALSE) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2791 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2792 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2793 // 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
2794 // end of the file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2795 check_cursor_moved(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2796 curwin->w_valid |= VALID_TOPLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2797 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2798 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2799 if (curwin->w_cursor.lnum != prev_lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2800 coladvance(curwin->w_curswant);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2801 redraw_later(VALID);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2802 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2803
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2804 /*
27400
722db0819111 patch 8.2.4228: no tests for clicking in the GUI tabline
Bram Moolenaar <Bram@vim.org>
parents: 27386
diff changeset
2805 * Get the count specified after a 'z' command. Only the 'z<CR>', 'zl', 'zh',
722db0819111 patch 8.2.4228: no tests for clicking in the GUI tabline
Bram Moolenaar <Bram@vim.org>
parents: 27386
diff changeset
2806 * 'z<Left>', and 'z<Right>' commands accept a count after 'z'.
722db0819111 patch 8.2.4228: no tests for clicking in the GUI tabline
Bram Moolenaar <Bram@vim.org>
parents: 27386
diff changeset
2807 * Returns TRUE to process the 'z' command and FALSE to skip it.
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2808 */
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2809 static int
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2810 nv_z_get_count(cmdarg_T *cap, int *nchar_arg)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2811 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2812 int nchar = *nchar_arg;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2813 long n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2814
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2815 // "z123{nchar}": edit the count before obtaining {nchar}
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2816 if (checkclearop(cap->oap))
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2817 return FALSE;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2818 n = nchar - '0';
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2819
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2820 for (;;)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2821 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2822 #ifdef USE_ON_FLY_SCROLL
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2823 dont_scroll = TRUE; // disallow scrolling here
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2824 #endif
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2825 ++no_mapping;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2826 ++allow_keys; // no mapping for nchar, but allow key codes
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2827 nchar = plain_vgetc();
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2828 LANGMAP_ADJUST(nchar, TRUE);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2829 --no_mapping;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2830 --allow_keys;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2831 #ifdef FEAT_CMDL_INFO
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2832 (void)add_to_showcmd(nchar);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2833 #endif
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2834 if (nchar == K_DEL || nchar == K_KDEL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2835 n /= 10;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2836 else if (VIM_ISDIGIT(nchar))
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2837 n = n * 10 + (nchar - '0');
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2838 else if (nchar == CAR)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2839 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2840 #ifdef FEAT_GUI
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2841 need_mouse_correct = TRUE;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2842 #endif
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2843 win_setheight((int)n);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2844 break;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2845 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2846 else if (nchar == 'l'
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2847 || nchar == 'h'
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2848 || nchar == K_LEFT
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2849 || nchar == K_RIGHT)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2850 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2851 cap->count1 = n ? n * cap->count1 : cap->count1;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2852 *nchar_arg = nchar;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2853 return TRUE;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2854 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2855 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2856 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2857 clearopbeep(cap->oap);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2858 break;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2859 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2860 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2861 cap->oap->op_type = OP_NOP;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2862 return FALSE;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2863 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2864
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2865 #ifdef FEAT_SPELL
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2866 /*
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2867 * "zug" and "zuw": undo "zg" and "zw"
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2868 * "zg": add good word to word list
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2869 * "zw": add wrong word to word list
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2870 * "zG": add good word to temp word list
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2871 * "zW": add wrong word to temp word list
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2872 */
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2873 static int
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2874 nv_zg_zw(cmdarg_T *cap, int nchar)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2875 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2876 char_u *ptr = NULL;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2877 int len;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2878 int undo = FALSE;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2879
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2880 if (nchar == 'u')
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2881 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2882 ++no_mapping;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2883 ++allow_keys; // no mapping for nchar, but allow key codes
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2884 nchar = plain_vgetc();
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2885 LANGMAP_ADJUST(nchar, TRUE);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2886 --no_mapping;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2887 --allow_keys;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2888 #ifdef FEAT_CMDL_INFO
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2889 (void)add_to_showcmd(nchar);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2890 #endif
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2891 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2892 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2893 clearopbeep(cap->oap);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2894 return OK;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2895 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2896 undo = TRUE;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2897 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2898
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2899 if (checkclearop(cap->oap))
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2900 return OK;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2901 if (VIsual_active && get_visual_text(cap, &ptr, &len) == FAIL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2902 return FAIL;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2903 if (ptr == NULL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2904 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2905 pos_T pos = curwin->w_cursor;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2906
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2907 // Find bad word under the cursor. When 'spell' is
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2908 // off this fails and find_ident_under_cursor() is
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2909 // used below.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2910 emsg_off++;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2911 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2912 emsg_off--;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2913 if (len != 0 && curwin->w_cursor.col <= pos.col)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2914 ptr = ml_get_pos(&curwin->w_cursor);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2915 curwin->w_cursor = pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2916 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2917
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2918 if (ptr == NULL
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2919 && (len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2920 return FAIL;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2921 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2922 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2923 (nchar == 'G' || nchar == 'W') ? 0 : (int)cap->count1, undo);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2924
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2925 return OK;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2926 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2927 #endif
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2928
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2929 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2930 * Commands that start with "z".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2931 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2932 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2933 nv_zet(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2934 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2935 long n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2936 colnr_T col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2937 int nchar = cap->nchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2938 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2939 long old_fdl = curwin->w_p_fdl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2940 int old_fen = curwin->w_p_fen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2941 #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
2942 long siso = get_sidescrolloff_value();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2943
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2944 if (VIM_ISDIGIT(nchar) && !nv_z_get_count(cap, &nchar))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2945 return;
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2946
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2947 if (
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2948 #ifdef FEAT_FOLDING
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2949 // "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
2950 // 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
2951 // commands.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2952 cap->nchar != 'f' && cap->nchar != 'F'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2953 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2954 && cap->nchar != 'j' && cap->nchar != 'k'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2955 &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2956 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2957 checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2958 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2959
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2960 // For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
2961 // If line number given, set cursor.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2962 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2963 && cap->count0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2964 && cap->count0 != curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2965 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2966 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2967 if (cap->count0 > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2968 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2969 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2970 curwin->w_cursor.lnum = cap->count0;
22
cc049b00ee70 updated for version 7.0014
vimboss
parents: 12
diff changeset
2971 check_cursor_col();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2972 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2973
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2974 switch (nchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2975 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2976 // "z+", "z<CR>" and "zt": put cursor at top of screen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2977 case '+':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2978 if (cap->count0 == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2979 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2980 // 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
2981 validate_botline(); // make sure w_botline is valid
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2982 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2983 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2984 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2985 curwin->w_cursor.lnum = curwin->w_botline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2986 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2987 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2988 case NL:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2989 case CAR:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2990 case K_KENTER:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2991 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
2992 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2993
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2994 case 't': scroll_cursor_top(0, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2995 redraw_later(VALID);
7311
743c258ca3ab commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents: 7241
diff changeset
2996 set_fraction(curwin);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2997 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2998
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
2999 // "z." and "zz": put cursor in middle of screen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3000 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
3001 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3003 case 'z': scroll_cursor_halfway(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3004 redraw_later(VALID);
7311
743c258ca3ab commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents: 7241
diff changeset
3005 set_fraction(curwin);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3006 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3007
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3008 // "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
3009 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
3010 // 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
3011 // bottom of window.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3012 if (cap->count0 != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3013 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3014 scroll_cursor_bot(0, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3015 curwin->w_cursor.lnum = curwin->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3016 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3017 else if (curwin->w_topline == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3018 curwin->w_cursor.lnum = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3019 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3020 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
3021 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3022 case '-':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3023 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
3024 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3026 case 'b': scroll_cursor_bot(0, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3027 redraw_later(VALID);
7311
743c258ca3ab commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents: 7241
diff changeset
3028 set_fraction(curwin);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3029 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3030
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3031 // "zH" - scroll screen right half-page
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3032 case 'H':
12515
972ea22c946f patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents: 12487
diff changeset
3033 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
3034 // FALLTHROUGH
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3035
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3036 // "zh" - scroll screen to the right
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3037 case 'h':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3038 case K_LEFT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3039 if (!curwin->w_p_wrap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3040 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3041 if ((colnr_T)cap->count1 > curwin->w_leftcol)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3042 curwin->w_leftcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3043 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3044 curwin->w_leftcol -= (colnr_T)cap->count1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3045 leftcol_changed();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3046 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3047 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3048
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3049 // "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
3050 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
3051 // FALLTHROUGH
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3052
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3053 // "zl" - scroll screen to the left
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3054 case 'l':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3055 case K_RIGHT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3056 if (!curwin->w_p_wrap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3057 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3058 // scroll the window left
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3059 curwin->w_leftcol += (colnr_T)cap->count1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3060 leftcol_changed();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3061 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3062 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3063
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3064 // "zs" - scroll screen, cursor at the start
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3065 case 's': if (!curwin->w_p_wrap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3066 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3067 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3068 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
3069 col = 0; // like the cursor is in col 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3070 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3071 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3072 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
3073 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
3074 col -= siso;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3075 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3076 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3077 if (curwin->w_leftcol != col)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3078 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3079 curwin->w_leftcol = col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3080 redraw_later(NOT_VALID);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3081 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3082 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3083 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3084
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3085 // "ze" - scroll screen, cursor at the end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3086 case 'e': if (!curwin->w_p_wrap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3087 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3088 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3089 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
3090 col = 0; // like the cursor is in col 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3091 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3092 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3093 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
3094 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
3095 if ((long)col + siso < n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3096 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3097 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
3098 col = col + siso - n + 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3099 if (curwin->w_leftcol != col)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3100 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3101 curwin->w_leftcol = col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3102 redraw_later(NOT_VALID);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3103 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3104 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3105 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3106
24752
1ce39e257f1b patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents: 24731
diff changeset
3107 // "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
3108 case 'P':
1ce39e257f1b patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents: 24731
diff changeset
3109 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
3110 break;
24866
f1121eb17e14 patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents: 24800
diff changeset
3111 // "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
3112 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
3113 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3114 #ifdef FEAT_FOLDING
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3115 // "zF": create fold command
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3116 // "zf": create fold operator
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3117 case 'F':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3118 case 'f': if (foldManualAllowed(TRUE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3119 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3120 cap->nchar = 'f';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3121 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3122 curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3123
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3124 // "zF" is like "zfzf"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3125 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3126 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3127 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3128 finish_op = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3129 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3130 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3131 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3132 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3133 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3134
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3135 // "zd": delete fold at cursor
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3136 // "zD": delete fold at cursor recursively
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3137 case 'd':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3138 case 'D': if (foldManualAllowed(FALSE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3139 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3140 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3141 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3142 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3143 deleteFold(curwin->w_cursor.lnum,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3144 curwin->w_cursor.lnum, nchar == 'D', FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3145 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3146 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3147
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3148 // "zE": erase all folds
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3149 case 'E': if (foldmethodIsManual(curwin))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3150 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3151 clearFolding(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3152 changed_window_setting();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3153 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3154 else if (foldmethodIsMarker(curwin))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3155 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3156 TRUE, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3157 else
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26909
diff changeset
3158 emsg(_(e_cannot_erase_folds_with_current_foldmethod));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3159 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3160
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3161 // "zn": fold none: reset 'foldenable'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3162 case 'n': curwin->w_p_fen = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3163 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3164
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3165 // "zN": fold Normal: set 'foldenable'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3166 case 'N': curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3167 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3168
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3169 // "zi": invert folding: toggle 'foldenable'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3170 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3171 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3172
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3173 // "za": open closed fold or close open fold at cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3174 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3175 openFold(curwin->w_cursor.lnum, cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3176 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3177 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3178 closeFold(curwin->w_cursor.lnum, cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3179 curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3180 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3181 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3182
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3183 // "zA": open fold at cursor recursively
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3184 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3185 openFoldRecurse(curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3186 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3187 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3188 closeFoldRecurse(curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3189 curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3190 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3191 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3192
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3193 // "zo": open fold at cursor or Visual area
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3194 case 'o': if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3195 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3196 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3197 openFold(curwin->w_cursor.lnum, cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3198 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3199
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3200 // "zO": open fold recursively
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3201 case 'O': if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3202 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3203 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3204 openFoldRecurse(curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3205 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3206
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3207 // "zc": close fold at cursor or Visual area
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3208 case 'c': if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3209 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3210 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3211 closeFold(curwin->w_cursor.lnum, cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3212 curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3213 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3214
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3215 // "zC": close fold recursively
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3216 case 'C': if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3217 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3218 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3219 closeFoldRecurse(curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3220 curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3221 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3222
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3223 // "zv": open folds at the cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3224 case 'v': foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3225 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3226
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3227 // "zx": re-apply 'foldlevel' and open folds at the cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3228 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
3229 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
3230 newFoldLevel(); // update right now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3231 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3232 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3233
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3234 // "zX": undo manual opens/closes, re-apply 'foldlevel'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3235 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
3236 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
3237 old_fdl = -1; // force an update
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3238 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3239
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3240 // "zm": fold more
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3241 case 'm': if (curwin->w_p_fdl > 0)
6725
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3242 {
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3243 curwin->w_p_fdl -= cap->count1;
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3244 if (curwin->w_p_fdl < 0)
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3245 curwin->w_p_fdl = 0;
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3246 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3247 old_fdl = -1; // force an update
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3248 curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3249 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3250
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3251 // "zM": close all folds
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3252 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
3253 old_fdl = -1; // force an update
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3254 curwin->w_p_fen = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3255 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3256
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3257 // "zr": reduce folding
6725
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3258 case 'r': curwin->w_p_fdl += cap->count1;
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3259 {
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3260 int d = getDeepestNesting();
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3261
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3262 if (curwin->w_p_fdl >= d)
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3263 curwin->w_p_fdl = d;
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
3264 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3265 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3266
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3267 // "zR": open all folds
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3268 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
3269 old_fdl = -1; // force an update
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3270 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3271
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3272 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
3273 case 'k': // "zk" move to next fold upwards
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3274 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3275 cap->count1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3276 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3277 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3278
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3279 #endif // FEAT_FOLDING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3280
737
59971e227f8c updated for version 7.0222
vimboss
parents: 718
diff changeset
3281 #ifdef FEAT_SPELL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3282 case 'u': // "zug" and "zuw": undo "zg" and "zw"
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3283 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
3284 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
3285 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
3286 case 'W': // "zW": add wrong word to temp word list
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3287 if (nv_zg_zw(cap, nchar) == FAIL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3288 return;
316
96789bc4346a updated for version 7.0083
vimboss
parents: 310
diff changeset
3289 break;
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 316
diff changeset
3290
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3291 case '=': // "z=": suggestions for a badly spelled word
638
593092a5362b updated for version 7.0185
vimboss
parents: 633
diff changeset
3292 if (!checkclearop(cap->oap))
485
13cf73878020 updated for version 7.0133
vimboss
parents: 474
diff changeset
3293 spell_suggest((int)cap->count0);
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 316
diff changeset
3294 break;
310
04bf54c587f4 updated for version 7.0082
vimboss
parents: 300
diff changeset
3295 #endif
04bf54c587f4 updated for version 7.0082
vimboss
parents: 300
diff changeset
3296
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3297 default: clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3298 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3299
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3300 #ifdef FEAT_FOLDING
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3301 // Redraw when 'foldenable' changed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3302 if (old_fen != curwin->w_p_fen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3303 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3304 # ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3305 win_T *wp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3306
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3307 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3308 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3309 // Adjust 'foldenable' in diff-synced windows.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3310 FOR_ALL_WINDOWS(wp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3311 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3312 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3313 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3314 wp->w_p_fen = curwin->w_p_fen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3315 changed_window_setting_win(wp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3316 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3317 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3318 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3319 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3320 changed_window_setting();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3321 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3322
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3323 // Redraw when 'foldlevel' changed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3324 if (old_fdl != curwin->w_p_fdl)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3325 newFoldLevel();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3326 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3327 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3328
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3329 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3330 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3331 * Vertical scrollbar movement.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3332 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3333 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3334 nv_ver_scrollbar(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3335 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3336 if (cap->oap->op_type != OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3337 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3338
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3339 // Even if an operator was pending, we still want to scroll
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3340 gui_do_scroll();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3341 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3342
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3343 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3344 * Horizontal scrollbar movement.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3345 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3346 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3347 nv_hor_scrollbar(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3348 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3349 if (cap->oap->op_type != OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3350 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3351
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3352 // 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
3353 gui_do_horiz_scroll(scrollbar_value, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3354 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3355 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3356
690
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3357 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3358 /*
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3359 * Click in GUI tab.
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3360 */
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3361 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3362 nv_tabline(cmdarg_T *cap)
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3363 {
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3364 if (cap->oap->op_type != OP_NOP)
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3365 clearopbeep(cap->oap);
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3366
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3367 // Even if an operator was pending, we still want to jump tabs.
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3368 goto_tabpage(current_tab);
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3369 }
686
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3370
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3371 /*
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3372 * Selected item in tab line menu.
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3373 */
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3374 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3375 nv_tabmenu(cmdarg_T *cap)
686
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3376 {
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3377 if (cap->oap->op_type != OP_NOP)
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3378 clearopbeep(cap->oap);
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3379
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3380 // Even if an operator was pending, we still want to jump tabs.
690
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3381 handle_tabmenu();
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3382 }
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3383
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3384 /*
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3385 * Handle selecting an item of the GUI tab line menu.
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3386 * Used in Normal and Insert mode.
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3387 */
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3388 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3389 handle_tabmenu(void)
690
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
3390 {
686
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3391 switch (current_tabmenu)
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3392 {
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3393 case TABLINE_MENU_CLOSE:
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3394 if (current_tab == 0)
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3395 do_cmdline_cmd((char_u *)"tabclose");
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3396 else
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3397 {
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3398 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3399 current_tab);
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3400 do_cmdline_cmd(IObuff);
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3401 }
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3402 break;
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3403
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3404 case TABLINE_MENU_NEW:
6631
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3405 if (current_tab == 0)
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3406 do_cmdline_cmd((char_u *)"$tabnew");
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3407 else
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3408 {
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3409 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3410 current_tab - 1);
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3411 do_cmdline_cmd(IObuff);
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3412 }
686
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3413 break;
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3414
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3415 case TABLINE_MENU_OPEN:
6631
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3416 if (current_tab == 0)
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3417 do_cmdline_cmd((char_u *)"browse $tabnew");
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3418 else
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3419 {
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3420 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3421 current_tab - 1);
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3422 do_cmdline_cmd(IObuff);
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
3423 }
686
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3424 break;
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3425 }
473847b050f8 updated for version 7.0207
vimboss
parents: 685
diff changeset
3426 }
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3427 #endif
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 682
diff changeset
3428
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3429 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3430 * "Q" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3431 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3432 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3433 nv_exmode(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3434 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3435 // Ignore 'Q' in Visual mode, just give a beep.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3436 if (VIsual_active)
6949
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
3437 vim_beep(BO_EX);
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
3438 else if (!checkclearop(cap->oap))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439 do_exmode(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3440 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3442 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3443 * Handle a ":" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3444 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3445 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3446 nv_colon(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3447 {
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
3448 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
3449 int cmd_result;
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3450 int is_cmdkey = cap->cmdchar == K_COMMAND
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3451 || cap->cmdchar == K_SCRIPT_COMMAND;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3452 int flags;
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
3453
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
3454 if (VIsual_active && !is_cmdkey)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3455 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3456 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3457 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3458 if (cap->oap->op_type != OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3459 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3460 // Using ":" as a movement is characterwise exclusive.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3461 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3462 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3463 }
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
3464 else if (cap->count0 && !is_cmdkey)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3465 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3466 // translate "count:" into ":.,.+(count - 1)"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3467 stuffcharReadbuff('.');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3468 if (cap->count0 > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3469 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3470 stuffReadbuff((char_u *)",.+");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3471 stuffnumReadbuff((long)cap->count0 - 1L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3472 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3473 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3474
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3475 // When typing, don't type below an old message
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3476 if (KeyTyped)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3477 compute_cmdrow();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3478
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3479 old_p_im = p_im;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3480
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3481 // get a command line and execute it
27140
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3482 flags = cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0;
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3483 if (is_cmdkey)
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3484 cmd_result = do_cmdkey_command(cap->cmdchar, flags);
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3485 else
a9eeb18e749c patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
3486 cmd_result = do_cmdline(NULL, getexline, NULL, flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3487
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3488 // If 'insertmode' changed, enter or exit Insert mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3489 if (p_im != old_p_im)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3490 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3491 if (p_im)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3492 restart_edit = 'i';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3493 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3494 restart_edit = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3495 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3496
4256
79176b78969c updated for version 7.3.879
Bram Moolenaar <bram@vim.org>
parents: 4221
diff changeset
3497 if (cmd_result == FAIL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3498 // The Ex command failed, do not execute the operator.
4256
79176b78969c updated for version 7.3.879
Bram Moolenaar <bram@vim.org>
parents: 4221
diff changeset
3499 clearop(cap->oap);
79176b78969c updated for version 7.3.879
Bram Moolenaar <bram@vim.org>
parents: 4221
diff changeset
3500 else if (cap->oap->op_type != OP_NOP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3501 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3502 || cap->oap->start.col >
4256
79176b78969c updated for version 7.3.879
Bram Moolenaar <bram@vim.org>
parents: 4221
diff changeset
3503 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
79176b78969c updated for version 7.3.879
Bram Moolenaar <bram@vim.org>
parents: 4221
diff changeset
3504 || did_emsg
79176b78969c updated for version 7.3.879
Bram Moolenaar <bram@vim.org>
parents: 4221
diff changeset
3505 ))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3506 // The start of the operator has become invalid by the Ex command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3507 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3508 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3509 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3510
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3511 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512 * Handle CTRL-G command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3515 nv_ctrlg(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3516 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3517 if (VIsual_active) // toggle Selection/Visual mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3518 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3519 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
3520 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3521 showmode();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3522 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
3523 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
3524 // print full name if count given or :cd used
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3525 fileinfo((int)cap->count0, FALSE, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3526 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3527
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3528 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3529 * Handle CTRL-H <Backspace> command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3530 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3531 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3532 nv_ctrlh(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3533 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3534 if (VIsual_active && VIsual_select)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3535 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3536 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3537 v_visop(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3538 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3539 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3540 nv_left(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3541 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3542
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3543 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3544 * CTRL-L: clear screen and redraw.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3545 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3546 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3547 nv_clear(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3548 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3549 if (!checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3550 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3551 #ifdef FEAT_SYN_HL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3552 // 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
3553 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
3554 # ifdef FEAT_RELTIME
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3555 {
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3556 win_T *wp;
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3557
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3558 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
3559 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
3560 }
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3561 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3562 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3563 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
3564 #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
3565 # 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
3566 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
3567 # 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
3568 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
3569 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3570 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3571 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3572
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3573 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3574 * CTRL-O: In Select mode: switch to Visual mode for one command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3575 * Otherwise: Go to older pcmark.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3576 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3577 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3578 nv_ctrlo(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3579 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3580 if (VIsual_active && VIsual_select)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3581 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3582 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
3583 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3584 showmode();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3585 restart_VIsual_select = 2; // restart Select mode later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3586 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3587 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3588 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3589 cap->count1 = -cap->count1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3590 nv_pcmark(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3591 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3592 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3593
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3594 /*
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
3595 * 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
3596 * not named.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3597 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3598 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3599 nv_hat(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3600 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3601 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3602 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3603 GETF_SETMARK|GETF_ALT, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3604 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3605
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3606 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3607 * "Z" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3608 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3609 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3610 nv_Zet(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3611 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3612 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3613 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3614 switch (cap->nchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3615 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3616 // "ZZ": equivalent to ":x".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3617 case 'Z': do_cmdline_cmd((char_u *)"x");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3618 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3619
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3620 // "ZQ": equivalent to ":q!" (Elvis compatible).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3621 case 'Q': do_cmdline_cmd((char_u *)"q!");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3622 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3623
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3624 default: clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3625 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3626 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3627 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3628
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3629 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3632 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3633 do_nv_ident(int c1, int c2)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3634 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3635 oparg_T oa;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3636 cmdarg_T ca;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3637
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3638 clear_oparg(&oa);
20007
aadd1cae2ff5 patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents: 19681
diff changeset
3639 CLEAR_FIELD(ca);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3640 ca.oap = &oa;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3641 ca.cmdchar = c1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3642 ca.nchar = c2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3643 nv_ident(&ca);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3644 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3645
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3646 /*
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3647 * 'K' normal-mode command. Get the command to lookup the keyword under the
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3648 * cursor.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3649 */
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3650 static int
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3651 nv_K_getcmd(
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3652 cmdarg_T *cap,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3653 char_u *kp,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3654 int kp_help,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3655 int kp_ex,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3656 char_u **ptr_arg,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3657 int n,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3658 char_u *buf,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3659 unsigned buflen)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3660 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3661 char_u *ptr = *ptr_arg;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3662 int isman;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3663 int isman_s;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3664
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3665 if (kp_help)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3666 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3667 // in the help buffer
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3668 STRCPY(buf, "he! ");
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3669 return n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3670 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3671
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3672 if (kp_ex)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3673 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3674 // 'keywordprog' is an ex command
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3675 if (cap->count0 != 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3676 vim_snprintf((char *)buf, buflen, "%s %ld", kp, cap->count0);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3677 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3678 STRCPY(buf, kp);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3679 STRCAT(buf, " ");
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3680 return n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3681 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3682
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3683 // An external command will probably use an argument starting
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3684 // with "-" as an option. To avoid trouble we skip the "-".
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3685 while (*ptr == '-' && n > 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3686 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3687 ++ptr;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3688 --n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3689 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3690 if (n == 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3691 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3692 // found dashes only
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3693 emsg(_(e_no_identifier_under_cursor));
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3694 vim_free(buf);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3695 *ptr_arg = ptr;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3696 return 0;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3697 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3698
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3699 // When a count is given, turn it into a range. Is this
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3700 // really what we want?
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3701 isman = (STRCMP(kp, "man") == 0);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3702 isman_s = (STRCMP(kp, "man -s") == 0);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3703 if (cap->count0 != 0 && !(isman || isman_s))
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3704 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3705
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3706 STRCAT(buf, "! ");
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3707 if (cap->count0 == 0 && isman_s)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3708 STRCAT(buf, "man");
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3709 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3710 STRCAT(buf, kp);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3711 STRCAT(buf, " ");
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3712 if (cap->count0 != 0 && (isman || isman_s))
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3713 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3714 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3715 STRCAT(buf, " ");
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3716 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3717
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3718 *ptr_arg = ptr;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3719 return n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3720 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3721
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3722 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3723 * Handle the commands that use the word under the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3724 * [g] CTRL-] :ta to current identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3725 * [g] 'K' run program for current identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3726 * [g] '*' / to current identifier or string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3727 * [g] '#' ? to current identifier or string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3728 * g ']' :tselect for current identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3729 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3730 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3731 nv_ident(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3732 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3733 char_u *ptr = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3734 char_u *buf;
9098
0d52ddff8db4 commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents: 8923
diff changeset
3735 unsigned buflen;
2290
22529abcd646 Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents: 2282
diff changeset
3736 char_u *newbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3737 char_u *p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3738 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
3739 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
3740 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
3741 int n = 0; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3742 int cmdchar;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3743 int g_cmd; // "g" command
2049
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3744 int tag_cmd = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3745 char_u *aux_ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3746
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3747 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3748 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3749 cmdchar = cap->nchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3750 g_cmd = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3751 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3752 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3753 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3754 cmdchar = cap->cmdchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3755 g_cmd = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3756 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3757
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3758 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3759 cmdchar = '#';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3760
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3761 // The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3762 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3763 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3764 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3765 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3766 if (checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3767 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3768 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3769
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3770 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3771 (cmdchar == '*' || cmdchar == '#')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3772 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3773 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3774 clearop(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3775 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3776 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3777
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3778 // 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
3779 // 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
3780 // and some numbers.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3781 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3782 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3783 || 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
3784 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
3785 {
26909
aa65d1808bd0 patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26804
diff changeset
3786 emsg(_(e_no_identifier_under_cursor)); // 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
3787 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
3788 }
9098
0d52ddff8db4 commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents: 8923
diff changeset
3789 kp_ex = (*kp == ':');
0d52ddff8db4 commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents: 8923
diff changeset
3790 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
3791 buf = alloc(buflen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3792 if (buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3793 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3794 buf[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3795
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3796 switch (cmdchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3797 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3798 case '*':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3799 case '#':
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3800 // Put cursor at start of word, makes search skip the word
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3801 // under the cursor.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3802 // Call setpcmark() first, so "*``" puts the cursor back where
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3803 // it was.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3804 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3805 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3807 if (!g_cmd && vim_iswordp(ptr))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3808 STRCPY(buf, "\\<");
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3809 no_smartcase = TRUE; // don't use 'smartcase' now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3810 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3811
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3812 case 'K':
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3813 n = nv_K_getcmd(cap, kp, kp_help, kp_ex, &ptr, n, buf, buflen);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3814 if (n == 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3815 return;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3816 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3817
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3818 case ']':
2049
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3819 tag_cmd = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3820 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3821 if (p_cst)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3822 STRCPY(buf, "cstag ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3823 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3824 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3825 STRCPY(buf, "ts ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3826 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3827
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3828 default:
2112
6b5d641bcdd4 updated for version 7.2.395
Bram Moolenaar <bram@zimbu.org>
parents: 2049
diff changeset
3829 tag_cmd = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3830 if (curbuf->b_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3831 STRCPY(buf, "he! ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3832 else
2049
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3833 {
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3834 if (g_cmd)
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3835 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
3836 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
3837 STRCPY(buf, "ta ");
2049
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3838 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
3839 sprintf((char *)buf, ":%ldta ", cap->count0);
2049
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3840 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3841 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3842
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3843 // Now grab the chars in the identifier
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3844 if (cmdchar == 'K' && !kp_help)
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3845 {
1728
656ca7102064 updated for version 7.2-026
vimboss
parents: 1727
diff changeset
3846 ptr = vim_strnsave(ptr, n);
10330
71ca6a16e818 commit https://github.com/vim/vim/commit/426f3754223c8ff8a1bc51d6ba1eba11e8982ebc
Christian Brabandt <cb@256bit.org>
parents: 10251
diff changeset
3847 if (kp_ex)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3848 // 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
3849 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
3850 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3851 // 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
3852 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
1728
656ca7102064 updated for version 7.2-026
vimboss
parents: 1727
diff changeset
3853 vim_free(ptr);
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3854 if (p == NULL)
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3855 {
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3856 vim_free(buf);
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3857 return;
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3858 }
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
3859 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
3860 if (newbuf == NULL)
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3861 {
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3862 vim_free(buf);
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3863 vim_free(p);
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3864 return;
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3865 }
2290
22529abcd646 Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents: 2282
diff changeset
3866 buf = newbuf;
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3867 STRCAT(buf, p);
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3868 vim_free(p);
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3869 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3870 else
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3871 {
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3872 if (cmdchar == '*')
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
3873 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\");
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3874 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
3875 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\");
2049
23d366df1938 updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents: 2040
diff changeset
3876 else if (tag_cmd)
2603
ac0458d9b9dd updated for version 7.3.026
Bram Moolenaar <bram@vim.org>
parents: 2445
diff changeset
3877 {
ac0458d9b9dd updated for version 7.3.026
Bram Moolenaar <bram@vim.org>
parents: 2445
diff changeset
3878 if (curbuf->b_help)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3879 // ":help" handles unescaped argument
2603
ac0458d9b9dd updated for version 7.3.026
Bram Moolenaar <bram@vim.org>
parents: 2445
diff changeset
3880 aux_ptr = (char_u *)"";
ac0458d9b9dd updated for version 7.3.026
Bram Moolenaar <bram@vim.org>
parents: 2445
diff changeset
3881 else
ac0458d9b9dd updated for version 7.3.026
Bram Moolenaar <bram@vim.org>
parents: 2445
diff changeset
3882 aux_ptr = (char_u *)"\\|\"\n[";
ac0458d9b9dd updated for version 7.3.026
Bram Moolenaar <bram@vim.org>
parents: 2445
diff changeset
3883 }
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3884 else
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3885 aux_ptr = (char_u *)"\\|\"\n*?[";
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3886
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3887 p = buf + STRLEN(buf);
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3888 while (n-- > 0)
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3889 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3890 // put a backslash before \ and some others
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3891 if (vim_strchr(aux_ptr, *ptr) != NULL)
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3892 *p++ = '\\';
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3893 // 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
3894 // bytes of that character.
1712
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3895 if (has_mbyte)
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3896 {
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3897 int i;
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3898 int len = (*mb_ptr2len)(ptr) - 1;
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3899
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3900 for (i = 0; i < len && n >= 1; ++i, --n)
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3901 *p++ = *ptr++;
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3902 }
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3903 *p++ = *ptr++;
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3904 }
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3905 *p = NUL;
563bd9a63fdc updated for version 7.2-010
vimboss
parents: 1692
diff changeset
3906 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3907
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
3908 // Execute the command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3909 if (cmdchar == '*' || cmdchar == '#')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3910 {
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
3911 if (!g_cmd && (has_mbyte
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
3912 ? 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
3913 : vim_iswordc(ptr[-1])))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3914 STRCAT(buf, "\\>");
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17520
diff changeset
3915
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17520
diff changeset
3916 // put pattern in search history
2024
451bed7e9572 updated for version 7.2-321
vimboss
parents: 1883
diff changeset
3917 init_history();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3918 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
3919
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
3920 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3921 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3922 else
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3923 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
3924 g_tag_at_cursor = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3925 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
3926 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
3927 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3928
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3929 vim_free(buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3930 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3931
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3932 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3933 * Get visually selected text, within one line only.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3934 * Returns FAIL if more than one line selected.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3935 */
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
3936 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3937 get_visual_text(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3938 cmdarg_T *cap,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
3939 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
3940 int *lenp) // return: length of selected text
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3941 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3942 if (VIsual_mode != 'V')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3943 unadjust_for_sel();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3944 if (VIsual.lnum != curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3945 {
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
3946 if (cap != NULL)
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
3947 clearopbeep(cap->oap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3948 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3949 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3950 if (VIsual_mode == 'V')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3951 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3952 *pp = ml_get_curline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3953 *lenp = (int)STRLEN(*pp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3954 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3955 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3956 {
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
3957 if (LT_POS(curwin->w_cursor, VIsual))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3958 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3959 *pp = ml_get_pos(&curwin->w_cursor);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3960 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3961 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3962 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3963 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3964 *pp = ml_get_pos(&VIsual);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3965 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3966 }
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
3967 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
3968 *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
3969 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
3970 // Correct the length to include all bytes of the last character.
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 447
diff changeset
3971 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3972 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3973 reset_VIsual_and_resel();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3974 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3975 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3976
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3977 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3978 * CTRL-T: backwards in tag stack
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3979 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3980 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3981 nv_tagpop(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3982 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3983 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3984 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3985 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3986
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3987 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3988 * Handle scrolling command 'H', 'L' and 'M'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3989 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3990 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
3991 nv_scroll(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3992 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3993 int used = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3994 long n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3995 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3996 linenr_T lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3997 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3998 int half;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3999
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4000 cap->oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4001 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4003 if (cap->cmdchar == 'L')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4004 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4005 validate_botline(); // make sure curwin->w_botline is valid
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4006 curwin->w_cursor.lnum = curwin->w_botline - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4007 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4008 curwin->w_cursor.lnum = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4009 else
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4010 {
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4011 #ifdef FEAT_FOLDING
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4012 if (hasAnyFolding(curwin))
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4013 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4014 // Count a fold for one screen line.
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4015 for (n = cap->count1 - 1; n > 0
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4016 && curwin->w_cursor.lnum > curwin->w_topline; --n)
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4017 {
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4018 (void)hasFolding(curwin->w_cursor.lnum,
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4019 &curwin->w_cursor.lnum, NULL);
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4020 --curwin->w_cursor.lnum;
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4021 }
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4022 }
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4023 else
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4024 #endif
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4025 curwin->w_cursor.lnum -= cap->count1 - 1;
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4026 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4027 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4028 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4029 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4030 if (cap->cmdchar == 'M')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4031 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4032 #ifdef FEAT_DIFF
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4033 // Don't count filler lines above the window.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4034 used -= diff_check_fill(curwin, curwin->w_topline)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4035 - curwin->w_topfill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4036 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4037 validate_botline(); // make sure w_empty_rows is valid
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4038 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4039 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4040 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4041 #ifdef FEAT_DIFF
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4042 // 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
4043 // line" and half to be "above the next line".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4044 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4045 + n) / 2 >= half)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4046 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4047 --n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4048 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4049 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4050 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4051 used += plines(curwin->w_topline + n);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4052 if (used >= half)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4053 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4054 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4055 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4056 n = lnum - curwin->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4057 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4058 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4059 if (n > 0 && used > curwin->w_height)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4060 --n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4061 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4062 else // (cap->cmdchar == 'H')
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4063 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4064 n = cap->count1 - 1;
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4065 #ifdef FEAT_FOLDING
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4066 if (hasAnyFolding(curwin))
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4067 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4068 // Count a fold for one screen line.
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4069 lnum = curwin->w_topline;
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4070 while (n-- > 0 && lnum < curwin->w_botline - 1)
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4071 {
7009
286fd54c7ae3 patch 7.4.822
Bram Moolenaar <bram@vim.org>
parents: 7001
diff changeset
4072 (void)hasFolding(lnum, NULL, &lnum);
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4073 ++lnum;
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4074 }
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4075 n = lnum - curwin->w_topline;
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4076 }
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4077 #endif
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
4078 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4079 curwin->w_cursor.lnum = curwin->w_topline + n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4080 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4081 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4082 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4083
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4084 // 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
4085 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
4086 cursor_correct();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4087 beginline(BL_SOL | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4088 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4089
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4090 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4091 * Cursor right commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4092 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4093 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4094 nv_right(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4095 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4096 long n;
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4097 int past_line;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4098
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4099 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4100 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4101 // <C-Right> and <S-Right> move a word or WORD right
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4102 if (mod_mask & MOD_MASK_CTRL)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4103 cap->arg = TRUE;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4104 nv_wordcmd(cap);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4105 return;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4106 }
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4107
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4108 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4109 cap->oap->inclusive = FALSE;
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4110 past_line = (VIsual_active && *p_sel != 'o');
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4111
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4112 // In virtual edit mode, there's no such thing as "past_line", as lines
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4113 // are (theoretically) infinitely long.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4114 if (virtual_active())
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4115 past_line = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4116
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4117 for (n = cap->count1; n > 0; --n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4118 {
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4119 if ((!past_line && oneright() == FAIL)
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4120 || (past_line && *ml_get_cursor() == NUL)
1877
b5c1cb6f8d56 updated for version 7.2-174
vimboss
parents: 1866
diff changeset
4121 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4122 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4123 // <Space> wraps to next line if 'whichwrap' has 's'.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4124 // 'l' wraps to next line if 'whichwrap' has 'l'.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4125 // CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4126 if ( ((cap->cmdchar == ' '
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4127 && vim_strchr(p_ww, 's') != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4128 || (cap->cmdchar == 'l'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4129 && vim_strchr(p_ww, 'l') != NULL)
229
723a01584c3e updated for version 7.0064
vimboss
parents: 226
diff changeset
4130 || (cap->cmdchar == K_RIGHT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4131 && vim_strchr(p_ww, '>') != NULL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4132 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4133 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4134 // 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
4135 // 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
4136 // included, move to next line after that
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 710
diff changeset
4137 if ( cap->oap->op_type != OP_NOP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4138 && !cap->oap->inclusive
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
4139 && !LINEEMPTY(curwin->w_cursor.lnum))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4140 cap->oap->inclusive = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4141 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4142 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4143 ++curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4144 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4145 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4146 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4147 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4148 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4149 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4150 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4151 if (cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4152 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4153 // Only beep and flush if not moved at all
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4154 if (n == cap->count1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4155 beep_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4156 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4157 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4158 {
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
4159 if (!LINEEMPTY(curwin->w_cursor.lnum))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4160 cap->oap->inclusive = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4161 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4162 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4163 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4164 else if (past_line)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4165 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4166 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4167 if (virtual_active())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4168 oneright();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4169 else
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4170 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4171 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
4172 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4173 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4174 ++curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4175 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4176 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4177 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4178 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4179 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4180 && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4181 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4182 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4183 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4184
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4185 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4186 * Cursor left commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4187 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4188 * Returns TRUE when operator end should not be adjusted.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4189 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4190 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4191 nv_left(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4192 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4193 long n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4194
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4195 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4196 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4197 // <C-Left> and <S-Left> move a word or WORD left
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4198 if (mod_mask & MOD_MASK_CTRL)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4199 cap->arg = 1;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4200 nv_bck_word(cap);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4201 return;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4202 }
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4203
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4204 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4205 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4206 for (n = cap->count1; n > 0; --n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4207 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4208 if (oneleft() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4209 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4210 // <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
4211 // '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
4212 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4213 if ( (((cap->cmdchar == K_BS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4214 || cap->cmdchar == Ctrl_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4215 && vim_strchr(p_ww, 'b') != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4216 || (cap->cmdchar == 'h'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4217 && vim_strchr(p_ww, 'h') != NULL)
229
723a01584c3e updated for version 7.0064
vimboss
parents: 226
diff changeset
4218 || (cap->cmdchar == K_LEFT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4219 && vim_strchr(p_ww, '<') != NULL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4220 && curwin->w_cursor.lnum > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4221 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4222 --(curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4223 coladvance((colnr_T)MAXCOL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4224 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4225
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4226 // 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
4227 // 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
4228 // 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
4229 // Don't adjust op_end now, otherwise it won't work.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4230 if ( (cap->oap->op_type == OP_DELETE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4231 || 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
4232 && !LINEEMPTY(curwin->w_cursor.lnum))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4233 {
5682
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4234 char_u *cp = ml_get_cursor();
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4235
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4236 if (*cp != NUL)
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4237 {
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4238 if (has_mbyte)
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4239 curwin->w_cursor.col += (*mb_ptr2len)(cp);
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4240 else
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4241 ++curwin->w_cursor.col;
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
4242 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4243 cap->retval |= CA_NO_ADJ_OP_END;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4244 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4245 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4246 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4247 // Only beep and flush if not moved at all
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4248 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4249 beep_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4250 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4251 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4252 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4253 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4254 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4255 && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4256 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4257 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4258 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4259
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4260 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4261 * Cursor up commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4262 * cap->arg is TRUE for "-": Move cursor to first non-blank.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4263 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4264 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4265 nv_up(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4266 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4267 if (mod_mask & MOD_MASK_SHIFT)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4268 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4269 // <S-Up> is page up
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4270 cap->arg = BACKWARD;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4271 nv_page(cap);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4272 }
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4273 else
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4274 {
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4275 cap->oap->motion_type = MLINE;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4276 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4277 clearopbeep(cap->oap);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4278 else if (cap->arg)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4279 beginline(BL_WHITE | BL_FIX);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4280 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4281 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4282
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4283 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4284 * Cursor down commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4285 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4286 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4287 static void
10192
758f3d5a463d commit https://github.com/vim/vim/commit/1b010058235fb803c1d4f42a02d2883921be8ef4
Christian Brabandt <cb@256bit.org>
parents: 10154
diff changeset
4288 nv_down(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4289 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4290 if (mod_mask & MOD_MASK_SHIFT)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4291 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4292 // <S-Down> is page down
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4293 cap->arg = FORWARD;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4294 nv_page(cap);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4295 }
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
4296 #if defined(FEAT_QUICKFIX)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4297 // 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
4298 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
4299 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
4300 #endif
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4301 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4302 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4303 #ifdef FEAT_CMDWIN
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4304 // In the cmdline window a <CR> executes the command.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 167
diff changeset
4305 if (cmdwin_type != 0 && cap->cmdchar == CAR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4306 cmdwin_result = CAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4307 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4308 #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
4309 #ifdef FEAT_JOB_CHANNEL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4310 // 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
4311 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
4312 && 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
4313 {
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
4314 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
4315 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
4316 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
4317 }
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
4318 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
4319 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4320 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4321 cap->oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4322 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4323 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4324 else if (cap->arg)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4325 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4326 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4327 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4328 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4329
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4330 #ifdef FEAT_SEARCHPATH
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4331 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4332 * Grab the file name under the cursor and edit it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4333 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4334 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4335 nv_gotofile(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4336 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4337 char_u *ptr;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
4338 linenr_T lnum = -1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4339
633
7437be625546 updated for version 7.0183
vimboss
parents: 631
diff changeset
4340 if (text_locked())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4341 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4342 clearopbeep(cap->oap);
633
7437be625546 updated for version 7.0183
vimboss
parents: 631
diff changeset
4343 text_locked_msg();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4344 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4345 }
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4346 if (curbuf_locked())
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4347 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4348 clearop(cap->oap);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4349 return;
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4350 }
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
4351 #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
4352 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
4353 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
4354 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4355
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
4356 ptr = grab_file_name(cap->count1, &lnum);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4357
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4358 if (ptr != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4359 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4360 // 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
4361 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
7009
286fd54c7ae3 patch 7.4.822
Bram Moolenaar <bram@vim.org>
parents: 7001
diff changeset
4362 (void)autowrite(curbuf, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4363 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
4364 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
4365 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
4366 && cap->nchar == 'F' && lnum >= 0)
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
4367 {
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
4368 curwin->w_cursor.lnum = lnum;
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
4369 check_cursor_lnum();
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
4370 beginline(BL_SOL | BL_FIX);
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
4371 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4372 vim_free(ptr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4373 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4374 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4375 clearop(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4376 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4377 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4378
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4379 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4380 * <End> command: to end of current line or last line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4381 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4382 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4383 nv_end(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4384 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4385 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4386 {
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4387 cap->arg = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4388 nv_goto(cap);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4389 cap->count1 = 1; // to end of current line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4390 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4391 nv_dollar(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4392 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4393
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4394 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4395 * Handle the "$" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4396 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4397 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4398 nv_dollar(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4399 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4400 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4401 cap->oap->inclusive = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4402 // 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
4403 // 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
4404 // Otherwise, send it to the end of the line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4405 if (!virtual_active() || gchar_cursor() != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4406 || 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
4407 curwin->w_curswant = MAXCOL; // so we stay at the end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4408 if (cursor_down((long)(cap->count1 - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4409 cap->oap->op_type == OP_NOP) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4410 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4411 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4412 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4413 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4414 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4415 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4416
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4417 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4418 * Implementation of '?' and '/' commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4419 * If cap->arg is TRUE don't set PC mark.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4420 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4421 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4422 nv_search(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4423 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4424 oparg_T *oap = cap->oap;
10098
72e4b7f90465 commit https://github.com/vim/vim/commit/dda933d06c06c2792bd686d059f6ad19191ad30b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
4425 pos_T save_cursor = curwin->w_cursor;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4426
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4427 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4428 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4429 // Translate "g??" to "g?g?"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4430 cap->cmdchar = 'g';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4431 cap->nchar = '?';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4432 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4433 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4434 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4435
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4436 // 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
4437 // start position.
26804
34f1b7d6974a patch 8.2.3930: getcmdline() argument has a misleading type
Bram Moolenaar <Bram@vim.org>
parents: 26749
diff changeset
4438 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4439
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4440 if (cap->searchbuf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4441 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4442 clearop(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4443 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4444 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4445
6620
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4446 (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
4447 (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
4448 ? 0 : SEARCH_MARK, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4449 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4450
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4451 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4452 * Handle "N" and "n" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4453 * cap->arg is SEARCH_REV for "N", 0 for "n".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4454 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4455 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4456 nv_next(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4457 {
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4458 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
4459 int wrapped = FALSE;
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4460 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
4461
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4462 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
6620
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4463 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4464 // 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
4465 // 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
4466 // in the buffer: Repeat with count + 1.
6620
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4467 cap->count1 += 1;
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4468 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
6620
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4469 cap->count1 -= 1;
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4470 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4471 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4472
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4473 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4474 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4475 * Uses only cap->count1 and cap->oap from "cap".
6620
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4476 * Return 0 for failure, 1 for found, 2 for found and line offset added.
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4477 */
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4478 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4479 normal_search(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4480 cmdarg_T *cap,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4481 int dir,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4482 char_u *pat,
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4483 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
4484 int *wrapped)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4485 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4486 int i;
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4487 searchit_arg_T sia;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4488
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4489 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4490 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4491 cap->oap->use_reg_one = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4492 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4493
20007
aadd1cae2ff5 patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents: 19681
diff changeset
4494 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
4495 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
4496 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
4497 if (wrapped != NULL)
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4498 *wrapped = sia.sa_wrapped;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4499 if (i == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4500 clearop(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4501 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4502 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4503 if (i == 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4504 cap->oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4505 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4506 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4507 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4508 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4509 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4510 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4511
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4512 // "/$" 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
4513 // correct that here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4514 check_cursor();
6620
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
4515 return i;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4516 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4517
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4518 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4519 * Character search commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4520 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4521 * ',' and FALSE for ';'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4522 * cap->nchar is NUL for ',' and ';' (repeat the search)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4523 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4524 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4525 nv_csearch(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4526 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4527 int t_cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4528
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4529 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4530 t_cmd = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4531 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4532 t_cmd = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4533
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4534 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4535 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4536 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4537 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4538 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4539 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
4540 // Include a Tab for "tx" and for "dfx".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4541 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4542 && (t_cmd || cap->oap->op_type != OP_NOP))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4543 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4544 colnr_T scol, ecol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4545
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4546 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4547 curwin->w_cursor.coladd = ecol - scol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4548 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4549 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4550 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4551 adjust_for_sel(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4552 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4553 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4554 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4555 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4556 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4557 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4558
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4559 /*
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4560 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4561 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4562 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4563 * "[m" or "]m" search for prev/next start of (Java) method.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4564 * "[M" or "]M" search for prev/next end of (Java) method.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4565 */
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4566 static void
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4567 nv_bracket_block(cmdarg_T *cap, pos_T *old_pos)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4568 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4569 pos_T new_pos = {0, 0, 0};
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4570 pos_T *pos = NULL; // init for GCC
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4571 pos_T prev_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4572 long n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4573 int findc;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4574 int c;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4575
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4576 if (cap->nchar == '*')
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4577 cap->nchar = '/';
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4578 prev_pos.lnum = 0;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4579 if (cap->nchar == 'm' || cap->nchar == 'M')
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4580 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4581 if (cap->cmdchar == '[')
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4582 findc = '{';
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4583 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4584 findc = '}';
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4585 n = 9999;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4586 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4587 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4588 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4589 findc = cap->nchar;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4590 n = cap->count1;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4591 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4592 for ( ; n > 0; --n)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4593 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4594 if ((pos = findmatchlimit(cap->oap, findc,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4595 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4596 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4597 if (new_pos.lnum == 0) // nothing found
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4598 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4599 if (cap->nchar != 'm' && cap->nchar != 'M')
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4600 clearopbeep(cap->oap);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4601 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4602 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4603 pos = &new_pos; // use last one found
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4604 break;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4605 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4606 prev_pos = new_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4607 curwin->w_cursor = *pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4608 new_pos = *pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4609 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4610 curwin->w_cursor = *old_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4611
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4612 // Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4613 // brought us to the match for "[m" and "]M" when inside a method.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4614 // Try finding the '{' or '}' we want to be at.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4615 // Also repeat for the given count.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4616 if (cap->nchar == 'm' || cap->nchar == 'M')
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4617 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4618 // norm is TRUE for "]M" and "[m"
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4619 int norm = ((findc == '{') == (cap->nchar == 'm'));
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4620
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4621 n = cap->count1;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4622 // found a match: we were inside a method
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4623 if (prev_pos.lnum != 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4624 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4625 pos = &prev_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4626 curwin->w_cursor = prev_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4627 if (norm)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4628 --n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4629 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4630 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4631 pos = NULL;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4632 while (n > 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4633 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4634 for (;;)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4635 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4636 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4637 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4638 // if not found anything, that's an error
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4639 if (pos == NULL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4640 clearopbeep(cap->oap);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4641 n = 0;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4642 break;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4643 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4644 c = gchar_cursor();
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4645 if (c == '{' || c == '}')
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4646 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4647 // Must have found end/start of class: use it.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4648 // Or found the place to be at.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4649 if ((c == findc && norm) || (n == 1 && !norm))
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4650 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4651 new_pos = curwin->w_cursor;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4652 pos = &new_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4653 n = 0;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4654 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4655 // if no match found at all, we started outside of the
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4656 // class and we're inside now. Just go on.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4657 else if (new_pos.lnum == 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4658 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4659 new_pos = curwin->w_cursor;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4660 pos = &new_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4661 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4662 // found start/end of other method: go to match
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4663 else if ((pos = findmatchlimit(cap->oap, findc,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4664 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4665 0)) == NULL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4666 n = 0;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4667 else
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4668 curwin->w_cursor = *pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4669 break;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4670 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4671 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4672 --n;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4673 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4674 curwin->w_cursor = *old_pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4675 if (pos == NULL && new_pos.lnum != 0)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4676 clearopbeep(cap->oap);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4677 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4678 if (pos != NULL)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4679 {
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4680 setpcmark();
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4681 curwin->w_cursor = *pos;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4682 curwin->w_set_curswant = TRUE;
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4683 #ifdef FEAT_FOLDING
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4684 if ((fdo_flags & FDO_BLOCK) && KeyTyped
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4685 && cap->oap->op_type == OP_NOP)
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4686 foldOpenCursor();
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4687 #endif
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4688 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4689 }
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4690
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4691 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4692 * "[" and "]" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4693 * cap->arg is BACKWARD for "[" and FORWARD for "]".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4694 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4695 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4696 nv_brackets(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4697 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4698 pos_T prev_pos;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4699 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
4700 pos_T old_pos; // cursor position before command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4701 int flag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4702 long n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4703
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4704 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4705 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4706 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
4707 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4708
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4709 #ifdef FEAT_SEARCHPATH
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4710 // "[f" or "]f" : Edit file under the cursor (same as "gf")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4711 if (cap->nchar == 'f')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4712 nv_gotofile(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4713 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4714 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4715
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4716 #ifdef FEAT_FIND_ID
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4717 // Find the occurrence(s) of the identifier or define under cursor
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4718 // in current and included files or jump to the first occurrence.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4719 //
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4720 // search list jump
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4721 // fwd bwd fwd bwd fwd bwd
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4722 // identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4723 // define "]d" "[d" "]D" "[D" "]^D" "[^D"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4724 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
4725 # ifdef EBCDIC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4726 "iI\005dD\067",
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
4727 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4728 "iI\011dD\004",
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
4729 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4730 cap->nchar) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4731 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4732 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4733 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4734
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4735 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4736 clearop(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4737 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4738 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4739 find_pattern_in_path(ptr, 0, len, TRUE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4740 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4741 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4742 cap->count1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4743 isupper(cap->nchar) ? ACTION_SHOW_ALL :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4744 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4745 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4746 (linenr_T)MAXLNUM);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4747 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4748 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4749 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4750 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4751 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4752
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4753 // "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4754 // "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4755 // "[/", "[*", "]/", "]*": go to Nth comment start/end.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4756 // "[m" or "]m" search for prev/next start of (Java) method.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4757 // "[M" or "]M" search for prev/next end of (Java) method.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4758 if ( (cap->cmdchar == '['
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4759 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4760 || (cap->cmdchar == ']'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4761 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4762 nv_bracket_block(cap, &old_pos);
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4763
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4764 // "[[", "[]", "]]" and "][": move to start or end of function
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4765 else if (cap->nchar == '[' || cap->nchar == ']')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4766 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4767 if (cap->nchar == cap->cmdchar) // "]]" or "[["
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4768 flag = '{';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4769 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4770 flag = '}'; // "][" or "[]"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4771
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4772 curwin->w_set_curswant = TRUE;
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4773 // Imitate strange Vi behaviour: When using "]]" with an operator
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4774 // we also stop at '}'.
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
4775 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4776 (cap->oap->op_type != OP_NOP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4777 && cap->arg == FORWARD && flag == '{')))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4778 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4779 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4780 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4781 if (cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4782 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4783 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4784 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4785 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4786 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4787 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4788 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4789
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4790 // "[p", "[P", "]P" and "]p": put with indent adjustment
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4791 else if (cap->nchar == 'p' || cap->nchar == 'P')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4792 {
16742
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
4793 nv_put_opt(cap, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4794 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4795
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4796 // "['", "[`", "]'" and "]`": jump to next mark
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4797 else if (cap->nchar == '\'' || cap->nchar == '`')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4798 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4799 pos = &curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4800 for (n = cap->count1; n > 0; --n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4801 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4802 prev_pos = *pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4803 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4804 cap->nchar == '\'');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4805 if (pos == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4806 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4807 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4808 if (pos == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4809 pos = &prev_pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4810 nv_cursormark(cap, cap->nchar == '\'', pos);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4811 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4812
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4813 // [ or ] followed by a middle mouse click: put selected text with
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4814 // indent adjustment. Any other button just does as usual.
2130
279380a812ad updated for version 7.2.412
Bram Moolenaar <bram@zimbu.org>
parents: 2112
diff changeset
4815 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4816 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4817 (void)do_mouse(cap->oap, cap->nchar,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4818 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4819 cap->count1, PUT_FIXINDENT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4820 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4821
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4822 #ifdef FEAT_FOLDING
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4823 // "[z" and "]z": move to start or end of open fold.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4824 else if (cap->nchar == 'z')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4825 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4826 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4827 cap->count1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4828 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4829 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4830 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4831
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4832 #ifdef FEAT_DIFF
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4833 // "[c" and "]c": move to next or previous diff-change.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4834 else if (cap->nchar == 'c')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4835 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4836 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4837 cap->count1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4838 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4839 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4840 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4841
737
59971e227f8c updated for version 7.0222
vimboss
parents: 718
diff changeset
4842 #ifdef FEAT_SPELL
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
4843 // "[s", "[S", "]s" and "]S": move to next spell error.
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
4844 else if (cap->nchar == 's' || cap->nchar == 'S')
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
4845 {
249
f146656fb903 updated for version 7.0069
vimboss
parents: 236
diff changeset
4846 setpcmark();
f146656fb903 updated for version 7.0069
vimboss
parents: 236
diff changeset
4847 for (n = 0; n < cap->count1; ++n)
498
f9ea3888b054 updated for version 7.0137
vimboss
parents: 495
diff changeset
4848 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
f9ea3888b054 updated for version 7.0137
vimboss
parents: 495
diff changeset
4849 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
249
f146656fb903 updated for version 7.0069
vimboss
parents: 236
diff changeset
4850 {
f146656fb903 updated for version 7.0069
vimboss
parents: 236
diff changeset
4851 clearopbeep(cap->oap);
f146656fb903 updated for version 7.0069
vimboss
parents: 236
diff changeset
4852 break;
f146656fb903 updated for version 7.0069
vimboss
parents: 236
diff changeset
4853 }
13088
3dd37eec73f0 patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
4854 else
3dd37eec73f0 patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
4855 curwin->w_set_curswant = TRUE;
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4856 # ifdef FEAT_FOLDING
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4857 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4858 foldOpenCursor();
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 817
diff changeset
4859 # endif
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
4860 }
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
4861 #endif
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
4862
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4863 // Not a valid cap->nchar.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4864 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4865 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4866 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4867
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4868 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4869 * Handle Normal mode "%" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4870 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4871 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4872 nv_percent(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4873 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4874 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
4875 #if defined(FEAT_FOLDING)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4876 linenr_T lnum = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4877 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4878
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4879 cap->oap->inclusive = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4880 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4881 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4882 if (cap->count0 > 100)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4883 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4884 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4885 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4886 cap->oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4887 setpcmark();
24010
c9849ed1ce05 patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents: 23762
diff changeset
4888 // 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
4889 // 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
4890 // 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
4891 // to avoid overflows.
c9849ed1ce05 patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents: 23762
diff changeset
4892 if (curbuf->b_ml.ml_line_count >= 21474836)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4893 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4894 / 100L * cap->count0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4895 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4896 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4897 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
4898 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
4899 curwin->w_cursor.lnum = 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4900 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4901 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4902 beginline(BL_SOL | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4903 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4904 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4905 else // "%" : go to matching paren
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4906 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4907 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4908 cap->oap->use_reg_one = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4909 if ((pos = findmatch(cap->oap, NUL)) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4910 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4911 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4912 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4913 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4914 curwin->w_cursor = *pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4915 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4916 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4917 adjust_for_sel(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4918 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4919 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4920 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4921 if (cap->oap->op_type == OP_NOP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4922 && lnum != curwin->w_cursor.lnum
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4923 && (fdo_flags & FDO_PERCENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4924 && KeyTyped)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4925 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4926 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4927 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4928
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4929 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4930 * Handle "(" and ")" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4931 * cap->arg is BACKWARD for "(" and FORWARD for ")".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4932 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4933 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4934 nv_brace(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4935 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4936 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4937 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
4938 // The motion used to be inclusive for "(", but that is not what Vi does.
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 608
diff changeset
4939 cap->oap->inclusive = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4940 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4941
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4942 if (findsent(cap->arg, cap->count1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4943 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4944 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4945 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
4946 // Don't leave the cursor on the NUL past end of line.
1505
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
4947 adjust_cursor(cap->oap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4948 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4949 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4950 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4951 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4952 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4953 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4954 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4955
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4956 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4957 * "m" command: Mark a position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4958 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4959 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4960 nv_mark(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4961 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4962 if (!checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4963 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4964 if (setmark(cap->nchar) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4965 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4966 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4967 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4968
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4969 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4970 * "{" and "}" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4971 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4972 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4973 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4974 nv_findpar(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4975 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4976 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4977 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4978 cap->oap->use_reg_one = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4979 curwin->w_set_curswant = TRUE;
503
c9ec7077a195 updated for version 7.0141
vimboss
parents: 501
diff changeset
4980 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4981 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4982 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4983 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4984 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4985 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4986 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4987 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4988 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4989 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4990 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4991
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4992 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4993 * "u" command: Undo or make lower case.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4994 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4995 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4996 nv_undo(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4997 {
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
4998 if (cap->oap->op_type == OP_LOWER || VIsual_active)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4999 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5000 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5001 cap->cmdchar = 'g';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5002 cap->nchar = 'u';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5003 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5004 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5005 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5006 nv_kundo(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5007 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5008
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5009 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5010 * <Undo> command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5011 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5012 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5013 nv_kundo(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5014 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5015 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5016 {
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
5017 #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
5018 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
5019 {
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
5020 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
5021 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
5022 }
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
5023 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5024 u_undo((int)cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5025 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5026 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5027 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5028
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5029 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5030 * Handle the "r" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5031 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5032 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5033 nv_replace(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5034 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5035 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5036 int had_ctrl_v;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5037 long n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5038
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5039 if (checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5040 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
5041 #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
5042 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
5043 {
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
5044 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
5045 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
5046 }
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
5047 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5048
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5049 // get another character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5050 if (cap->nchar == Ctrl_V)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5051 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5052 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
5053 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
5054 // Don't redo a multibyte character with CTRL-V.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5055 if (cap->nchar > DEL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5056 had_ctrl_v = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5057 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5058 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5059 had_ctrl_v = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5060
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5061 // Abort if the character is a special key.
1343
4dccbe792a5e updated for version 7.1-057
vimboss
parents: 1312
diff changeset
5062 if (IS_SPECIAL(cap->nchar))
4dccbe792a5e updated for version 7.1-057
vimboss
parents: 1312
diff changeset
5063 {
4dccbe792a5e updated for version 7.1-057
vimboss
parents: 1312
diff changeset
5064 clearopbeep(cap->oap);
4dccbe792a5e updated for version 7.1-057
vimboss
parents: 1312
diff changeset
5065 return;
4dccbe792a5e updated for version 7.1-057
vimboss
parents: 1312
diff changeset
5066 }
4dccbe792a5e updated for version 7.1-057
vimboss
parents: 1312
diff changeset
5067
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5068 // Visual mode "r"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5069 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5070 {
1797
05952d133506 updated for version 7.2-095
vimboss
parents: 1751
diff changeset
5071 if (got_int)
05952d133506 updated for version 7.2-095
vimboss
parents: 1751
diff changeset
5072 reset_VIsual();
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5374
diff changeset
5073 if (had_ctrl_v)
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5374
diff changeset
5074 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5075 // 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
5076 // 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
5077 if (cap->nchar == CAR)
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13088
diff changeset
5078 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
5079 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
5080 cap->nchar = REPLACE_NL_NCHAR;
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5374
diff changeset
5081 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5082 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5083 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5084 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5085
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5086 // Break tabs, etc.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5087 if (virtual_active())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5088 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5089 if (u_save_cursor() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5090 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5091 if (gchar_cursor() == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5092 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5093 // Add extra space and put the cursor on the first one.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5094 coladvance_force((colnr_T)(getviscol() + cap->count1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5095 curwin->w_cursor.col -= cap->count1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5096 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5097 else if (gchar_cursor() == TAB)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5098 coladvance_force(getviscol());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5099 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5100
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5101 // Abort if not enough characters to replace.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5102 ptr = ml_get_cursor();
1343
4dccbe792a5e updated for version 7.1-057
vimboss
parents: 1312
diff changeset
5103 if (STRLEN(ptr) < (unsigned)cap->count1
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
5104 || (has_mbyte && mb_charlen(ptr) < cap->count1))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5105 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5106 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5107 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5108 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5109
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5110 // Replacing with a TAB is done by edit() when it is complicated because
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5111 // 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5112 // Other characters are done below to avoid problems with things like
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5113 // CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5114 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5115 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5116 stuffnumReadbuff(cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5117 stuffcharReadbuff('R');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5118 stuffcharReadbuff('\t');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5119 stuffcharReadbuff(ESC);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5120 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5121 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5122
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5123 // save line for undo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5124 if (u_save_cursor() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5125 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5126
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5127 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5128 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5129 // Replace character(s) by a single newline.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5130 // Strange vi behaviour: Only one newline is inserted.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5131 // Delete the characters here.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5132 // Insert the newline with an insert command, takes care of
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5133 // autoindent. The insert command depends on being on the last
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5134 // character of a line or not.
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5135 (void)del_chars(cap->count1, FALSE); // delete the characters
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5136 stuffcharReadbuff('\r');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5137 stuffcharReadbuff(ESC);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5138
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5139 // Give 'r' to edit(), to get the redo command right.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5140 invoke_edit(cap, TRUE, 'r', FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5141 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5142 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5143 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5144 prep_redo(cap->oap->regname, cap->count1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5145 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5146
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5147 curbuf->b_op_start = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5148 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5149 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5150 int old_State = State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5151
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5152 if (cap->ncharC1 != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5153 AppendCharToRedobuff(cap->ncharC1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5154 if (cap->ncharC2 != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5155 AppendCharToRedobuff(cap->ncharC2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5156
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5157 // 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
5158 // 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
5159 // composing characters for utf-8.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5160 for (n = cap->count1; n > 0; --n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5161 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5162 State = REPLACE;
3501
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5163 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5164 {
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5165 int c = ins_copychar(curwin->w_cursor.lnum
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5166 + (cap->nchar == Ctrl_Y ? -1 : 1));
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5167 if (c != NUL)
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5168 ins_char(c);
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5169 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5170 // will be decremented further down
3501
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5171 ++curwin->w_cursor.col;
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5172 }
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5173 else
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5174 ins_char(cap->nchar);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5175 State = old_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5176 if (cap->ncharC1 != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5177 ins_char(cap->ncharC1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5178 if (cap->ncharC2 != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5179 ins_char(cap->ncharC2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5180 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5181 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5182 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5183 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5184 // Replace the characters within one line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5185 for (n = cap->count1; n > 0; --n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5186 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5187 // Get ptr again, because u_save and/or showmatch() will have
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5188 // released the line. This may also happen in ins_copychar().
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5189 // At the same time we let know that the line will be changed.
3501
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5190 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5191 {
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5192 int c = ins_copychar(curwin->w_cursor.lnum
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5193 + (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
5194
ec62e0764ffa patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
5195 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
3501
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5196 if (c != NUL)
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5197 ptr[curwin->w_cursor.col] = c;
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5198 }
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5199 else
25786
ec62e0764ffa patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
5200 {
ec62e0764ffa patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
5201 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
3501
75037f9bc97a updated for version 7.3.513
Bram Moolenaar <bram@vim.org>
parents: 3431
diff changeset
5202 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
5203 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5204 if (p_sm && msg_silent == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5205 showmatch(cap->nchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5206 ++curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5207 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5208 #ifdef FEAT_NETBEANS_INTG
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2178
diff changeset
5209 if (netbeans_active())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5210 {
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2178
diff changeset
5211 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5212
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 24
diff changeset
5213 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2178
diff changeset
5214 (long)cap->count1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5215 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 24
diff changeset
5216 &ptr[start], (int)cap->count1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5217 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5218 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5219
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5220 // mark the buffer as changed and prepare for displaying
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5221 changed_bytes(curwin->w_cursor.lnum,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5222 (colnr_T)(curwin->w_cursor.col - cap->count1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5223 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5224 --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
5225 // 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
5226 // character, move two characters left
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5227 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5228 mb_adjust_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5229 curbuf->b_op_end = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5230 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5231 set_last_insert(cap->nchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5232 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5233 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5234
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5235 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5236 * 'o': Exchange start and end of Visual area.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5237 * 'O': same, but in block mode exchange left and right corners.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5238 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5239 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5240 v_swap_corners(int cmdchar)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5241 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5242 pos_T old_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5243 colnr_T left, right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5244
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5245 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5246 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5247 old_cursor = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5248 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5249 curwin->w_cursor.lnum = VIsual.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5250 coladvance(left);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5251 VIsual = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5252
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5253 curwin->w_cursor.lnum = old_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5254 curwin->w_curswant = right;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5255 // '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
5256 // right one column
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5257 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5258 ++curwin->w_curswant;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5259 coladvance(curwin->w_curswant);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5260 if (curwin->w_cursor.col == old_cursor.col
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5261 && (!virtual_active()
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5262 || curwin->w_cursor.coladd == old_cursor.coladd))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5263 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5264 curwin->w_cursor.lnum = VIsual.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5265 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5266 ++right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5267 coladvance(right);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5268 VIsual = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5269
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5270 curwin->w_cursor.lnum = old_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5271 coladvance(left);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5272 curwin->w_curswant = left;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5273 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5274 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5275 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5276 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5277 old_cursor = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5278 curwin->w_cursor = VIsual;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5279 VIsual = old_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5280 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5281 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5282 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5283
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5284 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5285 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5286 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5287 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5288 nv_Replace(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5289 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5290 if (VIsual_active) // "R" is replace lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5291 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5292 cap->cmdchar = 'c';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5293 cap->nchar = NUL;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5294 VIsual_mode_orig = VIsual_mode; // remember original area for gv
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5295 VIsual_mode = 'V';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5296 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5297 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
5298 else if (!checkclearopq(cap->oap))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5299 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5300 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
5301 emsg(_(e_cannot_make_changes_modifiable_is_off));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5302 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5303 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5304 if (virtual_active())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5305 coladvance(getviscol());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5306 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5307 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5308 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5309 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5310
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5311 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5312 * "gr".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5313 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5314 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5315 nv_vreplace(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5316 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5317 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5318 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5319 cap->cmdchar = 'r';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5320 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
5321 nv_replace(cap); // Do same as "r" in Visual mode for now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5322 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
5323 else if (!checkclearopq(cap->oap))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5324 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5325 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
5326 emsg(_(e_cannot_make_changes_modifiable_is_off));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5327 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5328 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5329 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
5330 cap->extra_char = get_literal(FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5331 stuffcharReadbuff(cap->extra_char);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5332 stuffcharReadbuff(ESC);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5333 if (virtual_active())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5334 coladvance(getviscol());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5335 invoke_edit(cap, TRUE, 'v', FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5336 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5337 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5338 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5339
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5340 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5341 * Swap case for "~" command, when it does not work like an operator.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5342 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5343 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5344 n_swapchar(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5345 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5346 long n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5347 pos_T startpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5348 int did_change = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5349 #ifdef FEAT_NETBEANS_INTG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5350 pos_T pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5351 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5352 int count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5353 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5354
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5355 if (checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5356 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5357
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
5358 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5359 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5360 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5361 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5362 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5363
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5364 prep_redo_cmd(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5365
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5366 if (u_save_cursor() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5367 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5368
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5369 startpos = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5370 #ifdef FEAT_NETBEANS_INTG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5371 pos = startpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5372 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5373 for (n = cap->count1; n > 0; --n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5374 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5375 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5376 inc_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5377 if (gchar_cursor() == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5378 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5379 if (vim_strchr(p_ww, '~') != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5380 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5381 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5382 #ifdef FEAT_NETBEANS_INTG
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2178
diff changeset
5383 if (netbeans_active())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5384 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5385 if (did_change)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5386 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5387 ptr = ml_get(pos.lnum);
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 820
diff changeset
5388 count = (int)STRLEN(ptr) - pos.col;
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 24
diff changeset
5389 netbeans_removed(curbuf, pos.lnum, pos.col,
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 24
diff changeset
5390 (long)count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5391 netbeans_inserted(curbuf, pos.lnum, pos.col,
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 24
diff changeset
5392 &ptr[pos.col], count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5393 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5394 pos.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5395 pos.lnum++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5396 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5397 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5398 ++curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5399 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5400 if (n > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5401 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5402 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5403 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5404 u_clearline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5405 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5406 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5407 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5408 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5409 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5410 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5411 #ifdef FEAT_NETBEANS_INTG
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2178
diff changeset
5412 if (did_change && netbeans_active())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5413 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5414 ptr = ml_get(pos.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5415 count = curwin->w_cursor.col - pos.col;
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 24
diff changeset
5416 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 24
diff changeset
5417 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5418 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5419 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5420
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5421
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5422 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5423 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5424 if (did_change)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5425 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5426 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5427 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5428 curbuf->b_op_start = startpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5429 curbuf->b_op_end = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5430 if (curbuf->b_op_end.col > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5431 --curbuf->b_op_end.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5432 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5433 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5434
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5435 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5436 * Move cursor to mark.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5437 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5438 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5439 nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5440 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5441 if (check_mark(pos) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5442 clearop(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5443 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5444 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5445 if (cap->cmdchar == '\''
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5446 || cap->cmdchar == '`'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5447 || cap->cmdchar == '['
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5448 || cap->cmdchar == ']')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5449 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5450 curwin->w_cursor = *pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5451 if (flag)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5452 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5453 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5454 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5455 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5456 cap->oap->motion_type = flag ? MLINE : MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5457 if (cap->cmdchar == '`')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5458 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
5459 cap->oap->inclusive = FALSE; // ignored if not MCHAR
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5460 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5461 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5462
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5463 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5464 * Handle commands that are operators in Visual mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5465 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5466 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5467 v_visop(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5468 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5469 static char_u trans[] = "YyDdCcxdXdAAIIrr";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5470
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5471 // 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
5472 // the end of the line, and "C" replaces till EOL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5473 if (isupper(cap->cmdchar))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5474 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5475 if (VIsual_mode != Ctrl_V)
4213
0a3fab86f34d updated for version 7.3.858
Bram Moolenaar <bram@vim.org>
parents: 4162
diff changeset
5476 {
0a3fab86f34d updated for version 7.3.858
Bram Moolenaar <bram@vim.org>
parents: 4162
diff changeset
5477 VIsual_mode_orig = VIsual_mode;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5478 VIsual_mode = 'V';
4213
0a3fab86f34d updated for version 7.3.858
Bram Moolenaar <bram@vim.org>
parents: 4162
diff changeset
5479 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5480 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5481 curwin->w_curswant = MAXCOL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5482 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5483 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5484 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5485 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5486
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5487 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5488 * "s" and "S" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5489 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5490 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5491 nv_subst(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5492 {
13298
a88c5e12b860 patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5493 #ifdef FEAT_TERMINAL
23229
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23165
diff changeset
5494 // 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
5495 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
5496 return;
a88c5e12b860 patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5497 #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
5498 #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
5499 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
5500 {
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
5501 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
5502 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
5503 }
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
5504 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5505 if (VIsual_active) // "vs" and "vS" are the same as "vc"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5506 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5507 if (cap->cmdchar == 'S')
4213
0a3fab86f34d updated for version 7.3.858
Bram Moolenaar <bram@vim.org>
parents: 4162
diff changeset
5508 {
0a3fab86f34d updated for version 7.3.858
Bram Moolenaar <bram@vim.org>
parents: 4162
diff changeset
5509 VIsual_mode_orig = VIsual_mode;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5510 VIsual_mode = 'V';
4213
0a3fab86f34d updated for version 7.3.858
Bram Moolenaar <bram@vim.org>
parents: 4162
diff changeset
5511 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5512 cap->cmdchar = 'c';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5513 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5514 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5515 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5516 nv_optrans(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5517 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5518
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5519 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5520 * Abbreviated commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5521 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5522 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5523 nv_abbrev(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5524 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5525 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
5526 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
5527
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5528 // in Visual mode these commands are operators
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5529 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5530 v_visop(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5531 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5532 nv_optrans(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5533 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5534
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5535 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5536 * Translate a command into another command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5537 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5538 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5539 nv_optrans(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5540 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5541 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5542 (char_u *)"d$", (char_u *)"c$",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5543 (char_u *)"cl", (char_u *)"cc",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5544 (char_u *)"yy", (char_u *)":s\r"};
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5545 static char_u *str = (char_u *)"xXDCsSY&";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5546
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5547 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5548 {
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
5549 // 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
5550 // either, because "2." should also not use the count.
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5551 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5552 {
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5553 cap->oap->start = curwin->w_cursor;
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5554 cap->oap->op_type = OP_DELETE;
1490
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
5555 #ifdef FEAT_EVAL
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
5556 set_op_var(OP_DELETE);
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
5557 #endif
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5558 cap->count1 = 1;
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5559 nv_dollar(cap);
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5560 finish_op = TRUE;
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5561 ResetRedobuff();
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5562 AppendCharToRedobuff('D');
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5563 }
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5564 else
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5565 {
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5566 if (cap->count0)
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5567 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
5568 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
5569 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5570 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5571 cap->opcount = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5572 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5573
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5574 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5575 * "'" and "`" commands. Also for "g'" and "g`".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5576 * cap->arg is TRUE for "'" and "g'".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5577 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5578 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5579 nv_gomark(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5580 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5581 pos_T *pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5582 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5583 #ifdef FEAT_FOLDING
4017
b6148e4a9c39 updated for version 7.3.763
Bram Moolenaar <bram@vim.org>
parents: 4013
diff changeset
5584 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
5585 int old_KeyTyped = KeyTyped; // getting file may reset it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5586 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5587
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5588 if (cap->cmdchar == 'g')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5589 c = cap->extra_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5590 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5591 c = cap->nchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5592 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
5593 if (pos == (pos_T *)-1) // jumped to other file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5594 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5595 if (cap->arg)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5596 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5597 check_cursor_lnum();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5598 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5599 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5600 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5601 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5602 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5603 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5604 nv_cursormark(cap, cap->arg, pos);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5605
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5606 // May need to clear the coladd that a mark includes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5607 if (!virtual_active())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5608 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
5609 check_cursor_col();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5610 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5611 if (cap->oap->op_type == OP_NOP
4057
a80af62d5e3b updated for version 7.3.783
Bram Moolenaar <bram@vim.org>
parents: 4017
diff changeset
5612 && pos != NULL
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
5613 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5614 && (fdo_flags & FDO_MARK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5615 && old_KeyTyped)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5616 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5617 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5618 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5619
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5620 /*
21703
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
5621 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5622 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5623 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5624 nv_pcmark(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5625 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5626 pos_T *pos;
26532
255bc9a08e58 patch 8.2.3795: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 26516
diff changeset
5627 #ifdef FEAT_FOLDING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5628 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
5629 int old_KeyTyped = KeyTyped; // getting file may reset it
26532
255bc9a08e58 patch 8.2.3795: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 26516
diff changeset
5630 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5631
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5632 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5633 {
21703
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
5634 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
5635 {
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
5636 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
5637 clearopbeep(cap->oap);
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
5638 return;
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
5639 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5640 if (cap->cmdchar == 'g')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5641 pos = movechangelist((int)cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5642 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5643 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
5644 if (pos == (pos_T *)-1) // jump to other file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5645 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5646 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5647 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5648 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5649 else if (pos != NULL) // can jump
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5650 nv_cursormark(cap, FALSE, pos);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5651 else if (cap->cmdchar == 'g')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5652 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5653 if (curbuf->b_changelistlen == 0)
26952
b34ddbca305c patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26929
diff changeset
5654 emsg(_(e_changelist_is_empty));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5655 else if (cap->count1 < 0)
26952
b34ddbca305c patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26929
diff changeset
5656 emsg(_(e_at_start_of_changelist));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5657 else
26952
b34ddbca305c patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26929
diff changeset
5658 emsg(_(e_at_end_of_changelist));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5659 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5660 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5661 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5662 # ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5663 if (cap->oap->op_type == OP_NOP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5664 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5665 && (fdo_flags & FDO_MARK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5666 && old_KeyTyped)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5667 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5668 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5669 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5670 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5671
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5672 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5673 * Handle '"' command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5674 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5675 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5676 nv_regname(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5677 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5678 if (checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5679 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5680 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5681 if (cap->nchar == '=')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5682 cap->nchar = get_expr_register();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5683 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5684 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5685 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5686 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
5687 cap->opcount = cap->count0; // remember count before '"'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5688 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5689 set_reg_var(cap->oap->regname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5690 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5691 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5692 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5693 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5694 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5695
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5696 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5697 * Handle "v", "V" and "CTRL-V" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5698 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5699 * is TRUE.
167
c93c9cad9618 updated for version 7.0051
vimboss
parents: 164
diff changeset
5700 * Handle CTRL-Q just like CTRL-V.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5701 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5702 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5703 nv_visual(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5704 {
167
c93c9cad9618 updated for version 7.0051
vimboss
parents: 164
diff changeset
5705 if (cap->cmdchar == Ctrl_Q)
c93c9cad9618 updated for version 7.0051
vimboss
parents: 164
diff changeset
5706 cap->cmdchar = Ctrl_V;
c93c9cad9618 updated for version 7.0051
vimboss
parents: 164
diff changeset
5707
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5708 // '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
5709 // characterwise, linewise, or blockwise.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5710 if (cap->oap->op_type != OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5711 {
15279
54457fc4af0b patch 8.1.0648: custom operators can't act upon a forced motion
Bram Moolenaar <Bram@vim.org>
parents: 15239
diff changeset
5712 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
5713 finish_op = FALSE; // operator doesn't finish now but later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5714 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5715 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5716
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5717 VIsual_select = cap->arg;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5718 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
5719 {
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5720 if (VIsual_mode == cap->cmdchar) // stop visual mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5721 end_visual_mode();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5722 else // toggle char/block mode
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5723 { // or char/line mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5724 VIsual_mode = cap->cmdchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5725 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
5726 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5727 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5728 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
5729 }
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5730 else // start Visual mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5731 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5732 check_visual_highlight();
3537
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5733 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5734 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5735 // use previously selected part
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5736 VIsual = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5737
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5738 VIsual_active = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5739 VIsual_reselect = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5740 if (!cap->arg)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5741 // start Select mode when 'selectmode' contains "cmd"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5742 may_start_select('c');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5743 setmouse();
641
6a944e0bd5d2 updated for version 7.0186
vimboss
parents: 638
diff changeset
5744 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
5745 redraw_cmdline = TRUE; // show visual mode later
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5746 // For V and ^V, we multiply the number of lines even if there
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
5747 // was only one -- webb
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5748 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5749 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5750 curwin->w_cursor.lnum +=
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5751 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
5752 check_cursor();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5753 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5754 VIsual_mode = resel_VIsual_mode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5755 if (VIsual_mode == 'v')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5756 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5757 if (resel_VIsual_line_count <= 1)
3125
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5758 {
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5759 validate_virtcol();
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5760 curwin->w_curswant = curwin->w_virtcol
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5761 + resel_VIsual_vcol * cap->count0 - 1;
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5762 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5763 else
3125
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5764 curwin->w_curswant = resel_VIsual_vcol;
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5765 coladvance(curwin->w_curswant);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5766 }
3125
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5767 if (resel_VIsual_vcol == MAXCOL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5768 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5769 curwin->w_curswant = MAXCOL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5770 coladvance((colnr_T)MAXCOL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5771 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5772 else if (VIsual_mode == Ctrl_V)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5773 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5774 validate_virtcol();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5775 curwin->w_curswant = curwin->w_virtcol
3125
992b24149a9e updated for version 7.3.333
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
5776 + resel_VIsual_vcol * cap->count0 - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5777 coladvance(curwin->w_curswant);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5778 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5779 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5780 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
5781 redraw_curbuf_later(INVERTED); // show the inversion
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5782 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5783 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5784 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5785 if (!cap->arg)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5786 // start Select mode when 'selectmode' contains "cmd"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5787 may_start_select('c');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5788 n_start_visual_mode(cap->cmdchar);
3537
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5789 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
5790 ++cap->count1; // include one more char
3537
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5791 if (cap->count0 > 0 && --cap->count1 > 0)
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5792 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5793 // With a count select that many characters or lines.
3537
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5794 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5795 nv_right(cap);
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5796 else if (VIsual_mode == 'V')
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5797 nv_down(cap);
d83218a156dd updated for version 7.3.529
Bram Moolenaar <bram@vim.org>
parents: 3531
diff changeset
5798 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5799 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5800 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5801 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5802
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5803 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5804 * Start selection for Shift-movement keys.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5805 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5806 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5807 start_selection(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5808 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5809 // if 'selectmode' contains "key", start Select mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5810 may_start_select('k');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5811 n_start_visual_mode('v');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5812 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5813
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5814 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5815 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5816 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5817 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5818 may_start_select(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5819 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5820 VIsual_select = (stuff_empty() && typebuf_typed()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5821 && (vim_strchr(p_slm, c) != NULL));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5822 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5823
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5824 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5825 * Start Visual mode "c".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5826 * Should set VIsual_select before calling this.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5827 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5828 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5829 n_start_visual_mode(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5830 {
2378
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
5831 #ifdef FEAT_CONCEAL
25074
aa55d6d17625 patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
5832 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
5833 && 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
5834 #endif
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
5835
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5836 VIsual_mode = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5837 VIsual_active = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5838 VIsual_reselect = TRUE;
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5839
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5840 // 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
5841 // 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
5842 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB)
3742
3416ac23d075 updated for version 7.3.630
Bram Moolenaar <bram@vim.org>
parents: 3718
diff changeset
5843 {
3416ac23d075 updated for version 7.3.630
Bram Moolenaar <bram@vim.org>
parents: 3718
diff changeset
5844 validate_virtcol();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5845 coladvance(curwin->w_virtcol);
3742
3416ac23d075 updated for version 7.3.630
Bram Moolenaar <bram@vim.org>
parents: 3718
diff changeset
5846 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5847 VIsual = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5848
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5849 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5850 foldAdjustVisual();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5851 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5852
26157
20200363816c patch 8.2.3610: crash when ModeChanged triggered too early
Bram Moolenaar <Bram@vim.org>
parents: 26101
diff changeset
5853 trigger_modechanged();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5854 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
5855 #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
5856 // 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
5857 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
5858 #endif
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2348
diff changeset
5859
641
6a944e0bd5d2 updated for version 7.0186
vimboss
parents: 638
diff changeset
5860 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
5861 redraw_cmdline = TRUE; // show visual mode later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5862 #ifdef FEAT_CLIPBOARD
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5863 // 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
5864 // end may still be the same, and the selection needs to be owned
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5865 clip_star.vmode = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5866 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5867
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5868 // 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
5869 // Visual area (when 'lazyredraw' is set).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5870 if (curwin->w_redr_type < INVERTED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5871 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5872 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5873 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5874 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5875 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5876
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5877
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5878 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5879 * CTRL-W: Window commands
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5880 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5881 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5882 nv_window(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5883 {
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
5884 if (cap->nchar == ':')
13072
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 12924
diff changeset
5885 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5886 // "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
5887 cap->cmdchar = ':';
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 12924
diff changeset
5888 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
5889 nv_colon(cap);
13072
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 12924
diff changeset
5890 }
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
5891 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
5892 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5893 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5894
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5895 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5896 * CTRL-Z: Suspend
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5897 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5898 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
5899 nv_suspend(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5900 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5901 clearop(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5902 if (VIsual_active)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
5903 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
5904 do_cmdline_cmd((char_u *)"stop");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5905 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5906
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5907 /*
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5908 * "gv": Reselect the previous Visual area. If Visual already active,
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5909 * exchange previous and current Visual area.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5910 */
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5911 static void
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5912 nv_gv_cmd(cmdarg_T *cap)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5913 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5914 pos_T tpos;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5915 int i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5916
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5917 if (checkclearop(cap->oap))
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5918 return;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5919
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5920 if (curbuf->b_visual.vi_start.lnum == 0
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5921 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5922 || curbuf->b_visual.vi_end.lnum == 0)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5923 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5924 beep_flush();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5925 return;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5926 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5927
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5928 // set w_cursor to the start of the Visual area, tpos to the end
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5929 if (VIsual_active)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5930 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5931 i = VIsual_mode;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5932 VIsual_mode = curbuf->b_visual.vi_mode;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5933 curbuf->b_visual.vi_mode = i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5934 # ifdef FEAT_EVAL
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5935 curbuf->b_visual_mode_eval = i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5936 # endif
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5937 i = curwin->w_curswant;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5938 curwin->w_curswant = curbuf->b_visual.vi_curswant;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5939 curbuf->b_visual.vi_curswant = i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5940
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5941 tpos = curbuf->b_visual.vi_end;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5942 curbuf->b_visual.vi_end = curwin->w_cursor;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5943 curwin->w_cursor = curbuf->b_visual.vi_start;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5944 curbuf->b_visual.vi_start = VIsual;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5945 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5946 else
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5947 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5948 VIsual_mode = curbuf->b_visual.vi_mode;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5949 curwin->w_curswant = curbuf->b_visual.vi_curswant;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5950 tpos = curbuf->b_visual.vi_end;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5951 curwin->w_cursor = curbuf->b_visual.vi_start;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5952 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5953
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5954 VIsual_active = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5955 VIsual_reselect = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5956
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5957 // Set Visual to the start and w_cursor to the end of the Visual
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5958 // area. Make sure they are on an existing character.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5959 check_cursor();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5960 VIsual = curwin->w_cursor;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5961 curwin->w_cursor = tpos;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5962 check_cursor();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5963 update_topline();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5964
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5965 // When called from normal "g" command: start Select mode when
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5966 // 'selectmode' contains "cmd". When called for K_SELECT, always
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5967 // start Select mode.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5968 if (cap->arg)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5969 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5970 VIsual_select = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5971 VIsual_select_reg = 0;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5972 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5973 else
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5974 may_start_select('c');
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5975 setmouse();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5976 #ifdef FEAT_CLIPBOARD
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5977 // Make sure the clipboard gets updated. Needed because start and
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5978 // end are still the same, and the selection needs to be owned
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5979 clip_star.vmode = NUL;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5980 #endif
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5981 redraw_curbuf_later(INVERTED);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5982 showmode();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5983 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5984
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5985 /*
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5986 * "g0", "g^" : Like "0" and "^" but for screen lines.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5987 * "gm": middle of "g0" and "g$".
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5988 */
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5989 static void
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5990 nv_g_home_m_cmd(cmdarg_T *cap)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5991 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5992 int i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5993 int flag = FALSE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5994
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5995 if (cap->nchar == '^')
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5996 flag = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5997
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5998 cap->oap->motion_type = MCHAR;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
5999 cap->oap->inclusive = FALSE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6000 if (curwin->w_p_wrap && curwin->w_width != 0)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6001 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6002 int width1 = curwin->w_width - curwin_col_off();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6003 int width2 = width1 + curwin_col_off2();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6004
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6005 validate_virtcol();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6006 i = 0;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6007 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6008 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6009 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6010 else
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6011 i = curwin->w_leftcol;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6012 // Go to the middle of the screen line. When 'number' or
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6013 // 'relativenumber' is on and lines are wrapping the middle can be more
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6014 // to the left.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6015 if (cap->nchar == 'm')
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6016 i += (curwin->w_width - curwin_col_off()
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6017 + ((curwin->w_p_wrap && i > 0)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6018 ? curwin_col_off2() : 0)) / 2;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6019 coladvance((colnr_T)i);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6020 if (flag)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6021 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6022 do
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6023 i = gchar_cursor();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6024 while (VIM_ISWHITE(i) && oneright() == OK);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6025 curwin->w_valid &= ~VALID_WCOL;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6026 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6027 curwin->w_set_curswant = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6028 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6029
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6030 /*
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6031 * "g_": to the last non-blank character in the line or <count> lines
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6032 * downward.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6033 */
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6034 static void
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6035 nv_g_underscore_cmd(cmdarg_T *cap)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6036 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6037 char_u *ptr;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6038
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6039 cap->oap->motion_type = MCHAR;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6040 cap->oap->inclusive = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6041 curwin->w_curswant = MAXCOL;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6042 if (cursor_down((long)(cap->count1 - 1),
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6043 cap->oap->op_type == OP_NOP) == FAIL)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6044 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6045 clearopbeep(cap->oap);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6046 return;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6047 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6048
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6049 ptr = ml_get_curline();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6050
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6051 // In Visual mode we may end up after the line.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6052 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6053 --curwin->w_cursor.col;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6054
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6055 // Decrease the cursor column until it's on a non-blank.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6056 while (curwin->w_cursor.col > 0
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6057 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6058 --curwin->w_cursor.col;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6059 curwin->w_set_curswant = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6060 adjust_for_sel(cap);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6061 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6062
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6063 /*
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6064 * "g$" : Like "$" but for screen lines.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6065 */
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6066 static void
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6067 nv_g_dollar_cmd(cmdarg_T *cap)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6068 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6069 oparg_T *oap = cap->oap;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6070 int i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6071 int col_off = curwin_col_off();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6072
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6073 oap->motion_type = MCHAR;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6074 oap->inclusive = TRUE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6075 if (curwin->w_p_wrap && curwin->w_width != 0)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6076 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6077 curwin->w_curswant = MAXCOL; // so we stay at the end
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6078 if (cap->count1 == 1)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6079 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6080 int width1 = curwin->w_width - col_off;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6081 int width2 = width1 + curwin_col_off2();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6082
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6083 validate_virtcol();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6084 i = width1 - 1;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6085 if (curwin->w_virtcol >= (colnr_T)width1)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6086 i += ((curwin->w_virtcol - width1) / width2 + 1)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6087 * width2;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6088 coladvance((colnr_T)i);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6089
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6090 // Make sure we stick in this column.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6091 validate_virtcol();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6092 curwin->w_curswant = curwin->w_virtcol;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6093 curwin->w_set_curswant = FALSE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6094 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6095 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6096 // Check for landing on a character that got split at
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6097 // the end of the line. We do not want to advance to
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6098 // the next screen line.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6099 if (curwin->w_virtcol > (colnr_T)i)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6100 --curwin->w_cursor.col;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6101 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6102 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6103 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6104 clearopbeep(oap);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6105 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6106 else
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6107 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6108 if (cap->count1 > 1)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6109 // if it fails, let the cursor still move to the last char
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6110 (void)cursor_down(cap->count1 - 1, FALSE);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6111
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6112 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6113 coladvance((colnr_T)i);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6114
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6115 // if the character doesn't fit move one back
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6116 if (curwin->w_cursor.col > 0
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6117 && (*mb_ptr2cells)(ml_get_cursor()) > 1)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6118 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6119 colnr_T vcol;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6120
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6121 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &vcol);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6122 if (vcol >= curwin->w_leftcol + curwin->w_width - col_off)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6123 --curwin->w_cursor.col;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6124 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6125
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6126 // Make sure we stick in this column.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6127 validate_virtcol();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6128 curwin->w_curswant = curwin->w_virtcol;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6129 curwin->w_set_curswant = FALSE;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6130 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6131 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6132
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6133 /*
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6134 * "gi": start Insert at the last position.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6135 */
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6136 static void
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6137 nv_gi_cmd(cmdarg_T *cap)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6138 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6139 int i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6140
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6141 if (curbuf->b_last_insert.lnum != 0)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6142 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6143 curwin->w_cursor = curbuf->b_last_insert;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6144 check_cursor_lnum();
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6145 i = (int)STRLEN(ml_get_curline());
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6146 if (curwin->w_cursor.col > (colnr_T)i)
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6147 {
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6148 if (virtual_active())
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6149 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6150 curwin->w_cursor.col = i;
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6151 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6152 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6153 cap->cmdchar = 'i';
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6154 nv_edit(cap);
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6155 }
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6156
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6157 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6158 * Commands starting with "g".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6159 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6160 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6161 nv_g_cmd(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6162 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6163 oparg_T *oap = cap->oap;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6164 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6165
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6166 switch (cap->nchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6167 {
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6168 case Ctrl_A:
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6169 case Ctrl_X:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6170 #ifdef MEM_PROFILE
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6171 // "g^A": dump log of used memory.
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6172 if (!VIsual_active && cap->nchar == Ctrl_A)
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6173 vim_mem_profile_dump();
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6174 else
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6175 #endif
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6176 // "g^A/g^X": sequentially increment visually selected region
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6177 if (VIsual_active)
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6178 {
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6179 cap->arg = TRUE;
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6180 cap->cmdchar = cap->nchar;
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
6181 cap->nchar = NUL;
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6182 nv_addsub(cap);
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6183 }
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6184 else
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
6185 clearopbeep(oap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6186 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6187
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6188 // "gR": Enter virtual replace mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6189 case 'R':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6190 cap->arg = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6191 nv_Replace(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6192 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6193
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6194 case 'r':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6195 nv_vreplace(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6196 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6197
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6198 case '&':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6199 do_cmdline_cmd((char_u *)"%s//~/&");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6200 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6201
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6202 // "gv": Reselect the previous Visual area. If Visual already active,
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6203 // exchange previous and current Visual area.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6204 case 'v':
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6205 nv_gv_cmd(cap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6206 break;
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6207
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6208 // "gV": Don't reselect the previous Visual area after a Select mode
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6209 // mapping of menu.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6210 case 'V':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6211 VIsual_reselect = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6212 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6213
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6214 // "gh": start Select mode.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6215 // "gH": start Select line mode.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6216 // "g^H": start Select block mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6217 case K_BS:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6218 cap->nchar = Ctrl_H;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6219 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6220 case 'h':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6221 case 'H':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6222 case Ctrl_H:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6223 # ifdef EBCDIC
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6224 // EBCDIC: 'v'-'h' != '^v'-'^h'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6225 if (cap->nchar == Ctrl_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6226 cap->cmdchar = Ctrl_V;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6227 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6228 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6229 cap->cmdchar = cap->nchar + ('v' - 'h');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6230 cap->arg = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6231 nv_visual(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6232 break;
3701
9f48a5432997 updated for version 7.3.610
Bram Moolenaar <bram@vim.org>
parents: 3674
diff changeset
6233
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6234 // "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
6235 // "gn" selects next match
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6236 // "gN" selects previous match
3701
9f48a5432997 updated for version 7.3.610
Bram Moolenaar <bram@vim.org>
parents: 3674
diff changeset
6237 case 'N':
9f48a5432997 updated for version 7.3.610
Bram Moolenaar <bram@vim.org>
parents: 3674
diff changeset
6238 case 'n':
9f48a5432997 updated for version 7.3.610
Bram Moolenaar <bram@vim.org>
parents: 3674
diff changeset
6239 if (!current_search(cap->count1, cap->nchar == 'n'))
3896
be8ad9c9b973 updated for version 7.3.704
Bram Moolenaar <bram@vim.org>
parents: 3742
diff changeset
6240 clearopbeep(oap);
3701
9f48a5432997 updated for version 7.3.610
Bram Moolenaar <bram@vim.org>
parents: 3674
diff changeset
6241 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6242
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6243 // "gj" and "gk" two new funny movement keys -- up and down
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6244 // movement based on *screen* line rather than *file* line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6245 case 'j':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6246 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
6247 // 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
6248 if (!curwin->w_p_wrap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6249 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6250 oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6251 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6252 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6253 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6254 i = nv_screengo(oap, FORWARD, cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6255 if (i == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6256 clearopbeep(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6257 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6258
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6259 case 'k':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6260 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
6261 // 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
6262 if (!curwin->w_p_wrap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6263 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6264 oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6265 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6266 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6267 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6268 i = nv_screengo(oap, BACKWARD, cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6269 if (i == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6270 clearopbeep(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6271 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6272
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6273 // "gJ": join two lines without inserting a space.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6274 case 'J':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6275 nv_join(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6276 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6277
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6278 // "g0", "g^" : Like "0" and "^" but for screen lines.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6279 // "gm": middle of "g0" and "g$".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6280 case '^':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6281 case '0':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6282 case 'm':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6283 case K_HOME:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6284 case K_KHOME:
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6285 nv_g_home_m_cmd(cap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6286 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6287
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
6288 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
6289 {
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
6290 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
6291 oap->inclusive = FALSE;
26749
efe4c8a79502 patch 8.2.3903: "gM" does not count tabs as expected
Bram Moolenaar <Bram@vim.org>
parents: 26532
diff changeset
6292 i = linetabsize(ml_get_curline());
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
6293 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
6294 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
6295 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
6296 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
6297 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
6298 }
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
6299 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
6300
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6301 // "g_": to the last non-blank character in the line or <count> lines
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6302 // downward.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6303 case '_':
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6304 nv_g_underscore_cmd(cap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6305 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6306
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6307 // "g$" : Like "$" but for screen lines.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6308 case '$':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6309 case K_END:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6310 case K_KEND:
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6311 nv_g_dollar_cmd(cap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6312 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6313
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6314 // "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6315 case '*':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6316 case '#':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6317 #if POUND != '#'
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6318 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
6319 #endif
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6320 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
6321 case ']': // :tselect for current identifier
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6322 nv_ident(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6323 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6324
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6325 // ge and gE: go back to end of word
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6326 case 'e':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6327 case 'E':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6328 oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6329 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6330 oap->inclusive = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6331 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6332 clearopbeep(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6333 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6334
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6335 // "g CTRL-G": display info about cursor position
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6336 case Ctrl_G:
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7311
diff changeset
6337 cursor_pos_info(NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6338 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6339
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6340 // "gi": start Insert at the last position.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6341 case 'i':
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6342 nv_gi_cmd(cap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6343 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6344
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6345 // "gI": Start insert in column 1.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6346 case 'I':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6347 beginline(0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6348 if (!checkclearopq(oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6349 invoke_edit(cap, FALSE, 'g', FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6350 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6351
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6352 #ifdef FEAT_SEARCHPATH
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6353 // "gf": goto file, edit file under cursor
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6354 // "]f" and "[f": can also be used.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6355 case 'f':
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 671
diff changeset
6356 case 'F':
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6357 nv_gotofile(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6358 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6359 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6360
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6361 // "g'm" and "g`m": jump to mark without setting pcmark
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6362 case '\'':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6363 cap->arg = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6364 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6365 case '`':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6366 nv_gomark(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6367 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6368
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6369 // "gs": Goto sleep.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6370 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
6371 do_sleep(cap->count1 * 1000L, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6372 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6373
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6374 // "ga": Display the ascii value of the character under the
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6375 // cursor. It is displayed in decimal, hex, and octal. -- webb
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6376 case 'a':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6377 do_ascii(NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6378 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6379
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6380 // "g8": Display the bytes used for the UTF-8 character under the
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6381 // cursor. It is displayed in hex.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6382 // "8g8" finds illegal byte sequence.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6383 case '8':
775
f04f56979d84 updated for version 7.0227
vimboss
parents: 771
diff changeset
6384 if (cap->count0 == 8)
f04f56979d84 updated for version 7.0227
vimboss
parents: 771
diff changeset
6385 utf_find_illegal();
f04f56979d84 updated for version 7.0227
vimboss
parents: 771
diff changeset
6386 else
f04f56979d84 updated for version 7.0227
vimboss
parents: 771
diff changeset
6387 show_utf8();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6388 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6389
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6390 // "g<": show scrollback text
447
8347d456f7e5 updated for version 7.0118
vimboss
parents: 420
diff changeset
6391 case '<':
8347d456f7e5 updated for version 7.0118
vimboss
parents: 420
diff changeset
6392 show_sb_text();
8347d456f7e5 updated for version 7.0118
vimboss
parents: 420
diff changeset
6393 break;
8347d456f7e5 updated for version 7.0118
vimboss
parents: 420
diff changeset
6394
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6395 // "gg": Goto the first line in file. With a count it goes to
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6396 // that line number like for "G". -- webb
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6397 case 'g':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6398 cap->arg = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6399 nv_goto(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6400 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6401
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6402 // Two-character operators:
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6403 // "gq" Format text
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6404 // "gw" Format text and keep cursor position
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6405 // "g~" Toggle the case of the text.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6406 // "gu" Change text to lower case.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6407 // "gU" Change text to upper case.
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6408 // "g?" rot13 encoding
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6409 // "g@" call 'operatorfunc'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6410 case 'q':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6411 case 'w':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6412 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
6413 // FALLTHROUGH
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6414 case '~':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6415 case 'u':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6416 case 'U':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6417 case '?':
602
111509d2767a updated for version 7.0171
vimboss
parents: 598
diff changeset
6418 case '@':
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6419 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6420 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6421
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6422 // "gd": Find first occurrence of pattern under the cursor in the
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6423 // current function
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6424 // "gD": idem, but in the current file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6425 case 'd':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6426 case 'D':
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 503
diff changeset
6427 nv_gd(oap, cap->nchar, (int)cap->count0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6428 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6429
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6430 // g<*Mouse> : <C-*mouse>
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6431 case K_MIDDLEMOUSE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6432 case K_MIDDLEDRAG:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6433 case K_MIDDLERELEASE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6434 case K_LEFTMOUSE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6435 case K_LEFTDRAG:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6436 case K_LEFTRELEASE:
12865
ebb4f6c93598 patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12674
diff changeset
6437 case K_MOUSEMOVE:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6438 case K_RIGHTMOUSE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6439 case K_RIGHTDRAG:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6440 case K_RIGHTRELEASE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6441 case K_X1MOUSE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6442 case K_X1DRAG:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6443 case K_X1RELEASE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6444 case K_X2MOUSE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6445 case K_X2DRAG:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6446 case K_X2RELEASE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6447 mod_mask = MOD_MASK_CTRL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6448 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6449 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6450
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6451 case K_IGNORE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6452 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6453
27273
a9f0c1f06c84 patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 27263
diff changeset
6454 // "gP" and "gp": same as "P" and "p" but leave cursor just after new text
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6455 case 'p':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6456 case 'P':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6457 nv_put(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6458 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6459
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6460 #ifdef FEAT_BYTEOFF
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6461 // "go": goto byte count from start of buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6462 case 'o':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6463 goto_byte(cap->count0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6464 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6465 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6466
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6467 // "gQ": improved Ex mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6468 case 'Q':
633
7437be625546 updated for version 7.0183
vimboss
parents: 631
diff changeset
6469 if (text_locked())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6470 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6471 clearopbeep(cap->oap);
633
7437be625546 updated for version 7.0183
vimboss
parents: 631
diff changeset
6472 text_locked_msg();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6473 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6474 }
631
68a196b7504d updated for version 7.0182
vimboss
parents: 620
diff changeset
6475
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6476 if (!checkclearopq(oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6477 do_exmode(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6478 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6479
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6480 case ',':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6481 nv_pcmark(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6482 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6483
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6484 case ';':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6485 cap->count1 = -cap->count1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6486 nv_pcmark(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6487 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6488
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 660
diff changeset
6489 case 't':
3630
79ae10bd0565 updated for version 7.3.575
Bram Moolenaar <bram@vim.org>
parents: 3562
diff changeset
6490 if (!checkclearop(oap))
79ae10bd0565 updated for version 7.3.575
Bram Moolenaar <bram@vim.org>
parents: 3562
diff changeset
6491 goto_tabpage((int)cap->count0);
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 660
diff changeset
6492 break;
682
f1b013312711 updated for version 7.0205
vimboss
parents: 681
diff changeset
6493 case 'T':
3630
79ae10bd0565 updated for version 7.3.575
Bram Moolenaar <bram@vim.org>
parents: 3562
diff changeset
6494 if (!checkclearop(oap))
79ae10bd0565 updated for version 7.3.575
Bram Moolenaar <bram@vim.org>
parents: 3562
diff changeset
6495 goto_tabpage(-(int)cap->count1);
682
f1b013312711 updated for version 7.0205
vimboss
parents: 681
diff changeset
6496 break;
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 660
diff changeset
6497
21703
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
6498 case TAB:
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
6499 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
6500 clearopbeep(oap);
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
6501 break;
22583b9d4efd patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents: 21415
diff changeset
6502
750
e2f45cbe2b8a updated for version 7.0223
vimboss
parents: 737
diff changeset
6503 case '+':
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6504 case '-': // "g+" and "g-": undo or redo along the timeline
750
e2f45cbe2b8a updated for version 7.0223
vimboss
parents: 737
diff changeset
6505 if (!checkclearopq(oap))
771
c0f1b710ce07 updated for version 7.0226
vimboss
parents: 756
diff changeset
6506 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
6507 FALSE, FALSE, FALSE);
750
e2f45cbe2b8a updated for version 7.0223
vimboss
parents: 737
diff changeset
6508 break;
e2f45cbe2b8a updated for version 7.0223
vimboss
parents: 737
diff changeset
6509
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6510 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6511 clearopbeep(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6512 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6513 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6514 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6515
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6516 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6517 * Handle "o" and "O" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6518 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6519 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6520 n_opencmd(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6521 {
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
6522 #ifdef FEAT_CONCEAL
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
6523 linenr_T oldline = curwin->w_cursor.lnum;
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
6524 #endif
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
6525
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6526 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6527 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6528 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6529 if (cap->cmdchar == 'O')
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6530 // Open above the first line of a folded sequence of lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6531 (void)hasFolding(curwin->w_cursor.lnum,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6532 &curwin->w_cursor.lnum, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6533 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6534 // Open below the last line of a folded sequence of lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6535 (void)hasFolding(curwin->w_cursor.lnum,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6536 NULL, &curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6537 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6538 if (u_save((linenr_T)(curwin->w_cursor.lnum -
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6539 (cap->cmdchar == 'O' ? 1 : 0)),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6540 (linenr_T)(curwin->w_cursor.lnum +
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6541 (cap->cmdchar == 'o' ? 1 : 0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6542 ) == OK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6543 && 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
6544 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
26516
9596c652420b patch 8.2.3787: no proper formatting of a C line comment after a statement
Bram Moolenaar <Bram@vim.org>
parents: 26468
diff changeset
6545 0, NULL) == OK)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6546 {
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
6547 #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
6548 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
6549 redrawWinline(curwin, oldline);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
6550 #endif
6834
8730db0c187b patch 7.4.738
Bram Moolenaar <bram@vim.org>
parents: 6826
diff changeset
6551 #ifdef FEAT_SYN_HL
6821
cd7a7975f92c patch 7.4.732
Bram Moolenaar <bram@vim.org>
parents: 6725
diff changeset
6552 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
6553 // force redraw of cursorline
6821
cd7a7975f92c patch 7.4.732
Bram Moolenaar <bram@vim.org>
parents: 6725
diff changeset
6554 curwin->w_valid &= ~VALID_CROW;
6834
8730db0c187b patch 7.4.738
Bram Moolenaar <bram@vim.org>
parents: 6826
diff changeset
6555 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6556 // 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
6557 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
6558 cap->count1 = 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6559 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6560 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6561 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6562 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6563
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6564 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6565 * "." command: redo last change.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6566 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6567 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6568 nv_dot(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6569 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6570 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6571 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6572 // If "restart_edit" is TRUE, the last but one command is repeated
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6573 // instead of the last command (inserting text). This is used for
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6574 // CTRL-O <.> in insert mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6575 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6576 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6577 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6578 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6579
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6580 /*
27263
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6581 * CTRL-R: undo undo or specify register in select mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6582 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6583 static void
27263
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6584 nv_redo_or_register(cmdarg_T *cap)
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6585 {
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6586 if (VIsual_select && VIsual_active)
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6587 {
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6588 int reg;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6589 // Get register name
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6590 ++no_mapping;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6591 ++allow_keys;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6592 reg = plain_vgetc();
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6593 LANGMAP_ADJUST(reg, TRUE);
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6594 --no_mapping;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6595 --allow_keys;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6596
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6597 if (reg == '"')
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6598 // the unnamed register is 0
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6599 reg = 0;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6600
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6601 VIsual_select_reg = valid_yank_reg(reg, TRUE) ? reg : 0;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6602 return;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6603 }
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6604
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6605 if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6606 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6607 u_redo((int)cap->count1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6608 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6609 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6610 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6611
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6612 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6613 * Handle "U" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6614 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6615 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6616 nv_Undo(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6617 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6618 // In Visual mode and typing "gUU" triggers an operator
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
6619 if (cap->oap->op_type == OP_UPPER || VIsual_active)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6620 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6621 // translate "gUU" to "gUgU"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6622 cap->cmdchar = 'g';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6623 cap->nchar = 'U';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6624 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6625 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6626 else if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6627 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6628 u_undoline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6629 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6630 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6631 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6632
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6633 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6634 * '~' command: If tilde is not an operator and Visual is off: swap case of a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6635 * single character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6636 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6637 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6638 nv_tilde(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6639 {
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
6640 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
6641 {
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
6642 #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
6643 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
6644 {
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
6645 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
6646 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
6647 }
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
6648 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6649 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
6650 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6651 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6652 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6653 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6654
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6655 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6656 * Handle an operator command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6657 * The actual work is done by do_pending_operator().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6658 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6659 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6660 nv_operator(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6661 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6662 int op_type;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6663
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6664 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
6665 #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
6666 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
6667 {
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
6668 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
6669 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
6670 }
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
6671 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6672
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6673 if (op_type == cap->oap->op_type) // double operator works on lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6674 nv_lineop(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6675 else if (!checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6676 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6677 cap->oap->start = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6678 cap->oap->op_type = op_type;
1490
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6679 #ifdef FEAT_EVAL
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6680 set_op_var(op_type);
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6681 #endif
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6682 }
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6683 }
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6684
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6685 #ifdef FEAT_EVAL
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6686 /*
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6687 * Set v:operator to the characters for "optype".
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6688 */
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6689 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6690 set_op_var(int optype)
1490
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6691 {
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6692 char_u opchars[3];
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6693
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6694 if (optype == OP_NOP)
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6695 set_vim_var_string(VV_OP, NULL, 0);
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6696 else
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6697 {
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6698 opchars[0] = get_op_char(optype);
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6699 opchars[1] = get_extra_op_char(optype);
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6700 opchars[2] = NUL;
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6701 set_vim_var_string(VV_OP, opchars, -1);
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6702 }
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6703 }
0f3f3090491f updated for version 7.1-205
vimboss
parents: 1475
diff changeset
6704 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6705
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6706 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6707 * Handle linewise operator "dd", "yy", etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6708 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6709 * "_" is is a strange motion command that helps make operators more logical.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6710 * It is actually implemented, but not documented in the real Vi. This motion
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6711 * command actually refers to "the current line". Commands like "dd" and "yy"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6712 * are really an alternate form of "d_" and "y_". It does accept a count, so
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6713 * "d3_" works to delete 3 lines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6714 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6715 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6716 nv_lineop(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6717 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6718 cap->oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6719 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6720 clearopbeep(cap->oap);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6721 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions
4011
8e54a32bcd56 updated for version 7.3.760
Bram Moolenaar <bram@vim.org>
parents: 3908
diff changeset
6722 && cap->oap->motion_force != 'v'
8e54a32bcd56 updated for version 7.3.760
Bram Moolenaar <bram@vim.org>
parents: 3908
diff changeset
6723 && cap->oap->motion_force != Ctrl_V)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6724 || cap->oap->op_type == OP_LSHIFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6725 || cap->oap->op_type == OP_RSHIFT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6726 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
6727 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6728 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6729 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6730
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6731 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6732 * <Home> command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6733 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6734 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6735 nv_home(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6736 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6737 // CTRL-HOME is like "gg"
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6738 if (mod_mask & MOD_MASK_CTRL)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6739 nv_goto(cap);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6740 else
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6741 {
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6742 cap->count0 = 1;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6743 nv_pipe(cap);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6744 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6745 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
6746 // one-character line).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6747 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6748
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6749 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6750 * "|" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6751 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6752 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6753 nv_pipe(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6754 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6755 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6756 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6757 beginline(0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6758 if (cap->count0 > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6759 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6760 coladvance((colnr_T)(cap->count0 - 1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6761 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6762 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6763 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6764 curwin->w_curswant = 0;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6765 // 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
6766 // we ended; differs if line is too short
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6767 curwin->w_set_curswant = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6768 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6769
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6770 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6771 * Handle back-word command "b" and "B".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6772 * cap->arg is 1 for "B"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6773 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6774 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6775 nv_bck_word(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6776 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6777 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6778 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6779 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6780 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6781 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6782 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6783 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6784 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6785 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6786 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6787
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6788 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6789 * Handle word motion commands "e", "E", "w" and "W".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6790 * cap->arg is TRUE for "E" and "W".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6791 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6792 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6793 nv_wordcmd(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6794 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6795 int n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6796 int word_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6797 int flag = FALSE;
1573
0e3bd80a3f74 updated for version 7.1-286
vimboss
parents: 1521
diff changeset
6798 pos_T startpos = curwin->w_cursor;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6799
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6800 // Set inclusive for the "E" and "e" command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6801 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6802 word_end = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6803 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6804 word_end = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6805 cap->oap->inclusive = word_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6806
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6807 // "cw" and "cW" are a special case.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6808 if (!word_end && cap->oap->op_type == OP_CHANGE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6809 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6810 n = gchar_cursor();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6811 if (n != NUL) // not an empty line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6812 {
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
6813 if (VIM_ISWHITE(n))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6814 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6815 // Reproduce a funny Vi behaviour: "cw" on a blank only
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6816 // changes one character, not all blanks until the start of
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6817 // the next word. Only do this when the 'w' flag is included
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6818 // in 'cpoptions'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6819 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6820 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6821 cap->oap->inclusive = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6822 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6823 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6824 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6825 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6826 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6827 {
27386
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6828 // This is a little strange. To match what the real Vi does,
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6829 // we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6830 // that we are not on a space or a TAB. This seems impolite
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6831 // at first, but it's really more what we mean when we say
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6832 // 'cw'.
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6833 // Another strangeness: When standing on the end of a word
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6834 // "ce" will change until the end of the next word, but "cw"
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6835 // will change only one character! This is done by setting
ccfb16d876b1 patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents: 27354
diff changeset
6836 // flag.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6837 cap->oap->inclusive = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6838 word_end = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6839 flag = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6840 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6841 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6842 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6843
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6844 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6845 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6846 if (word_end)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6847 n = end_word(cap->count1, cap->arg, flag, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6848 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6849 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6850
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6851 // 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
6852 // 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
6853 if (LT_POS(startpos, curwin->w_cursor))
1505
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6854 adjust_cursor(cap->oap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6855
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6856 if (n == FAIL && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6857 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6858 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6859 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6860 adjust_for_sel(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6861 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6862 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6863 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6864 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6865 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6866 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6867
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6868 /*
1505
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6869 * Used after a movement command: If the cursor ends up on the NUL after the
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6870 * end of the line, may move it back to the last character and make the motion
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6871 * inclusive.
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6872 */
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6873 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6874 adjust_cursor(oparg_T *oap)
1505
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6875 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6876 // 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
6877 // - the column is > 0
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6878 // - 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
6879 // - 'virtualedit' is not "all" and not "onemore".
1505
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6880 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6881 && (!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
6882 && !virtual_active() && (get_ve_flags() & VE_ONEMORE) == 0)
1505
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6883 {
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6884 --curwin->w_cursor.col;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6885 // prevent cursor from moving on the trail byte
1505
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6886 if (has_mbyte)
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6887 mb_adjust_cursor();
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6888 oap->inclusive = TRUE;
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6889 }
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6890 }
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6891
184a6091124e updated for version 7.1-220
vimboss
parents: 1496
diff changeset
6892 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6893 * "0" and "^" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6894 * cap->arg is the argument for beginline().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6895 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6896 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6897 nv_beginline(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6898 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6899 cap->oap->motion_type = MCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6900 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6901 beginline(cap->arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6902 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6903 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6904 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6905 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6906 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
6907 // one-character line).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6908 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6909
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6910 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6911 * In exclusive Visual mode, may include the last character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6912 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6913 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6914 adjust_for_sel(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6915 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6916 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
6917 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6918 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6919 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6920 inc_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6921 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6922 ++curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6923 cap->oap->inclusive = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6924 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6925 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6926
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6927 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6928 * Exclude last character at end of Visual area for 'selection' == "exclusive".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6929 * Should check VIsual_mode before calling this.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6930 * Returns TRUE when backed up to the previous line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6931 */
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
6932 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6933 unadjust_for_sel(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6934 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6935 pos_T *pp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6936
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
6937 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
6938 {
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10980
diff changeset
6939 if (LT_POS(VIsual, curwin->w_cursor))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6940 pp = &curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6941 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6942 pp = &VIsual;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6943 if (pp->coladd > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6944 --pp->coladd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6945 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6946 if (pp->col > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6947 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6948 --pp->col;
2933
0bef86c5c985 updated for version 7.3.239
Bram Moolenaar <bram@vim.org>
parents: 2911
diff changeset
6949 mb_adjustpos(curbuf, pp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6950 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6951 else if (pp->lnum > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6952 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6953 --pp->lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6954 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6955 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6956 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6958 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6959 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6960
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6961 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6962 * SELECT key in Normal or Visual mode: end of Select mode mapping.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6963 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6964 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6965 nv_select(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6966 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6967 if (VIsual_active)
27263
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6968 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6969 VIsual_select = TRUE;
27263
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6970 VIsual_select_reg = 0;
93d4ee1e6113 patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents: 27140
diff changeset
6971 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6972 else if (VIsual_reselect)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6973 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6974 cap->nchar = 'v'; // fake "gv" command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6975 cap->arg = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6976 nv_g_cmd(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6977 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6978 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6979
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6980
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6981 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6982 * "G", "gg", CTRL-END, CTRL-HOME.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6983 * cap->arg is TRUE for "G".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6984 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6985 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
6986 nv_goto(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6987 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6988 linenr_T lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6989
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6990 if (cap->arg)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6991 lnum = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6992 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6993 lnum = 1L;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6994 cap->oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6995 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6996
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
6997 // When a count is given, use it instead of the default lnum
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6998 if (cap->count0 != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6999 lnum = cap->count0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7000 if (lnum < 1L)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7001 lnum = 1L;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7002 else if (lnum > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7003 lnum = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7004 curwin->w_cursor.lnum = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7005 beginline(BL_SOL | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7006 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7007 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7008 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7009 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7010 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7011
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7012 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7013 * CTRL-\ in Normal mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7014 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7015 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7016 nv_normal(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7017 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7018 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7019 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7020 clearop(cap->oap);
643
d3c978b4c7ce updated for version 7.0187
vimboss
parents: 641
diff changeset
7021 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
7022 clear_cmdline = TRUE; // unshow mode later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7023 restart_edit = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7024 #ifdef FEAT_CMDWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7025 if (cmdwin_type != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7026 cmdwin_result = Ctrl_C;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7027 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7028 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7029 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7030 end_visual_mode(); // stop Visual
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7031 redraw_curbuf_later(INVERTED);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7032 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7033 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7034 if (cap->nchar == Ctrl_G && p_im)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7035 restart_edit = 'a';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7036 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7037 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7038 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7039 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7040
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7041 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7042 * ESC in Normal mode: beep, but don't flush buffers.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7043 * Don't even beep if we are canceling a command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7044 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7045 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7046 nv_esc(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7047 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7048 int no_reason;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7049
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7050 no_reason = (cap->oap->op_type == OP_NOP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7051 && cap->opcount == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7052 && cap->count0 == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7053 && cap->oap->regname == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7054 && !p_im);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7055
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7056 if (cap->arg) // TRUE for CTRL-C
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7057 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7058 if (restart_edit == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7059 #ifdef FEAT_CMDWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7060 && cmdwin_type == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7061 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7062 && !VIsual_active
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7063 && 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
7064 {
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
7065 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
7066 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
7067 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
7068 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
7069 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7070
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7071 // 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
7072 // set again below when halfway a mapping.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7073 if (!p_im)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7074 restart_edit = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7075 #ifdef FEAT_CMDWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7076 if (cmdwin_type != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7077 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7078 cmdwin_result = K_IGNORE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7079 got_int = FALSE; // don't stop executing autocommands et al.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7080 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7081 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7082 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7083 }
24012
59b59a5f75d4 patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents: 24010
diff changeset
7084 #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
7085 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
7086 {
59b59a5f75d4 patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents: 24010
diff changeset
7087 // 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
7088 // 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
7089 // loop.
59b59a5f75d4 patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents: 24010
diff changeset
7090 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
7091 return;
59b59a5f75d4 patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents: 24010
diff changeset
7092 }
59b59a5f75d4 patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents: 24010
diff changeset
7093 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7094
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7095 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7096 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7097 end_visual_mode(); // stop Visual
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7098 check_cursor_col(); // make sure cursor is not beyond EOL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7099 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7100 redraw_curbuf_later(INVERTED);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7101 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7102 else if (no_reason)
6949
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
7103 vim_beep(BO_ESC);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7104 clearop(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7105
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7106 // 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
7107 // 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
7108 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7109 restart_edit = 'a';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7110 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7111
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7112 /*
17984
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7113 * 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
7114 */
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7115 void
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7116 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
7117 {
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7118 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
7119 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
7120 {
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7121 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
7122
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7123 // 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
7124 // 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
7125 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
7126 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
7127 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
7128 }
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7129 else
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7130 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
7131 }
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7132
2ea47dee7ddd patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents: 17787
diff changeset
7133 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7134 * 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
7135 * Also handle K_PS, start bracketed paste.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7136 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7137 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7138 nv_edit(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7139 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7140 // <Insert> is equal to "i"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7141 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7142 cap->cmdchar = 'i';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7143
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7144 // in Visual mode "A" and "I" are an operator
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7145 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
7146 {
66fe20238c1d patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents: 12423
diff changeset
7147 #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
7148 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
7149 {
66fe20238c1d patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents: 12423
diff changeset
7150 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
7151 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
7152 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
7153 return;
66fe20238c1d patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents: 12423
diff changeset
7154 }
66fe20238c1d patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents: 12423
diff changeset
7155 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7156 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
7157 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7158
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7159 // in Visual mode and after an operator "a" and "i" are for text objects
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7160 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7161 && (cap->oap->op_type != OP_NOP || VIsual_active))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7162 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7163 #ifdef FEAT_TEXTOBJ
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7164 nv_object(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7165 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7166 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7167 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7168 }
11892
50ad151a7482 patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents: 11866
diff changeset
7169 #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
7170 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
7171 {
50ad151a7482 patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents: 11866
diff changeset
7172 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
7173 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
7174 return;
50ad151a7482 patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents: 11866
diff changeset
7175 }
50ad151a7482 patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents: 11866
diff changeset
7176 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7177 else if (!curbuf->b_p_ma && !p_im)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7178 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7179 // 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
7180 emsg(_(e_cannot_make_changes_modifiable_is_off));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7181 clearop(cap->oap);
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10636
diff changeset
7182 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
7183 // drop the pasted text
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10636
diff changeset
7184 bracketed_paste(PASTE_INSERT, TRUE, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7185 }
10827
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10813
diff changeset
7186 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
7187 {
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10813
diff changeset
7188 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
7189 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
7190
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7191 // 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
7192 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
7193 {
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10813
diff changeset
7194 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
7195 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
7196 }
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10813
diff changeset
7197 else
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10813
diff changeset
7198 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
7199 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
7200 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
7201 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
7202 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
7203 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
7204
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7205 // 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
7206 // 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
7207 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
7208 && 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
7209 inc_cursor();
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10813
diff changeset
7210
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7211 // 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
7212 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
7213 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7214 else if (!checkclearopq(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7215 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7216 switch (cap->cmdchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7217 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7218 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
7219 set_cursor_for_append_to_line();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7220 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7221
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7222 case 'I': // "I"nsert before the first non-blank
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
7223 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
7224 beginline(BL_WHITE);
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
7225 else
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 84
diff changeset
7226 beginline(BL_WHITE|BL_FIX);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7227 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7228
10827
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10813
diff changeset
7229 case K_PS:
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7230 // 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
7231 // 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
7232 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
7233 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7234 // FALLTHROUGH
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7235
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7236 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
7237 // 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
7238 // column otherwise, also to append after an unprintable char
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7239 if (virtual_active()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7240 && (curwin->w_cursor.coladd > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7241 || *ml_get_cursor() == NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7242 || *ml_get_cursor() == TAB))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7243 curwin->w_cursor.coladd++;
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
7244 else if (*ml_get_cursor() != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7245 inc_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7246 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7247 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7248
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7249 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7250 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7251 int save_State = State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7252
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7253 // 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
7254 // character past the end of the line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7255 State = INSERT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7256 coladvance(getviscol());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7257 State = save_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7258 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7259
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7260 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7261 }
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10636
diff changeset
7262 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
7263 // drop the pasted text
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10636
diff changeset
7264 bracketed_paste(PASTE_INSERT, TRUE, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7265 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7266
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7267 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7268 * Invoke edit() and take care of "restart_edit" and the return value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7269 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7270 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7271 invoke_edit(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7272 cmdarg_T *cap,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7273 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
7274 int cmd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7275 int startln)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7276 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7277 int restart_edit_save = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7278
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7279 // 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
7280 // 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
7281 // it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7282 if (repl || !stuff_empty())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7283 restart_edit_save = restart_edit;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7284 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7285 restart_edit_save = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7286
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7287 // Always reset "restart_edit", this is not a restarted edit.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7288 restart_edit = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7289
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7290 if (edit(cmd, startln, cap->count1))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7291 cap->retval |= CA_COMMAND_BUSY;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7292
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7293 if (restart_edit == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7294 restart_edit = restart_edit_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7295 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7296
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7297 #ifdef FEAT_TEXTOBJ
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7298 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7299 * "a" or "i" while an operator is pending or in Visual mode: object motion.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7300 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7301 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7302 nv_object(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7303 cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7304 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7305 int flag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7306 int include;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7307 char_u *mps_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7308
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7309 if (cap->cmdchar == 'i')
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7310 include = FALSE; // "ix" = inner object: exclude white space
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7311 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7312 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
7313
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7314 // Make sure (), [], {} and <> are in 'matchpairs'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7315 mps_save = curbuf->b_p_mps;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7316 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7317
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7318 switch (cap->nchar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7319 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7320 case 'w': // "aw" = a word
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7321 flag = current_word(cap->oap, cap->count1, include, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7322 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7323 case 'W': // "aW" = a WORD
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7324 flag = current_word(cap->oap, cap->count1, include, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7325 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7326 case 'b': // "ab" = a braces block
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7327 case '(':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7328 case ')':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7329 flag = current_block(cap->oap, cap->count1, include, '(', ')');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7330 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7331 case 'B': // "aB" = a Brackets block
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7332 case '{':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7333 case '}':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7334 flag = current_block(cap->oap, cap->count1, include, '{', '}');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7335 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7336 case '[': // "a[" = a [] block
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7337 case ']':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7338 flag = current_block(cap->oap, cap->count1, include, '[', ']');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7339 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7340 case '<': // "a<" = a <> block
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7341 case '>':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7342 flag = current_block(cap->oap, cap->count1, include, '<', '>');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7343 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7344 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
7345 // 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
7346 // 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
7347 // (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
7348 // 1) <b> 2) <b>
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7349 // foobar foobar
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7350 // </b> </b>
6661
950e24f26ef8 updated for version 7.4.655
Bram Moolenaar <bram@vim.org>
parents: 6631
diff changeset
7351 cap->retval |= CA_NO_ADJ_OP_END;
420
b8cc11a2a3b1 updated for version 7.0110
vimboss
parents: 385
diff changeset
7352 flag = current_tagblock(cap->oap, cap->count1, include);
b8cc11a2a3b1 updated for version 7.0110
vimboss
parents: 385
diff changeset
7353 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7354 case 'p': // "ap" = a paragraph
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7355 flag = current_par(cap->oap, cap->count1, include, 'p');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7356 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7357 case 's': // "as" = a sentence
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7358 flag = current_sent(cap->oap, cap->count1, include);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7359 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7360 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
7361 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
7362 case '`': // "a`" = a backtick quoted string
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
7363 flag = current_quote(cap->oap, cap->count1, include,
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
7364 cap->nchar);
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
7365 break;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7366 #if 0 // TODO
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7367 case 'S': // "aS" = a section
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7368 case 'f': // "af" = a filename
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7369 case 'u': // "au" = a URL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7370 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7371 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7372 flag = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7373 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7374 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7375
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7376 curbuf->b_p_mps = mps_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7377 if (flag == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7378 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7379 adjust_cursor_col();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7380 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7381 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7382 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7383
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7384 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7385 * "q" command: Start/stop recording.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7386 * "q:", "q/", "q?": edit command-line in command-line window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7387 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7388 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7389 nv_record(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7390 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7391 if (cap->oap->op_type == OP_FORMAT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7392 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7393 // "gqq" is the same as "gqgq": format line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7394 cap->cmdchar = 'g';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7395 cap->nchar = 'q';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7396 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7397 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7398 else if (!checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7399 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7400 #ifdef FEAT_CMDWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7401 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7402 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7403 stuffcharReadbuff(cap->nchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7404 stuffcharReadbuff(K_CMDWIN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7405 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7406 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7407 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7408 // (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
7409 // 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
7410 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7411 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7412 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7413 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7414
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7415 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7416 * Handle the "@r" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7417 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7418 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7419 nv_at(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7420 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7421 if (checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7422 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7423 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7424 if (cap->nchar == '=')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7425 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7426 if (get_expr_register() == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7427 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7428 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7429 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7430 while (cap->count1-- && !got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7431 {
1034
98d1c149be76 updated for version 7.0-160
vimboss
parents: 1019
diff changeset
7432 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7433 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7434 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7435 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7436 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7437 line_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7438 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7439 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7440
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7441 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7442 * Handle the CTRL-U and CTRL-D commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7443 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7444 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7445 nv_halfpage(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7446 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7447 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7448 || (cap->cmdchar == Ctrl_D
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7449 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7450 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7451 else if (!checkclearop(cap->oap))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7452 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7453 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7454
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7455 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7456 * Handle "J" or "gJ" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7457 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7458 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7459 nv_join(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7460 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7461 if (VIsual_active) // join the visual lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7462 nv_operator(cap);
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7463 else if (!checkclearop(cap->oap))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7464 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7465 if (cap->count0 <= 1)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7466 cap->count0 = 2; // default for join is two lines!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7467 if (curwin->w_cursor.lnum + cap->count0 - 1 >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7468 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
7469 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7470 // 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
7471 if (cap->count0 <= 2)
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7472 {
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7473 clearopbeep(cap->oap);
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7474 return;
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7475 }
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7476 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
7477 - curwin->w_cursor.lnum + 1;
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7478 }
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7479
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
7480 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
7481 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
7482 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7483 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7484 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7485
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7486 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7487 * "P", "gP", "p" and "gp" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7488 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7489 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7490 nv_put(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7491 {
16742
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7492 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
7493 }
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7494
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7495 /*
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7496 * "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
7497 * "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
7498 */
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7499 static void
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7500 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
7501 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7502 int regname = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7503 void *reg1 = NULL, *reg2 = NULL;
84
60834e43d187 updated for version 7.0034
vimboss
parents: 47
diff changeset
7504 int empty = FALSE;
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
7505 int was_visual = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7506 int dir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7507 int flags = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7508
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7509 if (cap->oap->op_type != OP_NOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7510 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7511 #ifdef FEAT_DIFF
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7512 // "dp" is ":diffput"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7513 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7514 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7515 clearop(cap->oap);
6314
df92c2b2a179 updated for version 7.4.490
Bram Moolenaar <bram@vim.org>
parents: 6270
diff changeset
7516 nv_diffgetput(TRUE, cap->opcount);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7517 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7518 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7519 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7520 clearopbeep(cap->oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7521 }
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
7522 #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
7523 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
7524 {
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
7525 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
7526 }
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
7527 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7528 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7529 {
16742
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7530 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
7531 {
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7532 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
7533 ? FORWARD : BACKWARD;
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7534 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
7535 }
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7536 else
75b5d77bbbab patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
7537 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
7538 || ((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
7539 && cap->nchar == 'P')) ? BACKWARD : FORWARD;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7540 prep_redo_cmd(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7541 if (cap->cmdchar == 'g')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7542 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
7543 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
7544 flags |= PUT_BLOCK_INNER;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7545
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7546 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7547 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7548 // 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
7549 // 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
7550 // 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
7551 // overwrites if the old contents is being put.
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
7552 was_visual = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7553 regname = cap->oap->regname;
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7554 #ifdef FEAT_CLIPBOARD
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7555 adjust_clip_reg(&regname);
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7556 #endif
5682
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
7557 if (regname == 0 || regname == '"'
4013
6834d6aeae09 updated for version 7.3.761
Bram Moolenaar <bram@vim.org>
parents: 4011
diff changeset
7558 || VIM_ISDIGIT(regname) || regname == '-'
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7559 #ifdef FEAT_CLIPBOARD
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7560 || (clip_unnamed && (regname == '*' || regname == '+'))
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
7561 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7562
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7563 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7564 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7565 // 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
7566 // put, save it first.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7567 reg1 = get_register(regname, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7568 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7569
17787
92e0996e1cb8 patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents: 17730
diff changeset
7570 // Now delete the selected text. Avoid messages here.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7571 cap->cmdchar = 'd';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7572 cap->nchar = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7573 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
7574 ++msg_silent;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7575 nv_operator(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7576 do_pending_operator(cap, 0, FALSE);
84
60834e43d187 updated for version 7.0034
vimboss
parents: 47
diff changeset
7577 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
7578 --msg_silent;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7579
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7580 // delete PUT_LINE_BACKWARD;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7581 cap->oap->regname = regname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7582
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7583 if (reg1 != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7584 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7585 // 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
7586 // it first. Then put back what was there before the delete.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7587 reg2 = get_register(regname, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7588 put_register(regname, reg1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7589 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7590
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7591 // 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
7592 // 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
7593 // characterwise, split a line when putting lines.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7594 if (VIsual_mode == 'V')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7595 flags |= PUT_LINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7596 else if (VIsual_mode == 'v')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7597 flags |= PUT_LINE_SPLIT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7598 if (VIsual_mode == Ctrl_V && dir == FORWARD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7599 flags |= PUT_LINE_FORWARD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7600 dir = BACKWARD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7601 if ((VIsual_mode != 'V'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7602 && curwin->w_cursor.col < curbuf->b_op_start.col)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7603 || (VIsual_mode == 'V'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7604 && 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
7605 // 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
7606 // forward.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7607 dir = FORWARD;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7608 // May have been reset in do_put().
5365
22dfcd1494e4 updated for version 7.4.034
Bram Moolenaar <bram@vim.org>
parents: 5192
diff changeset
7609 VIsual_active = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7610 }
22176
6941d3205be9 patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents: 22091
diff changeset
7611 do_put(cap->oap->regname, NULL, dir, cap->count1, flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7612
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7613 // If a register was saved, put it back now.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7614 if (reg2 != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7615 put_register(regname, reg2);
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
7616
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7617 // 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
7618 // be the most useful, since the original text was removed.
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
7619 if (was_visual)
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
7620 {
690
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
7621 curbuf->b_visual.vi_start = curbuf->b_op_start;
0e922220d322 updated for version 7.0208
vimboss
parents: 686
diff changeset
7622 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
7623 // need to adjust cursor position
7241
0c1278704b5c commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents: 7143
diff changeset
7624 if (*p_sel == 'e')
0c1278704b5c commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents: 7143
diff changeset
7625 inc(&curbuf->b_visual.vi_end);
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
7626 }
4707450c2b33 updated for version 7.0066
vimboss
parents: 229
diff changeset
7627
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7628 // 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
7629 // line that needs to be deleted now.
84
60834e43d187 updated for version 7.0034
vimboss
parents: 47
diff changeset
7630 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
817
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7631 {
20599
d571231175b4 patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents: 20591
diff changeset
7632 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
7633 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
817
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7634
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7635 // 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
7636 // line.
817
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7637 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7638 {
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7639 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7640 coladvance((colnr_T)MAXCOL);
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7641 }
6897668c467f updated for version 7.0c03
vimboss
parents: 775
diff changeset
7642 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7643 auto_format(FALSE, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7644 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7645 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7646
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7647 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7648 * "o" and "O" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7649 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7650 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7651 nv_open(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7652 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7653 #ifdef FEAT_DIFF
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7654 // "do" is ":diffget"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7655 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7656 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7657 clearop(cap->oap);
6314
df92c2b2a179 updated for version 7.4.490
Bram Moolenaar <bram@vim.org>
parents: 6270
diff changeset
7658 nv_diffgetput(FALSE, cap->opcount);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7659 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7660 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7661 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7662 if (VIsual_active) // switch start and end of visual
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7663 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
7664 #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
7665 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
7666 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
7667 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7668 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7669 n_opencmd(cap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7670 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7671
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7672 #ifdef FEAT_NETBEANS_INTG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7673 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7674 nv_nbcmd(cmdarg_T *cap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7675 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7676 netbeans_keycommand(cap->nchar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7677 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7678 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7679
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7680 #ifdef FEAT_DND
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7681 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7682 nv_drop(cmdarg_T *cap UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7683 {
22176
6941d3205be9 patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents: 22091
diff changeset
7684 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7685 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7686 #endif
203
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7687
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7688 /*
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7689 * Trigger CursorHold event.
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7690 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7691 * input buffer. "did_cursorhold" is set to avoid retriggering.
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7692 */
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7693 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
7694 nv_cursorhold(cmdarg_T *cap)
203
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7695 {
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7696 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
80000fb16feb updated for version 7.0060
vimboss
parents: 184
diff changeset
7697 did_cursorhold = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18775
diff changeset
7698 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
226
4e7dca477fee updated for version 7.0063
vimboss
parents: 216
diff changeset
7699 }