Mercurial > vim
annotate src/normal.c @ 30697:d914a3812d5b v9.0.0683
patch 9.0.0683: cannot specify a time for :echowindow
Commit: https://github.com/vim/vim/commit/bdc09a18fca32715687d9911a431da69186528cc
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Oct 7 14:31:45 2022 +0100
patch 9.0.0683: cannot specify a time for :echowindow
Problem: Cannot specify a time for :echowindow.
Solution: A count can be used to specify the display time. Add
popup_findecho().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 07 Oct 2022 15:45:06 +0200 |
parents | 101f08b49ed3 |
children | ffa5492137c3 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
27484
ee1019e59bef
patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twice
Bram Moolenaar <Bram@vim.org>
parents:
27447
diff
changeset
|
3 * VIM - Vi IMproved by Bram Moolenaar et al. |
7 | 4 * |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 /* | |
10 * normal.c: Contains the main routine for processing characters in command | |
11 * mode. Communicates closely with the code in ops.c to handle | |
12 * the operators. | |
13 */ | |
14 | |
15 #include "vim.h" | |
16 | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
17 static int VIsual_mode_orig = NUL; // saved Visual mode |
7 | 18 |
2667 | 19 #ifdef FEAT_EVAL |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
20 static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount); |
2667 | 21 #endif |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
22 static void unshift_special(cmdarg_T *cap); |
7 | 23 #ifdef FEAT_CMDL_INFO |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
24 static void del_from_showcmd(int); |
7 | 25 #endif |
26 | |
27 /* | |
28 * nv_*(): functions called to handle Normal and Visual mode commands. | |
29 * n_*(): functions called to handle Normal mode commands. | |
30 * v_*(): functions called to handle Visual mode commands. | |
31 */ | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
32 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
|
33 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
|
34 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
|
35 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
|
36 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
|
37 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
|
38 static void nv_zet(cmdarg_T *cap); |
7 | 39 #ifdef FEAT_GUI |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
40 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
|
41 static void nv_hor_scrollbar(cmdarg_T *cap); |
7 | 42 #endif |
685 | 43 #ifdef FEAT_GUI_TABLINE |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
44 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
|
45 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
|
46 #endif |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
47 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
|
48 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
|
49 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
|
50 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
|
51 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
|
52 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
|
53 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
|
54 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
|
55 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
|
56 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
|
57 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
|
58 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
|
59 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
|
60 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
|
61 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
|
62 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
|
63 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
|
64 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
|
65 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
|
66 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
|
67 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
|
68 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
|
69 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
|
70 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
|
71 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
|
72 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
|
73 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
|
74 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
|
75 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
|
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_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
|
78 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
|
79 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
|
80 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
|
81 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
|
82 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
|
83 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
|
84 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
|
85 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
|
86 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
|
87 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
|
88 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
|
89 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
|
90 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
|
91 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
|
92 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
|
93 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
|
94 static void nv_operator(cmdarg_T *cap); |
1490 | 95 #ifdef FEAT_EVAL |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
96 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
|
97 #endif |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
98 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
|
99 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
|
100 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
|
101 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
|
102 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
|
103 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
|
104 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
|
105 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
|
106 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
|
107 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
|
108 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
|
109 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
|
110 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
|
111 static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
112 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
|
113 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
|
114 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
|
115 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
|
116 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
|
117 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
|
118 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
|
119 static void nv_open(cmdarg_T *cap); |
7 | 120 #ifdef FEAT_NETBEANS_INTG |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
121 static void nv_nbcmd(cmdarg_T *cap); |
7 | 122 #endif |
123 #ifdef FEAT_DND | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
124 static void nv_drop(cmdarg_T *cap); |
7 | 125 #endif |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
126 static void nv_cursorhold(cmdarg_T *cap); |
7 | 127 |
27484
ee1019e59bef
patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twice
Bram Moolenaar <Bram@vim.org>
parents:
27447
diff
changeset
|
128 // Declare nv_cmds[]. |
ee1019e59bef
patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twice
Bram Moolenaar <Bram@vim.org>
parents:
27447
diff
changeset
|
129 #define DO_DECLARE_NVCMD |
ee1019e59bef
patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twice
Bram Moolenaar <Bram@vim.org>
parents:
27447
diff
changeset
|
130 #include "nv_cmds.h" |
7 | 131 |
27447
4050f0554902
patch 8.2.4252: generating the normal command table at runtime is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
27428
diff
changeset
|
132 // Include the lookuptable generated by create_nvcmdidx.vim. |
4050f0554902
patch 8.2.4252: generating the normal command table at runtime is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
27428
diff
changeset
|
133 #include "nv_cmdidxs.h" |
4050f0554902
patch 8.2.4252: generating the normal command table at runtime is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
27428
diff
changeset
|
134 |
7 | 135 /* |
136 * Search for a command in the commands table. | |
137 * Returns -1 for invalid command. | |
138 */ | |
139 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
140 find_command(int cmdchar) |
7 | 141 { |
142 int i; | |
143 int idx; | |
144 int top, bot; | |
145 int c; | |
146 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
147 // A multi-byte character is never a command. |
7 | 148 if (cmdchar >= 0x100) |
149 return -1; | |
150 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
151 // 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
|
152 // negative value, but are sorted on their absolute value. |
7 | 153 if (cmdchar < 0) |
154 cmdchar = -cmdchar; | |
155 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
156 // 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
|
157 // nv_cmd_idx[]. |
7 | 158 if (cmdchar <= nv_max_linear) |
159 return nv_cmd_idx[cmdchar]; | |
160 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
161 // Perform a binary search. |
7 | 162 bot = nv_max_linear + 1; |
163 top = NV_CMDS_SIZE - 1; | |
164 idx = -1; | |
165 while (bot <= top) | |
166 { | |
167 i = (top + bot) / 2; | |
168 c = nv_cmds[nv_cmd_idx[i]].cmd_char; | |
169 if (c < 0) | |
170 c = -c; | |
171 if (cmdchar == c) | |
172 { | |
173 idx = nv_cmd_idx[i]; | |
174 break; | |
175 } | |
176 if (cmdchar > c) | |
177 bot = i + 1; | |
178 else | |
179 top = i - 1; | |
180 } | |
181 return idx; | |
182 } | |
183 | |
184 /* | |
29002
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
185 * If currently editing a cmdline or text is locked: beep and give an error |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
186 * message, return TRUE. |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
187 */ |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
188 static int |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
189 check_text_locked(oparg_T *oap) |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
190 { |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
191 if (text_locked()) |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
192 { |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
193 clearopbeep(oap); |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
194 text_locked_msg(); |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
195 return TRUE; |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
196 } |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
197 return FALSE; |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
198 } |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
199 |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
200 /* |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
201 * 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
|
202 */ |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
203 static int |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
204 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
|
205 cmdarg_T *cap, |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
206 int c, |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
207 int toplevel UNUSED, |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
208 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
|
209 int *ctrl_w, |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
210 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
|
211 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
212 getcount: |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
213 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
|
214 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
215 // 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
|
216 // 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
|
217 // 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
|
218 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
|
219 || (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
|
220 || c == '0'))) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
221 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
222 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
|
223 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
224 cap->count0 /= 10; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
225 #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
|
226 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
|
227 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
228 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
229 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
|
230 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
231 cap->count0 = 999999999L; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
232 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
233 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
234 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
235 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
|
236 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
237 #ifdef FEAT_EVAL |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
238 // 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
|
239 // 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
|
240 // 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
|
241 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
|
242 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
|
243 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
244 if (*ctrl_w) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
245 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
246 ++no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
247 ++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
|
248 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
249 ++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
|
250 c = plain_vgetc(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
251 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
|
252 --no_zero_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
253 if (*ctrl_w) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
254 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
255 --no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
256 --allow_keys; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
257 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
258 #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
|
259 *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
|
260 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
261 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
262 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
263 // 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
|
264 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
|
265 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
266 *ctrl_w = TRUE; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
267 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
|
268 cap->count0 = 0; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
269 ++no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
270 ++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
|
271 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
|
272 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
|
273 --no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
274 --allow_keys; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
275 #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
|
276 *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
|
277 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
278 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
|
279 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
280 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
281 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
282 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
|
283 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
284 // 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
|
285 // 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
|
286 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
|
287 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
|
288 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
289 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
|
290 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
291 // 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
|
292 // 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
|
293 // 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
|
294 // 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
|
295 // 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
|
296 // 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
|
297 // multiplied. |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
298 if (cap->count0) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
299 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
300 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
|
301 cap->count0 = 999999999L; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
302 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
303 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
|
304 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
305 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
306 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
|
307 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
308 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
309 // 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
|
310 // 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
|
311 // 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
|
312 // variable. |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
313 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
|
314 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
|
315 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
316 #ifdef FEAT_EVAL |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
317 // 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
|
318 // 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
|
319 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
|
320 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
|
321 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
322 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
323 return c; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
324 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
325 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
326 /* |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
327 * 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
|
328 */ |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
329 static int |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
330 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
|
331 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
332 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
|
333 && (((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
|
334 && 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
|
335 || (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
|
336 || (cap->cmdchar == 'q' |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
337 && 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
|
338 && reg_recording == 0 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
339 && reg_executing == 0) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
340 || ((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
|
341 && (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
|
342 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
343 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
344 /* |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
345 * 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
|
346 * 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
|
347 */ |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
348 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
|
349 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
|
350 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
|
351 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
|
352 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
|
353 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
354 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
|
355 int c; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
356 int *cp; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
357 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
|
358 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
|
359 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
|
360 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
|
361 #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
|
362 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
|
363 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
364 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
365 ++no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
366 ++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
|
367 // 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
|
368 // 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
|
369 did_cursorhold = TRUE; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
370 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
|
371 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
372 /* |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
373 * 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
|
374 * "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
|
375 */ |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
376 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
|
377 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
|
378 #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
|
379 *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
|
380 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
381 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
|
382 || 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
|
383 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
384 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
|
385 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
|
386 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
|
387 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
388 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
|
389 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
390 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
391 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
|
392 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
393 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
394 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
395 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
|
396 repl = TRUE; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
397 cp = &cap->nchar; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
398 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
399 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
|
400 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
401 /* |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
402 * 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
|
403 */ |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
404 if (cp != NULL) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
405 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
406 if (repl) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
407 { |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
408 State = MODE_REPLACE; // pretend Replace mode |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
409 #ifdef CURSOR_SHAPE |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
410 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
|
411 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
412 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
413 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
|
414 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
415 // 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
|
416 --no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
417 --allow_keys; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
418 if (repl) |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
419 State = MODE_LREPLACE; |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
420 else |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
421 State = MODE_LANGMAP; |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
422 langmap_active = TRUE; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
423 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
424 #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
|
425 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
|
426 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
|
427 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
|
428 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
|
429 #endif |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
430 if ((State & MODE_INSERT) && !p_ek) |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
431 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
29004
diff
changeset
|
432 MAY_WANT_TO_LOG_THIS; |
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
29004
diff
changeset
|
433 |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
434 // 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
|
435 // 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
|
436 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
|
437 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
|
438 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
439 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
440 *cp = plain_vgetc(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
441 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
442 if ((State & MODE_INSERT) && !p_ek) |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
443 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
29004
diff
changeset
|
444 MAY_WANT_TO_LOG_THIS; |
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
29004
diff
changeset
|
445 |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
446 // 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
|
447 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
|
448 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
|
449 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
450 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
451 if (langmap_active) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
452 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
453 // 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
|
454 ++no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
455 ++allow_keys; |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
456 State = MODE_NORMAL_BUSY; |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
457 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
458 #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
|
459 if (lang) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
460 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
461 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
|
462 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
|
463 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
|
464 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
465 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
|
466 #endif |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
467 State = MODE_NORMAL_BUSY; |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
468 #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
|
469 *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
|
470 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
471 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
472 if (!lit) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
473 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
474 #ifdef FEAT_DIGRAPHS |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
475 // 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
|
476 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
|
477 && ((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
|
478 || 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
|
479 && 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
|
480 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
481 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
|
482 if (c > 0) |
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 *cp = c; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
485 # 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
|
486 // 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
|
487 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
|
488 *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
|
489 # endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
490 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
491 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
492 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
493 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
494 // 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
|
495 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
|
496 #ifdef FEAT_RIGHTLEFT |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
497 // 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
|
498 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
|
499 *cp = hkmap(*cp); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
500 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
501 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
502 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
503 // 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
|
504 // 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
|
505 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
|
506 && 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
|
507 && (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
|
508 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
509 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
|
510 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
|
511 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
|
512 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
513 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
|
514 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
|
515 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
|
516 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
517 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
|
518 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
519 // 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
|
520 // 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
|
521 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
|
522 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
523 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
|
524 towait -= 50L; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
525 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
526 if (c > 0) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
527 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
528 c = plain_vgetc(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
529 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
|
530 vungetc(c); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
531 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
532 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
533 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
|
534 cap->nchar = c; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
535 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
|
536 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
537 } |
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 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
540 // 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
|
541 // 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
|
542 // 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
|
543 // 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
|
544 // mapping. |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
545 --no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
546 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
|
547 && (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
|
548 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
549 c = plain_vgetc(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
550 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
|
551 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
552 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
|
553 break; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
554 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
555 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
|
556 cap->ncharC1 = c; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
557 else |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
558 cap->ncharC2 = c; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
559 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
560 ++no_mapping; |
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 --no_mapping; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
563 --allow_keys; |
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 return idx; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
566 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
567 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
568 /* |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
569 * 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
|
570 * 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
|
571 * message. |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
572 */ |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
573 static int |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
574 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
|
575 { |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
576 // 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
|
577 // 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
|
578 // 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
|
579 // 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
|
580 // 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
|
581 // 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
|
582 // 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
|
583 // 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
|
584 return ( ((p_smd |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
585 && msg_silent == 0 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
586 && (restart_edit != 0 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
587 || (VIsual_active |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
588 && 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
|
589 && 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
|
590 ) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
591 && (clear_cmdline |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
592 || redraw_cmdline) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
593 && (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
|
594 && !msg_nowait |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
595 && KeyTyped) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
596 || (restart_edit != 0 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
597 && !VIsual_active |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
598 && (msg_scroll |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
599 || emsg_on_display))) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
600 && 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
|
601 && !(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
|
602 && stuff_empty() |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
603 && typebuf_typed() |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
604 && emsg_silent == 0 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
605 && !in_assert_fails |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
606 && !did_wait_return |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
607 && 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
|
608 } |
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 /* |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
611 * 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
|
612 * 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
|
613 */ |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
614 static void |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
615 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
|
616 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
617 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
|
618 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
619 // 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
|
620 if (restart_edit != 0) |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
621 State = MODE_INSERT; |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
622 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
623 // 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
|
624 // delay |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
625 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
|
626 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
627 char_u *kmsg; |
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 kmsg = keep_msg; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
630 keep_msg = NULL; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
631 // 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
|
632 // 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
|
633 setcursor(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
634 update_screen(0); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
635 // 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
|
636 keep_msg = kmsg; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
637 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
638 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
|
639 if (kmsg != NULL) |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
640 { |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
641 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
|
642 vim_free(kmsg); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
643 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
644 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
645 setcursor(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
646 #ifdef CURSOR_SHAPE |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
647 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
|
648 #endif |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
649 cursor_on(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
650 out_flush(); |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
651 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
|
652 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
|
653 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
|
654 State = save_State; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
655 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
656 msg_scroll = FALSE; |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
657 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
|
658 } |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
659 |
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
660 /* |
7 | 661 * Execute a command in Normal mode. |
662 */ | |
663 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
664 normal_cmd( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
665 oparg_T *oap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
666 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
|
667 { |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
668 cmdarg_T ca; // command arguments |
7 | 669 int c; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
670 int ctrl_w = FALSE; // got CTRL-W command |
7 | 671 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
|
672 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
|
673 pos_T old_pos; // cursor position before command |
7 | 674 int mapped_len; |
675 static int old_mapped_len = 0; | |
676 int idx; | |
1751 | 677 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
|
678 int save_did_cursorhold = did_cursorhold; |
7 | 679 |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
680 CLEAR_FIELD(ca); // also resets ca.retval |
7 | 681 ca.oap = oap; |
1692 | 682 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
683 // 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
|
684 // "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
|
685 // remembered in "opcount". |
7 | 686 ca.opcount = opcount; |
687 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
688 // 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
|
689 // 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
|
690 // returning this time (unless the operation was cancelled). |
7 | 691 #ifdef CURSOR_SHAPE |
692 c = finish_op; | |
693 #endif | |
694 finish_op = (oap->op_type != OP_NOP); | |
695 #ifdef CURSOR_SHAPE | |
696 if (finish_op != c) | |
697 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
698 ui_cursor_shape(); // may show different cursor shape |
7 | 699 # ifdef FEAT_MOUSESHAPE |
700 update_mouseshape(-1); | |
701 # endif | |
702 } | |
703 #endif | |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
704 may_trigger_modechanged(); |
7 | 705 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
706 // 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
|
707 // count. |
7 | 708 if (!finish_op && !oap->regname) |
1751 | 709 { |
7 | 710 ca.opcount = 0; |
1751 | 711 #ifdef FEAT_EVAL |
712 set_prevcount = TRUE; | |
713 #endif | |
714 } | |
7 | 715 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
716 // 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
|
717 // 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
|
718 // "3 * 2". |
1692 | 719 if (oap->prev_opcount > 0 || oap->prev_count0 > 0) |
720 { | |
721 ca.opcount = oap->prev_opcount; | |
722 ca.count0 = oap->prev_count0; | |
723 oap->prev_opcount = 0; | |
724 oap->prev_count0 = 0; | |
725 } | |
726 | |
7 | 727 mapped_len = typebuf_maplen(); |
728 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
729 State = MODE_NORMAL_BUSY; |
7 | 730 #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
|
731 dont_scroll = FALSE; // allow scrolling here |
7 | 732 #endif |
733 | |
2667 | 734 #ifdef FEAT_EVAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
735 // 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
|
736 // 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
|
737 // when there is no count. Do set it for redo. |
5649 | 738 if (toplevel && readbuf1_empty()) |
2667 | 739 set_vcount_ca(&ca, &set_prevcount); |
740 #endif | |
741 | |
7 | 742 /* |
743 * Get the command character from the user. | |
744 */ | |
745 c = safe_vgetc(); | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
746 LANGMAP_ADJUST(c, get_real_state() != MODE_SELECT); |
7 | 747 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
748 // 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
|
749 // 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
|
750 // long as the mapping is being executed. |
7 | 751 if (restart_edit == 0) |
752 old_mapped_len = 0; | |
753 else if (old_mapped_len | |
819 | 754 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0)) |
7 | 755 old_mapped_len = typebuf_maplen(); |
756 | |
757 if (c == NUL) | |
758 c = K_ZERO; | |
759 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
760 // In Select mode, typed text replaces the selection. |
7 | 761 if (VIsual_active |
762 && VIsual_select | |
763 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER)) | |
764 { | |
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
|
765 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
|
766 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
767 // 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
|
768 // '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
|
769 // restart automatically. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
770 // 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
|
771 // 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
|
772 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
|
773 |
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
|
774 // 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
|
775 // 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
|
776 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
|
777 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
|
778 |
275 | 779 if (restart_edit != 0) |
780 c = 'd'; | |
781 else | |
782 c = 'c'; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
783 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
|
784 old_mapped_len = 0; // do go to Insert mode |
7 | 785 } |
786 | |
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
|
787 // 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
|
788 // 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
|
789 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
|
790 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
|
791 |
7 | 792 #ifdef FEAT_CMDL_INFO |
793 need_flushbuf = add_to_showcmd(c); | |
794 #endif | |
795 | |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
796 // 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
|
797 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
|
798 &need_flushbuf); |
7 | 799 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
800 // 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
|
801 // For CTRL-W we already got nchar when looking for a count. |
7 | 802 if (ctrl_w) |
803 { | |
804 ca.nchar = c; | |
805 ca.cmdchar = Ctrl_W; | |
806 } | |
807 else | |
808 ca.cmdchar = c; | |
809 idx = find_command(ca.cmdchar); | |
810 if (idx < 0) | |
811 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
812 // Not a known command: beep. |
7 | 813 clearopbeep(oap); |
814 goto normal_end; | |
815 } | |
631 | 816 |
29002
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
817 if ((nv_cmds[idx].cmd_flags & NV_NCW) |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
818 && (check_text_locked(oap) || curbuf_locked())) |
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
819 // this command is not allowed now |
819 | 820 goto normal_end; |
7 | 821 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
822 // In Visual/Select mode, a few keys are handled in a special way. |
7 | 823 if (VIsual_active) |
824 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
825 // when 'keymodel' contains "stopsel" may stop Select/Visual mode |
7 | 826 if (km_stopsel |
827 && (nv_cmds[idx].cmd_flags & NV_STS) | |
828 && !(mod_mask & MOD_MASK_SHIFT)) | |
829 { | |
830 end_visual_mode(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
831 redraw_curbuf_later(UPD_INVERTED); |
7 | 832 } |
833 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
834 // Keys that work different when 'keymodel' contains "startsel" |
7 | 835 if (km_startsel) |
836 { | |
837 if (nv_cmds[idx].cmd_flags & NV_SS) | |
838 { | |
839 unshift_special(&ca); | |
840 idx = find_command(ca.cmdchar); | |
840 | 841 if (idx < 0) |
842 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
843 // Just in case |
840 | 844 clearopbeep(oap); |
845 goto normal_end; | |
846 } | |
7 | 847 } |
848 else if ((nv_cmds[idx].cmd_flags & NV_SSS) | |
849 && (mod_mask & MOD_MASK_SHIFT)) | |
850 mod_mask &= ~MOD_MASK_SHIFT; | |
851 } | |
852 } | |
853 | |
854 #ifdef FEAT_RIGHTLEFT | |
855 if (curwin->w_p_rl && KeyTyped && !KeyStuffed | |
856 && (nv_cmds[idx].cmd_flags & NV_RL)) | |
857 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
858 // 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
|
859 // 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
|
860 // to "dl". |
7 | 861 switch (ca.cmdchar) |
862 { | |
863 case 'l': ca.cmdchar = 'h'; break; | |
864 case K_RIGHT: ca.cmdchar = K_LEFT; break; | |
865 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break; | |
866 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break; | |
867 case 'h': ca.cmdchar = 'l'; break; | |
868 case K_LEFT: ca.cmdchar = K_RIGHT; break; | |
869 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break; | |
870 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break; | |
871 case '>': ca.cmdchar = '<'; break; | |
872 case '<': ca.cmdchar = '>'; break; | |
873 } | |
874 idx = find_command(ca.cmdchar); | |
875 } | |
876 #endif | |
877 | |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
878 // 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
|
879 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
|
880 idx = normal_cmd_get_more_chars(idx, &ca, &need_flushbuf); |
7 | 881 |
882 #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
|
883 // 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
|
884 // 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
|
885 // 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
|
886 // mappings. |
7 | 887 if (need_flushbuf) |
888 out_flush(); | |
889 #endif | |
1727 | 890 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
|
891 { |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
892 if (ex_normal_busy) |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
893 did_cursorhold = save_did_cursorhold; |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
894 else |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
895 did_cursorhold = FALSE; |
b530a433fe7d
patch 8.2.1258: CursorHold does not work well
Bram Moolenaar <Bram@vim.org>
parents:
21405
diff
changeset
|
896 } |
7 | 897 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
898 State = MODE_NORMAL; |
7 | 899 |
900 if (ca.nchar == ESC) | |
901 { | |
902 clearop(oap); | |
903 if (restart_edit == 0 && goto_im()) | |
904 restart_edit = 'a'; | |
905 goto normal_end; | |
906 } | |
907 | |
24 | 908 if (ca.cmdchar != K_IGNORE) |
909 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
910 msg_didout = FALSE; // don't scroll screen up for normal command |
24 | 911 msg_col = 0; |
912 } | |
7 | 913 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
914 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
|
915 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
916 // 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
|
917 // mode. |
7 | 918 if (!VIsual_active && km_startsel) |
919 { | |
920 if (nv_cmds[idx].cmd_flags & NV_SS) | |
921 { | |
922 start_selection(); | |
923 unshift_special(&ca); | |
924 idx = find_command(ca.cmdchar); | |
925 } | |
926 else if ((nv_cmds[idx].cmd_flags & NV_SSS) | |
927 && (mod_mask & MOD_MASK_SHIFT)) | |
928 { | |
929 start_selection(); | |
930 mod_mask &= ~MOD_MASK_SHIFT; | |
931 } | |
932 } | |
933 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
934 // 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
|
935 // Call the command function found in the commands table. |
7 | 936 ca.arg = nv_cmds[idx].cmd_arg; |
937 (nv_cmds[idx].cmd_func)(&ca); | |
938 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
939 // 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
|
940 // need it later. |
7 | 941 if (!finish_op |
942 && !oap->op_type | |
943 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG))) | |
944 { | |
945 clearop(oap); | |
946 #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
|
947 reset_reg_var(); |
7 | 948 #endif |
949 } | |
950 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
951 // 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
|
952 // character or "z333<cr>". |
36 | 953 if (old_mapped_len > 0) |
954 old_mapped_len = typebuf_maplen(); | |
955 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
956 // 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
|
957 // 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
|
958 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
|
959 do_pending_operator(&ca, old_col, FALSE); |
7 | 960 |
27354
469e643b7729
patch 8.2.4205: the normal_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27273
diff
changeset
|
961 // 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
|
962 // 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
|
963 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
|
964 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
|
965 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
966 // Finish up after executing a Normal mode command. |
7 | 967 normal_end: |
968 | |
969 msg_nowait = FALSE; | |
970 | |
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
|
971 #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
|
972 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
|
973 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
|
974 #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
|
975 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
976 // Reset finish_op, in case it was set |
7 | 977 #ifdef CURSOR_SHAPE |
978 c = finish_op; | |
979 #endif | |
980 finish_op = FALSE; | |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
981 may_trigger_modechanged(); |
7 | 982 #ifdef CURSOR_SHAPE |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
983 // 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
|
984 // mode or did a replace command. |
7 | 985 if (c || ca.cmdchar == 'r') |
986 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
987 ui_cursor_shape(); // may show different cursor shape |
7 | 988 # ifdef FEAT_MOUSESHAPE |
989 update_mouseshape(-1); | |
990 # endif | |
991 } | |
992 #endif | |
993 | |
994 #ifdef FEAT_CMDL_INFO | |
1692 | 995 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
|
996 && ca.cmdchar != K_CURSORHOLD) |
7 | 997 clear_showcmd(); |
998 #endif | |
999 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1000 checkpcmark(); // check if we moved since setting pcmark |
7 | 1001 vim_free(ca.searchbuf); |
1002 | |
1003 if (has_mbyte) | |
1004 mb_adjust_cursor(); | |
1005 | |
1006 if (curwin->w_p_scb && toplevel) | |
1007 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1008 validate_cursor(); // may need to update w_leftcol |
7 | 1009 do_check_scrollbind(TRUE); |
1010 } | |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1011 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1012 if (curwin->w_p_crb && toplevel) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1013 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1014 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
|
1015 do_check_cursorbind(); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1016 } |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
1017 |
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
|
1018 #ifdef FEAT_TERMINAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1019 // 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
|
1020 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
|
1021 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
|
1022 #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
|
1023 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1024 // 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
|
1025 // 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
|
1026 // May switch from Visual to Select mode after CTRL-O command. |
7 | 1027 if ( oap->op_type == OP_NOP |
1028 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0) | |
1029 || restart_VIsual_select == 1) | |
1030 && !(ca.retval & CA_COMMAND_BUSY) | |
1031 && stuff_empty() | |
1032 && oap->regname == 0) | |
1033 { | |
1034 if (restart_VIsual_select == 1) | |
1035 { | |
1036 VIsual_select = TRUE; | |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
1037 may_trigger_modechanged(); |
7 | 1038 showmode(); |
1039 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
|
1040 VIsual_select_reg = 0; |
7 | 1041 } |
5735 | 1042 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0) |
7 | 1043 (void)edit(restart_edit, FALSE, 1L); |
1044 } | |
1045 | |
1046 if (restart_VIsual_select == 2) | |
1047 restart_VIsual_select = 1; | |
1048 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1049 // Save count before an operator for next time. |
7 | 1050 opcount = ca.opcount; |
1051 } | |
1052 | |
2667 | 1053 #ifdef FEAT_EVAL |
1054 /* | |
1055 * Set v:count and v:count1 according to "cap". | |
1056 * Set v:prevcount only when "set_prevcount" is TRUE. | |
1057 */ | |
1058 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1059 set_vcount_ca(cmdarg_T *cap, int *set_prevcount) |
2667 | 1060 { |
1061 long count = cap->count0; | |
1062 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1063 // multiply with cap->opcount the same way as above |
2667 | 1064 if (cap->opcount != 0) |
1065 count = cap->opcount * (count == 0 ? 1 : count); | |
1066 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
|
1067 *set_prevcount = FALSE; // only set v:prevcount once |
2667 | 1068 } |
1069 #endif | |
1070 | |
7 | 1071 /* |
19681
e21c22c58e2b
patch 8.2.0397: delayed screen update when using undo from Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1072 * Check if highlighting for Visual mode is possible, give a warning message |
7 | 1073 * if not. |
1074 */ | |
1075 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1076 check_visual_highlight(void) |
7 | 1077 { |
1078 static int did_check = FALSE; | |
1079 | |
1080 if (full_screen) | |
1081 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1082 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
|
1083 msg(_("Warning: terminal cannot highlight")); |
7 | 1084 did_check = TRUE; |
1085 } | |
1086 } | |
1087 | |
23021
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1088 #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
|
1089 /* |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1090 * 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
|
1091 */ |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1092 static void |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1093 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
|
1094 { |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1095 oparg_T oa; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1096 yankreg_T *reg; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1097 |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1098 clear_oparg(&oa); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1099 oa.regname = regname; |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1100 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
|
1101 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
|
1102 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
|
1103 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
|
1104 free_register(reg); |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1105 } |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1106 #endif |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1107 |
7 | 1108 /* |
638 | 1109 * End Visual mode. |
24788
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1110 * 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
|
1111 * from do_pending_operator(). |
7 | 1112 */ |
1113 void | |
24788
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1114 end_visual_mode() |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1115 { |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1116 end_visual_mode_keep_button(); |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1117 reset_held_button(); |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1118 } |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1119 |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1120 void |
b36ceac30454
patch 8.2.2932: select mode test fails
Bram Moolenaar <Bram@vim.org>
parents:
24784
diff
changeset
|
1121 end_visual_mode_keep_button() |
7 | 1122 { |
1123 #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
|
1124 // 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
|
1125 // 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
|
1126 // 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
|
1127 // the selection when hitting ESC. |
7 | 1128 if (clip_star.available && clip_star.owned) |
1129 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
|
1130 |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1131 # 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
|
1132 // 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
|
1133 // 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
|
1134 if (has_textyankpost()) |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1135 { |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1136 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
|
1137 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
|
1138 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
|
1139 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
|
1140 } |
d10a37eb91ee
patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1141 # endif |
7 | 1142 #endif |
1143 | |
1144 VIsual_active = FALSE; | |
1145 setmouse(); | |
1146 mouse_dragging = 0; | |
1147 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1148 // Save the current VIsual area for '< and '> marks, and "gv" |
690 | 1149 curbuf->b_visual.vi_mode = VIsual_mode; |
1150 curbuf->b_visual.vi_start = VIsual; | |
1151 curbuf->b_visual.vi_end = curwin->w_cursor; | |
1152 curbuf->b_visual.vi_curswant = curwin->w_curswant; | |
7 | 1153 #ifdef FEAT_EVAL |
1154 curbuf->b_visual_mode_eval = VIsual_mode; | |
1155 #endif | |
1156 if (!virtual_active()) | |
1157 curwin->w_cursor.coladd = 0; | |
6979 | 1158 may_clear_cmdline(); |
7 | 1159 |
844 | 1160 adjust_cursor_eol(); |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
1161 may_trigger_modechanged(); |
7 | 1162 } |
1163 | |
1164 /* | |
1165 * Reset VIsual_active and VIsual_reselect. | |
1166 */ | |
1167 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1168 reset_VIsual_and_resel(void) |
7 | 1169 { |
1170 if (VIsual_active) | |
1171 { | |
1172 end_visual_mode(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
1173 redraw_curbuf_later(UPD_INVERTED); // delete the inversion later |
7 | 1174 } |
1175 VIsual_reselect = FALSE; | |
1176 } | |
1177 | |
1178 /* | |
1179 * Reset VIsual_active and VIsual_reselect if it's set. | |
1180 */ | |
1181 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1182 reset_VIsual(void) |
7 | 1183 { |
1184 if (VIsual_active) | |
1185 { | |
1186 end_visual_mode(); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
1187 redraw_curbuf_later(UPD_INVERTED); // delete the inversion later |
7 | 1188 VIsual_reselect = FALSE; |
1189 } | |
1190 } | |
1191 | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1192 void |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1193 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
|
1194 { |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1195 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
|
1196 { |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1197 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
|
1198 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
|
1199 } |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1200 } |
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1201 |
7 | 1202 /* |
1203 * Check for a balloon-eval special item to include when searching for an | |
1204 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid! | |
1205 * Returns TRUE if the character at "*ptr" should be included. | |
1206 * "dir" is FORWARD or BACKWARD, the direction of searching. | |
1207 * "*colp" is in/decremented if "ptr[-dir]" should also be included. | |
1208 * "bnp" points to a counter for square brackets. | |
1209 */ | |
1210 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1211 find_is_eval_item( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1212 char_u *ptr, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1213 int *colp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1214 int *bnp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1215 int dir) |
7 | 1216 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1217 // Accept everything inside []. |
7 | 1218 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD)) |
1219 ++*bnp; | |
1220 if (*bnp > 0) | |
1221 { | |
1222 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD)) | |
1223 --*bnp; | |
1224 return TRUE; | |
1225 } | |
1226 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1227 // skip over "s.var" |
7 | 1228 if (*ptr == '.') |
1229 return TRUE; | |
1230 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1231 // two-character item: s->var |
7 | 1232 if (ptr[dir == BACKWARD ? 0 : 1] == '>' |
1233 && ptr[dir == BACKWARD ? -1 : 0] == '-') | |
1234 { | |
1235 *colp += dir; | |
1236 return TRUE; | |
1237 } | |
1238 return FALSE; | |
1239 } | |
1240 | |
1241 /* | |
1242 * Find the identifier under or to the right of the cursor. | |
1243 * "find_type" can have one of three values: | |
1244 * 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
|
1245 * 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
|
1246 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred. |
184 | 1247 * FIND_EVAL: find text useful for C program debugging |
7 | 1248 * |
1249 * 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
|
1250 * 1. Search forward for the start of an identifier/text. Doesn't move if |
7 | 1251 * 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
|
1252 * 2. Search backward for the start of this identifier/text. |
7 | 1253 * This doesn't match the real Vi but I like it a little better and it |
1254 * 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
|
1255 * 3. Search forward to the end of this identifier/text. |
7 | 1256 * When FIND_IDENT isn't defined, we backup until a blank. |
1257 * | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1258 * 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
|
1259 * 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
|
1260 * points into the current buffer line and is not always NUL terminated. |
7 | 1261 */ |
1262 int | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1263 find_ident_under_cursor(char_u **text, int find_type) |
7 | 1264 { |
1265 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
|
1266 curwin->w_cursor.col, text, NULL, find_type); |
7 | 1267 } |
1268 | |
1269 /* | |
1270 * Like find_ident_under_cursor(), but for any window and any position. | |
1271 * However: Uses 'iskeyword' from the current window!. | |
1272 */ | |
1273 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1274 find_ident_at_pos( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1275 win_T *wp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1276 linenr_T lnum, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1277 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
|
1278 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
|
1279 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
|
1280 int find_type) |
7 | 1281 { |
1282 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
|
1283 int col = 0; // init to shut up GCC |
7 | 1284 int i; |
1285 int this_class = 0; | |
1286 int prev_class; | |
1287 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
|
1288 int bn = 0; // bracket nesting |
7 | 1289 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1290 // 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
|
1291 // if i == 1: try to find any non-white text |
7 | 1292 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE); |
1293 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i) | |
1294 { | |
1295 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1296 * 1. skip to start of identifier/text |
7 | 1297 */ |
1298 col = startcol; | |
1299 if (has_mbyte) | |
1300 { | |
1301 while (ptr[col] != NUL) | |
1302 { | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1303 // Stop at a ']' to evaluate "a[x]". |
7 | 1304 if ((find_type & FIND_EVAL) && ptr[col] == ']') |
1305 break; | |
1306 this_class = mb_get_class(ptr + col); | |
1307 if (this_class != 0 && (i == 1 || this_class != 1)) | |
1308 break; | |
474 | 1309 col += (*mb_ptr2len)(ptr + col); |
7 | 1310 } |
1311 } | |
1312 else | |
1313 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
|
1314 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col])) |
7 | 1315 && (!(find_type & FIND_EVAL) || ptr[col] != ']') |
1316 ) | |
1317 ++col; | |
1318 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1319 // When starting on a ']' count it, so that we include the '['. |
7 | 1320 bn = ptr[col] == ']'; |
1321 | |
1322 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1323 * 2. Back up to start of identifier/text. |
7 | 1324 */ |
1325 if (has_mbyte) | |
1326 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1327 // Remember class of character under cursor. |
7 | 1328 if ((find_type & FIND_EVAL) && ptr[col] == ']') |
1329 this_class = mb_get_class((char_u *)"a"); | |
1330 else | |
1331 this_class = mb_get_class(ptr + col); | |
835 | 1332 while (col > 0 && this_class != 0) |
7 | 1333 { |
1334 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1); | |
1335 prev_class = mb_get_class(ptr + prevcol); | |
1336 if (this_class != prev_class | |
1337 && (i == 0 | |
1338 || prev_class == 0 | |
1339 || (find_type & FIND_IDENT)) | |
1340 && (!(find_type & FIND_EVAL) | |
1341 || prevcol == 0 | |
1342 || !find_is_eval_item(ptr + prevcol, &prevcol, | |
1343 &bn, BACKWARD)) | |
1344 ) | |
1345 break; | |
1346 col = prevcol; | |
1347 } | |
1348 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1349 // 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
|
1350 // identifier, stop searching. |
7 | 1351 if (this_class > 2) |
1352 this_class = 2; | |
1353 if (!(find_type & FIND_STRING) || this_class == 2) | |
1354 break; | |
1355 } | |
1356 else | |
1357 { | |
1358 while (col > 0 | |
1359 && ((i == 0 | |
1360 ? 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
|
1361 : (!VIM_ISWHITE(ptr[col - 1]) |
7 | 1362 && (!(find_type & FIND_IDENT) |
1363 || !vim_iswordc(ptr[col - 1])))) | |
1364 || ((find_type & FIND_EVAL) | |
1365 && col > 1 | |
1366 && find_is_eval_item(ptr + col - 1, &col, | |
1367 &bn, BACKWARD)) | |
1368 )) | |
1369 --col; | |
1370 | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1371 // 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
|
1372 // identifier, stop searching. |
7 | 1373 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col])) |
1374 break; | |
1375 } | |
1376 } | |
1377 | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1378 if (ptr[col] == NUL || (i == 0 |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1379 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col])))) |
7 | 1380 { |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1381 // 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
|
1382 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
|
1383 { |
df06694b761b
patch 8.1.1455: popup_atcursor() not completely implemented
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1384 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
|
1385 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
|
1386 else |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26804
diff
changeset
|
1387 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
|
1388 } |
7 | 1389 return 0; |
1390 } | |
1391 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
|
1392 *text = ptr; |
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1393 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
|
1394 *textcol = col; |
7 | 1395 |
1396 /* | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1397 * 3. Find the end if the identifier/text. |
7 | 1398 */ |
1399 bn = 0; | |
1400 startcol -= col; | |
1401 col = 0; | |
1402 if (has_mbyte) | |
1403 { | |
17316
8813e1626e0a
patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1404 // Search for point of changing multibyte character class. |
7 | 1405 this_class = mb_get_class(ptr); |
1406 while (ptr[col] != NUL | |
1407 && ((i == 0 ? mb_get_class(ptr + col) == this_class | |
1408 : mb_get_class(ptr + col) != 0) | |
1409 || ((find_type & FIND_EVAL) | |
1410 && col <= (int)startcol | |
1411 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) | |
1412 )) | |
474 | 1413 col += (*mb_ptr2len)(ptr + col); |
7 | 1414 } |
1415 else | |
1416 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
|
1417 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col]))) |
7 | 1418 || ((find_type & FIND_EVAL) |
1419 && col <= (int)startcol | |
1420 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) | |
1421 ) | |
1422 ++col; | |
1423 | |
1424 return col; | |
1425 } | |
1426 | |
1427 /* | |
1428 * Prepare for redo of a normal command. | |
1429 */ | |
1430 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1431 prep_redo_cmd(cmdarg_T *cap) |
7 | 1432 { |
1433 prep_redo(cap->oap->regname, cap->count0, | |
1434 NUL, cap->cmdchar, NUL, NUL, cap->nchar); | |
1435 } | |
1436 | |
1437 /* | |
1438 * Prepare for redo of any command. | |
1439 * Note that only the last argument can be a multi-byte char. | |
1440 */ | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1441 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1442 prep_redo( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1443 int regname, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1444 long num, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1445 int cmd1, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1446 int cmd2, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1447 int cmd3, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1448 int cmd4, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1449 int cmd5) |
7 | 1450 { |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1451 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
|
1452 } |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1453 |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1454 /* |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1455 * 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
|
1456 */ |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1457 void |
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1458 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
|
1459 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
|
1460 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
|
1461 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
|
1462 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
|
1463 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
|
1464 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
|
1465 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
|
1466 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
|
1467 { |
7 | 1468 ResetRedobuff(); |
30102
539fb427124d
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1469 |
539fb427124d
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1470 #ifdef FEAT_EVAL |
539fb427124d
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1471 // Put info about a mapping in the redo buffer, so that "." will use the |
539fb427124d
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1472 // same script context. |
539fb427124d
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1473 may_add_last_used_map_to_redobuff(); |
539fb427124d
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1474 #endif |
539fb427124d
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1475 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1476 if (regname != 0) // yank from specified buffer |
7 | 1477 { |
1478 AppendCharToRedobuff('"'); | |
1479 AppendCharToRedobuff(regname); | |
1480 } | |
26226
9a8e9383e4cd
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redone
Bram Moolenaar <Bram@vim.org>
parents:
26159
diff
changeset
|
1481 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
|
1482 AppendNumberToRedobuff(num1); |
7 | 1483 if (cmd1 != NUL) |
1484 AppendCharToRedobuff(cmd1); | |
1485 if (cmd2 != NUL) | |
1486 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
|
1487 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
|
1488 AppendNumberToRedobuff(num2); |
7 | 1489 if (cmd3 != NUL) |
1490 AppendCharToRedobuff(cmd3); | |
1491 if (cmd4 != NUL) | |
1492 AppendCharToRedobuff(cmd4); | |
1493 if (cmd5 != NUL) | |
1494 AppendCharToRedobuff(cmd5); | |
1495 } | |
1496 | |
1497 /* | |
1498 * check for operator active and clear it | |
1499 * | |
1500 * return TRUE if operator was active | |
1501 */ | |
1502 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1503 checkclearop(oparg_T *oap) |
7 | 1504 { |
1505 if (oap->op_type == OP_NOP) | |
1506 return FALSE; | |
1507 clearopbeep(oap); | |
1508 return TRUE; | |
1509 } | |
1510 | |
1511 /* | |
1131 | 1512 * Check for operator or Visual active. Clear active operator. |
7 | 1513 * |
1131 | 1514 * Return TRUE if operator or Visual was active. |
7 | 1515 */ |
1516 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1517 checkclearopq(oparg_T *oap) |
7 | 1518 { |
5735 | 1519 if (oap->op_type == OP_NOP && !VIsual_active) |
7 | 1520 return FALSE; |
1521 clearopbeep(oap); | |
1522 return TRUE; | |
1523 } | |
1524 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1525 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1526 clearop(oparg_T *oap) |
7 | 1527 { |
1528 oap->op_type = OP_NOP; | |
1529 oap->regname = 0; | |
1530 oap->motion_force = NUL; | |
1531 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
|
1532 motion_force = NUL; |
7 | 1533 } |
1534 | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
1535 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1536 clearopbeep(oparg_T *oap) |
7 | 1537 { |
1538 clearop(oap); | |
1539 beep_flush(); | |
1540 } | |
1541 | |
1542 /* | |
1543 * Remove the shift modifier from a special key. | |
1544 */ | |
1545 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1546 unshift_special(cmdarg_T *cap) |
7 | 1547 { |
1548 switch (cap->cmdchar) | |
1549 { | |
1550 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break; | |
1551 case K_S_LEFT: cap->cmdchar = K_LEFT; break; | |
1552 case K_S_UP: cap->cmdchar = K_UP; break; | |
1553 case K_S_DOWN: cap->cmdchar = K_DOWN; break; | |
1554 case K_S_HOME: cap->cmdchar = K_HOME; break; | |
1555 case K_S_END: cap->cmdchar = K_END; break; | |
1556 } | |
1557 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask); | |
1558 } | |
1559 | |
6979 | 1560 /* |
1561 * If the mode is currently displayed clear the command line or update the | |
1562 * command displayed. | |
1563 */ | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
1564 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1565 may_clear_cmdline(void) |
6979 | 1566 { |
1567 if (mode_displayed) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1568 clear_cmdline = TRUE; // unshow visual mode later |
6979 | 1569 #ifdef FEAT_CMDL_INFO |
1570 else | |
1571 clear_showcmd(); | |
1572 #endif | |
1573 } | |
1574 | |
7 | 1575 #if defined(FEAT_CMDL_INFO) || defined(PROTO) |
1576 /* | |
1577 * Routines for displaying a partly typed command | |
1578 */ | |
1579 | |
27752
c1d1639b52dd
patch 8.2.4402: missing parenthesis may cause unexpected problems
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1580 #define SHOWCMD_BUFLEN (SHOWCMD_COLS + 1 + 30) |
7 | 1581 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
|
1582 static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd() |
7 | 1583 static int showcmd_is_clear = TRUE; |
1584 static int showcmd_visual = FALSE; | |
1585 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
1586 static void display_showcmd(void); |
7 | 1587 |
1588 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1589 clear_showcmd(void) |
7 | 1590 { |
1591 if (!p_sc) | |
1592 return; | |
1593 | |
1594 if (VIsual_active && !char_avail()) | |
1595 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
1596 int cursor_bot = LT_POS(VIsual, curwin->w_cursor); |
7 | 1597 long lines; |
1598 colnr_T leftcol, rightcol; | |
1599 linenr_T top, bot; | |
1600 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1601 // Show the size of the Visual area. |
1866 | 1602 if (cursor_bot) |
7 | 1603 { |
1604 top = VIsual.lnum; | |
1605 bot = curwin->w_cursor.lnum; | |
1606 } | |
1607 else | |
1608 { | |
1609 top = curwin->w_cursor.lnum; | |
1610 bot = VIsual.lnum; | |
1611 } | |
1612 # ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1613 // Include closed folds as a whole. |
7009 | 1614 (void)hasFolding(top, &top, NULL); |
1615 (void)hasFolding(bot, NULL, &bot); | |
7 | 1616 # endif |
1617 lines = bot - top + 1; | |
1618 | |
1619 if (VIsual_mode == Ctrl_V) | |
1620 { | |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1621 # ifdef FEAT_LINEBREAK |
1866 | 1622 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
|
1623 char_u *saved_w_sbr = curwin->w_p_sbr; |
1866 | 1624 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1625 // Make 'sbr' empty for a moment to get the correct size. |
1866 | 1626 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
|
1627 curwin->w_p_sbr = empty_option; |
2335
2a5478294078
Fix build broken without multi-byte feature.
Bram Moolenaar <bram@vim.org>
parents:
2326
diff
changeset
|
1628 # endif |
7 | 1629 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
|
1630 # ifdef FEAT_LINEBREAK |
1866 | 1631 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
|
1632 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
|
1633 # endif |
7 | 1634 sprintf((char *)showcmd_buf, "%ldx%ld", lines, |
1635 (long)(rightcol - leftcol + 1)); | |
1636 } | |
1637 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum) | |
1638 sprintf((char *)showcmd_buf, "%ld", lines); | |
1639 else | |
2324
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1640 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1641 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
|
1642 int l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1643 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
|
1644 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
|
1645 |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1646 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
|
1647 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1648 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
|
1649 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
|
1650 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1651 else |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1652 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1653 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
|
1654 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
|
1655 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1656 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
|
1657 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1658 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
|
1659 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
|
1660 { |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1661 ++bytes; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1662 ++chars; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1663 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
|
1664 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1665 bytes += l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1666 ++chars; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1667 s += l; |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1668 } |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1669 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
|
1670 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
|
1671 else |
0a258a67051d
In Visual mode with 'showcmd' display the number of bytes and characters.
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
1672 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
|
1673 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1674 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate |
7 | 1675 showcmd_visual = TRUE; |
1676 } | |
1677 else | |
1678 { | |
1679 showcmd_buf[0] = NUL; | |
1680 showcmd_visual = FALSE; | |
1681 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1682 // Don't actually display something if there is nothing to clear. |
7 | 1683 if (showcmd_is_clear) |
1684 return; | |
1685 } | |
1686 | |
1687 display_showcmd(); | |
1688 } | |
1689 | |
1690 /* | |
1691 * Add 'c' to string of shown command chars. | |
1692 * Return TRUE if output has been written (and setcursor() has been called). | |
1693 */ | |
1694 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1695 add_to_showcmd(int c) |
7 | 1696 { |
1697 char_u *p; | |
1698 int old_len; | |
1699 int extra_len; | |
1700 int overflow; | |
1701 int i; | |
1702 static int ignore[] = | |
1703 { | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18291
diff
changeset
|
1704 #ifdef FEAT_GUI |
7 | 1705 K_VER_SCROLLBAR, K_HOR_SCROLLBAR, |
1706 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
|
1707 #endif |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1708 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
|
1709 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE, |
7 | 1710 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE, |
1711 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
|
1712 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT, |
7 | 1713 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE, |
631 | 1714 K_CURSORHOLD, |
7 | 1715 0 |
1716 }; | |
1717 | |
641 | 1718 if (!p_sc || msg_silent != 0) |
7 | 1719 return FALSE; |
1720 | |
1721 if (showcmd_visual) | |
1722 { | |
1723 showcmd_buf[0] = NUL; | |
1724 showcmd_visual = FALSE; | |
1725 } | |
1726 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1727 // Ignore keys that are scrollbar updates and mouse clicks |
7 | 1728 if (IS_SPECIAL(c)) |
1729 for (i = 0; ignore[i] != 0; ++i) | |
1730 if (ignore[i] == c) | |
1731 return FALSE; | |
1732 | |
1733 p = transchar(c); | |
5535 | 1734 if (*p == ' ') |
1735 STRCPY(p, "<20>"); | |
7 | 1736 old_len = (int)STRLEN(showcmd_buf); |
1737 extra_len = (int)STRLEN(p); | |
1738 overflow = old_len + extra_len - SHOWCMD_COLS; | |
1739 if (overflow > 0) | |
1362 | 1740 mch_memmove(showcmd_buf, showcmd_buf + overflow, |
1741 old_len - overflow + 1); | |
7 | 1742 STRCAT(showcmd_buf, p); |
1743 | |
1744 if (char_avail()) | |
1745 return FALSE; | |
1746 | |
1747 display_showcmd(); | |
1748 | |
1749 return TRUE; | |
1750 } | |
1751 | |
1752 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1753 add_to_showcmd_c(int c) |
7 | 1754 { |
1755 if (!add_to_showcmd(c)) | |
1756 setcursor(); | |
1757 } | |
1758 | |
1759 /* | |
1760 * Delete 'len' characters from the end of the shown command. | |
1761 */ | |
1762 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1763 del_from_showcmd(int len) |
7 | 1764 { |
1765 int old_len; | |
1766 | |
1767 if (!p_sc) | |
1768 return; | |
1769 | |
1770 old_len = (int)STRLEN(showcmd_buf); | |
1771 if (len > old_len) | |
1772 len = old_len; | |
1773 showcmd_buf[old_len - len] = NUL; | |
1774 | |
1775 if (!char_avail()) | |
1776 display_showcmd(); | |
1777 } | |
1778 | |
1779 /* | |
1780 * push_showcmd() and pop_showcmd() are used when waiting for the user to type | |
1781 * something and there is a partial mapping. | |
1782 */ | |
1783 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1784 push_showcmd(void) |
7 | 1785 { |
1786 if (p_sc) | |
1787 STRCPY(old_showcmd_buf, showcmd_buf); | |
1788 } | |
1789 | |
1790 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1791 pop_showcmd(void) |
7 | 1792 { |
1793 if (!p_sc) | |
1794 return; | |
1795 | |
1796 STRCPY(showcmd_buf, old_showcmd_buf); | |
1797 | |
1798 display_showcmd(); | |
1799 } | |
1800 | |
1801 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1802 display_showcmd(void) |
7 | 1803 { |
1804 int len; | |
1805 | |
1806 cursor_off(); | |
1807 | |
1808 len = (int)STRLEN(showcmd_buf); | |
1809 if (len == 0) | |
1810 showcmd_is_clear = TRUE; | |
1811 else | |
1812 { | |
1813 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0); | |
1814 showcmd_is_clear = FALSE; | |
1815 } | |
1816 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1817 // 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
|
1818 // spaces |
7 | 1819 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0); |
1820 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1821 setcursor(); // put cursor back where it belongs |
7 | 1822 } |
1823 #endif | |
1824 | |
1825 /* | |
1826 * When "check" is FALSE, prepare for commands that scroll the window. | |
1827 * When "check" is TRUE, take care of scroll-binding after the window has | |
1828 * scrolled. Called from normal_cmd() and edit(). | |
1829 */ | |
1830 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1831 do_check_scrollbind(int check) |
7 | 1832 { |
1833 static win_T *old_curwin = NULL; | |
1834 static linenr_T old_topline = 0; | |
1835 #ifdef FEAT_DIFF | |
1836 static int old_topfill = 0; | |
1837 #endif | |
1838 static buf_T *old_buf = NULL; | |
1839 static colnr_T old_leftcol = 0; | |
1840 | |
1841 if (check && curwin->w_p_scb) | |
1842 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1843 // 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
|
1844 // the values. |
7 | 1845 if (did_syncbind) |
1846 did_syncbind = FALSE; | |
1847 else if (curwin == old_curwin) | |
1848 { | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1849 // 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
|
1850 // '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
|
1851 // when 'diff' is set. |
7 | 1852 if ((curwin->w_buffer == old_buf |
1853 #ifdef FEAT_DIFF | |
1854 || curwin->w_p_diff | |
1855 #endif | |
1856 ) | |
1857 && (curwin->w_topline != old_topline | |
1858 #ifdef FEAT_DIFF | |
1859 || curwin->w_topfill != old_topfill | |
1860 #endif | |
1861 || curwin->w_leftcol != old_leftcol)) | |
1862 { | |
1863 check_scrollbind(curwin->w_topline - old_topline, | |
1864 (long)(curwin->w_leftcol - old_leftcol)); | |
1865 } | |
1866 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1867 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt' |
7 | 1868 { |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1869 // 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
|
1870 // 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
|
1871 // 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
|
1872 // 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
|
1873 // 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
|
1874 // 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
|
1875 // 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
|
1876 // visible on-screen. |
7 | 1877 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L); |
1878 } | |
1879 curwin->w_scbind_pos = curwin->w_topline; | |
1880 } | |
1881 | |
1882 old_curwin = curwin; | |
1883 old_topline = curwin->w_topline; | |
1884 #ifdef FEAT_DIFF | |
1885 old_topfill = curwin->w_topfill; | |
1886 #endif | |
1887 old_buf = curwin->w_buffer; | |
1888 old_leftcol = curwin->w_leftcol; | |
1889 } | |
1890 | |
1891 /* | |
1892 * Synchronize any windows that have "scrollbind" set, based on the | |
1893 * number of rows by which the current window has changed | |
1894 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>) | |
1895 */ | |
1896 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1897 check_scrollbind(linenr_T topline_diff, long leftcol_diff) |
7 | 1898 { |
1899 int want_ver; | |
1900 int want_hor; | |
1901 win_T *old_curwin = curwin; | |
1902 buf_T *old_curbuf = curbuf; | |
1903 int old_VIsual_select = VIsual_select; | |
1904 int old_VIsual_active = VIsual_active; | |
1905 colnr_T tgt_leftcol = curwin->w_leftcol; | |
1906 long topline; | |
1907 long y; | |
1908 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1909 // check 'scrollopt' string for vertical and horizontal scroll options |
7 | 1910 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0); |
1911 #ifdef FEAT_DIFF | |
1912 want_ver |= old_curwin->w_p_diff; | |
1913 #endif | |
1914 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0)); | |
1915 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1916 // loop through the scrollbound windows and scroll accordingly |
7 | 1917 VIsual_select = VIsual_active = 0; |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9399
diff
changeset
|
1918 FOR_ALL_WINDOWS(curwin) |
7 | 1919 { |
1920 curbuf = curwin->w_buffer; | |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1921 // skip original window and windows with 'noscrollbind' |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1922 if (curwin == old_curwin || !curwin->w_p_scb) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1923 continue; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1924 |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1925 // do the vertical scroll |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1926 if (want_ver) |
7 | 1927 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1928 #ifdef FEAT_DIFF |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1929 if (old_curwin->w_p_diff && curwin->w_p_diff) |
7 | 1930 { |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1931 diff_set_topline(old_curwin, curwin); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1932 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1933 else |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1934 #endif |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1935 { |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1936 curwin->w_scbind_pos += topline_diff; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1937 topline = curwin->w_scbind_pos; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1938 if (topline > curbuf->b_ml.ml_line_count) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1939 topline = curbuf->b_ml.ml_line_count; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1940 if (topline < 1) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1941 topline = 1; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1942 |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1943 y = topline - curwin->w_topline; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1944 if (y > 0) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1945 scrollup(y, FALSE); |
7 | 1946 else |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1947 scrolldown(-y, FALSE); |
7 | 1948 } |
1949 | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
1950 redraw_later(UPD_VALID); |
29566
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1951 cursor_correct(); |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1952 curwin->w_redr_status = TRUE; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1953 } |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1954 |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1955 // do the horizontal scroll |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1956 if (want_hor && curwin->w_leftcol != tgt_leftcol) |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1957 { |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1958 curwin->w_leftcol = tgt_leftcol; |
99e3763cbd34
patch 9.0.0124: code has more indent than needed
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1959 leftcol_changed(); |
7 | 1960 } |
1961 } | |
1962 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
1963 // reset current-window |
7 | 1964 VIsual_select = old_VIsual_select; |
1965 VIsual_active = old_VIsual_active; | |
1966 curwin = old_curwin; | |
1967 curbuf = old_curbuf; | |
1968 } | |
1969 | |
1970 /* | |
1971 * Command character that's ignored. | |
1972 * 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
|
1973 * xon/xoff. |
7 | 1974 */ |
1975 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1976 nv_ignore(cmdarg_T *cap) |
7 | 1977 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
1978 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now |
7 | 1979 } |
1980 | |
1981 /* | |
620 | 1982 * Command character that doesn't do anything, but unlike nv_ignore() does |
1983 * start edit(). Used for "startinsert" executed while starting up. | |
1984 */ | |
1985 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1986 nv_nop(cmdarg_T *cap UNUSED) |
620 | 1987 { |
1988 } | |
1989 | |
1990 /* | |
7 | 1991 * Command character doesn't exist. |
1992 */ | |
1993 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1994 nv_error(cmdarg_T *cap) |
7 | 1995 { |
1996 clearopbeep(cap->oap); | |
1997 } | |
1998 | |
1999 /* | |
2000 * <Help> and <F1> commands. | |
2001 */ | |
2002 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2003 nv_help(cmdarg_T *cap) |
7 | 2004 { |
2005 if (!checkclearopq(cap->oap)) | |
2006 ex_help(NULL); | |
2007 } | |
2008 | |
2009 /* | |
2010 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor. | |
2011 */ | |
2012 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2013 nv_addsub(cmdarg_T *cap) |
7 | 2014 { |
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
|
2015 #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
|
2016 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
|
2017 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
|
2018 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
|
2019 #endif |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2020 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
|
2021 { |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2022 prep_redo_cmd(cap); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2023 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
|
2024 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
|
2025 cap->oap->op_type = OP_NOP; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2026 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2027 else if (VIsual_active) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2028 nv_operator(cap); |
6868 | 2029 else |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2030 clearop(cap->oap); |
7 | 2031 } |
2032 | |
2033 /* | |
2034 * CTRL-F, CTRL-B, etc: Scroll page up or down. | |
2035 */ | |
2036 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2037 nv_page(cmdarg_T *cap) |
7 | 2038 { |
2039 if (!checkclearop(cap->oap)) | |
819 | 2040 { |
2041 if (mod_mask & MOD_MASK_CTRL) | |
2042 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2043 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward |
819 | 2044 if (cap->arg == BACKWARD) |
2045 goto_tabpage(-(int)cap->count1); | |
2046 else | |
2047 goto_tabpage((int)cap->count0); | |
2048 } | |
2049 else | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12467
diff
changeset
|
2050 (void)onepage(cap->arg, cap->count1); |
819 | 2051 } |
7 | 2052 } |
2053 | |
2054 /* | |
2055 * Implementation of "gd" and "gD" command. | |
2056 */ | |
2057 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2058 nv_gd( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2059 oparg_T *oap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2060 int nchar, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2061 int thisblock) // 1 for "1gd" and "1gD" |
7 | 2062 { |
2063 int len; | |
503 | 2064 char_u *ptr; |
2065 | |
2066 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
|
2067 || 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
|
2068 == 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
|
2069 { |
503 | 2070 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
|
2071 } |
5317b0ae4893
patch 8.2.3583: the "gd" and "gD" commands do not update search stats
Bram Moolenaar <Bram@vim.org>
parents:
26094
diff
changeset
|
2072 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
|
2073 { |
503 | 2074 #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
|
2075 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
|
2076 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
|
2077 #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
|
2078 // 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
|
2079 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
|
2080 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
|
2081 } |
503 | 2082 } |
2083 | |
2084 /* | |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2085 * 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
|
2086 * otherwise. |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2087 */ |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2088 static int |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2089 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
|
2090 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2091 int i; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2092 int incomment = FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2093 int instring = 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2094 int prev = 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2095 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2096 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
|
2097 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2098 if (instring != 0) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2099 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2100 if (prev != '\\' && line[i] == instring) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2101 instring = 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2102 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2103 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
|
2104 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2105 instring = line[i]; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2106 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2107 else |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2108 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2109 if (incomment) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2110 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2111 if (prev == '*' && line[i] == '/') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2112 incomment = FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2113 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2114 else if (prev == '/' && line[i] == '*') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2115 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2116 incomment = TRUE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2117 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2118 else if (prev == '/' && line[i] == '/') |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2119 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2120 return FALSE; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2121 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2122 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2123 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2124 prev = line[i]; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2125 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2126 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2127 return incomment == FALSE && instring == 0; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2128 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2129 |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2130 /* |
523 | 2131 * Search for variable declaration of "ptr[len]". |
2132 * When "locally" is TRUE in the current function ("gd"), otherwise in the | |
2133 * current file ("gD"). | |
2134 * When "thisblock" is TRUE check the {} block scope. | |
503 | 2135 * Return FAIL when not found. |
2136 */ | |
2137 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2138 find_decl( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2139 char_u *ptr, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2140 int len, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2141 int locally, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2142 int thisblock, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2143 int flags_arg) // flags passed to searchit() |
503 | 2144 { |
7 | 2145 char_u *pat; |
2146 pos_T old_pos; | |
503 | 2147 pos_T par_pos; |
2148 pos_T found_pos; | |
7 | 2149 int t; |
2150 int save_p_ws; | |
2151 int save_p_scs; | |
503 | 2152 int retval = OK; |
944 | 2153 int incll; |
9315
1b4946fa3777
commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
2154 int searchflags = flags_arg; |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2155 int valid; |
503 | 2156 |
2157 if ((pat = alloc(len + 7)) == NULL) | |
2158 return FAIL; | |
268 | 2159 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2160 // 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
|
2161 // and "~" causes trouble. |
268 | 2162 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s", |
2163 len, ptr); | |
7 | 2164 old_pos = curwin->w_cursor; |
2165 save_p_ws = p_ws; | |
2166 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
|
2167 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
|
2168 p_scs = FALSE; // don't switch ignorecase off now |
7 | 2169 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2170 // 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
|
2171 // 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
|
2172 // back until a blank line. If this fails go to line 1. |
944 | 2173 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE)) |
7 | 2174 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2175 setpcmark(); // Set in findpar() otherwise |
7 | 2176 curwin->w_cursor.lnum = 1; |
539 | 2177 par_pos = curwin->w_cursor; |
7 | 2178 } |
2179 else | |
2180 { | |
539 | 2181 par_pos = curwin->w_cursor; |
7 | 2182 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL) |
2183 --curwin->w_cursor.lnum; | |
2184 } | |
2185 curwin->w_cursor.col = 0; | |
2186 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2187 // 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
|
2188 CLEAR_POS(&found_pos); |
503 | 2189 for (;;) |
2190 { | |
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
|
2191 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
|
2192 pat, 1L, searchflags, RE_LAST, NULL); |
503 | 2193 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
|
2194 t = FAIL; // match after start is failure too |
523 | 2195 |
718 | 2196 if (thisblock && t != FAIL) |
523 | 2197 { |
2198 pos_T *pos; | |
2199 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2200 // 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
|
2201 // position where we started the search from. |
523 | 2202 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD, |
2203 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL | |
2204 && pos->lnum < old_pos.lnum) | |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2205 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2206 // 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
|
2207 // Skip to the end. |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2208 curwin->w_cursor = *pos; |
523 | 2209 continue; |
11366
b16bc115a270
patch 8.0.0568: 1gd may hang
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2210 } |
523 | 2211 } |
2212 | |
503 | 2213 if (t == FAIL) |
2214 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2215 // If we previously found a valid position, use it. |
503 | 2216 if (found_pos.lnum != 0) |
2217 { | |
2218 curwin->w_cursor = found_pos; | |
2219 t = OK; | |
2220 } | |
2221 break; | |
2222 } | |
3562 | 2223 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0) |
503 | 2224 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2225 // Ignore this line, continue at start of next line. |
503 | 2226 ++curwin->w_cursor.lnum; |
2227 curwin->w_cursor.col = 0; | |
2228 continue; | |
2229 } | |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2230 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
|
2231 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2232 // 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
|
2233 // 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
|
2234 if (!valid && found_pos.lnum != 0) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2235 { |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2236 curwin->w_cursor = found_pos; |
503 | 2237 break; |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2238 } |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2239 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2240 // 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
|
2241 if (valid && !locally) |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2242 break; |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2243 if (valid && curwin->w_cursor.lnum >= par_pos.lnum) |
503 | 2244 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2245 // If we previously found a valid position, use it. |
503 | 2246 if (found_pos.lnum != 0) |
2247 curwin->w_cursor = found_pos; | |
2248 break; | |
2249 } | |
2250 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2251 // 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
|
2252 // 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
|
2253 // 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
|
2254 if (!valid) |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
2255 CLEAR_POS(&found_pos); |
10251
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2256 else |
bc442c2296a7
commit https://github.com/vim/vim/commit/226630a030c0d41145e1109f09633360fc9c999d
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
2257 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
|
2258 // 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
|
2259 // position. |
9315
1b4946fa3777
commit https://github.com/vim/vim/commit/23c60f21b07b04351d846e6fbf4f4abd9aa09345
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
2260 searchflags &= ~SEARCH_START; |
503 | 2261 } |
2262 | |
2263 if (t == FAIL) | |
2264 { | |
2265 retval = FAIL; | |
7 | 2266 curwin->w_cursor = old_pos; |
2267 } | |
2268 else | |
2269 { | |
2270 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
|
2271 // "n" searches forward now |
7 | 2272 reset_search_dir(); |
2273 } | |
2274 | |
2275 vim_free(pat); | |
2276 p_ws = save_p_ws; | |
2277 p_scs = save_p_scs; | |
503 | 2278 |
2279 return retval; | |
7 | 2280 } |
2281 | |
2282 /* | |
2283 * Move 'dist' lines in direction 'dir', counting lines by *screen* | |
2284 * lines rather than lines in the file. | |
2285 * 'dist' must be positive. | |
2286 * | |
2287 * Return OK if able to move cursor, FAIL otherwise. | |
2288 */ | |
2289 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2290 nv_screengo(oparg_T *oap, int dir, long dist) |
7 | 2291 { |
2292 int linelen = linetabsize(ml_get_curline()); | |
2293 int retval = OK; | |
2294 int atend = FALSE; | |
2295 int n; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2296 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
|
2297 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
|
2298 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
|
2299 int width2; // text width for wrapped screen line |
7 | 2300 |
2301 oap->motion_type = MCHAR; | |
5192
c28202427d71
updated for version 7.4a.022
Bram Moolenaar <bram@vim.org>
parents:
5162
diff
changeset
|
2302 oap->inclusive = (curwin->w_curswant == MAXCOL); |
7 | 2303 |
2304 col_off1 = curwin_col_off(); | |
2305 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
|
2306 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
|
2307 width2 = curwin->w_width - col_off2; |
6559 | 2308 if (width2 == 0) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2309 width2 = 1; // avoid divide by zero |
7 | 2310 |
2311 if (curwin->w_width != 0) | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
2312 { |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2313 // 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
|
2314 // try to stick in the last column of the screen. |
7 | 2315 if (curwin->w_curswant == MAXCOL) |
2316 { | |
2317 atend = TRUE; | |
2318 validate_virtcol(); | |
2319 if (width1 <= 0) | |
2320 curwin->w_curswant = 0; | |
2321 else | |
2322 { | |
2323 curwin->w_curswant = width1 - 1; | |
2324 if (curwin->w_virtcol > curwin->w_curswant) | |
2325 curwin->w_curswant += ((curwin->w_virtcol | |
2326 - curwin->w_curswant - 1) / width2 + 1) * width2; | |
2327 } | |
2328 } | |
2329 else | |
2330 { | |
2331 if (linelen > width1) | |
2332 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; | |
2333 else | |
2334 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
|
2335 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
|
2336 curwin->w_curswant = n - 1; |
7 | 2337 } |
2338 | |
2339 while (dist--) | |
2340 { | |
2341 if (dir == BACKWARD) | |
2342 { | |
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
|
2343 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
|
2344 #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
|
2345 && !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
|
2346 #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
|
2347 ) |
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
|
2348 // 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
|
2349 // 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
|
2350 // which will get clipped to column 0. |
7 | 2351 curwin->w_curswant -= width2; |
2352 else | |
2353 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2354 // 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
|
2355 #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
|
2356 // 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
|
2357 // '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
|
2358 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
|
2359 (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
|
2360 &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
|
2361 #endif |
7 | 2362 if (curwin->w_cursor.lnum == 1) |
2363 { | |
2364 retval = FAIL; | |
2365 break; | |
2366 } | |
2367 --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
|
2368 |
7 | 2369 linelen = linetabsize(ml_get_curline()); |
2370 if (linelen > width1) | |
2371 curwin->w_curswant += (((linelen - width1 - 1) / width2) | |
2372 + 1) * width2; | |
2373 } | |
2374 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2375 else // dir == FORWARD |
7 | 2376 { |
2377 if (linelen > width1) | |
2378 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; | |
2379 else | |
2380 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
|
2381 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
|
2382 #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
|
2383 && !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
|
2384 #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
|
2385 ) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2386 // move forward within line |
7 | 2387 curwin->w_curswant += width2; |
2388 else | |
2389 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2390 // to next line |
7 | 2391 #ifdef FEAT_FOLDING |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2392 // Move to the end of a closed fold. |
7 | 2393 (void)hasFolding(curwin->w_cursor.lnum, NULL, |
2394 &curwin->w_cursor.lnum); | |
2395 #endif | |
2396 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count) | |
2397 { | |
2398 retval = FAIL; | |
2399 break; | |
2400 } | |
2401 curwin->w_cursor.lnum++; | |
2402 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
|
2403 // 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
|
2404 // 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
|
2405 // 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
|
2406 // 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
|
2407 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
|
2408 curwin->w_curswant -= width2; |
2911 | 2409 linelen = linetabsize(ml_get_curline()); |
7 | 2410 } |
2411 } | |
2412 } | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
2413 } |
7 | 2414 |
5600 | 2415 if (virtual_active() && atend) |
2416 coladvance(MAXCOL); | |
2417 else | |
2418 coladvance(curwin->w_curswant); | |
7 | 2419 |
2420 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap) | |
2421 { | |
6178 | 2422 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
|
2423 int c; |
6178 | 2424 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2425 // 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
|
2426 // 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
|
2427 // screenline or move two screenlines. |
7 | 2428 validate_virtcol(); |
6178 | 2429 virtcol = curwin->w_virtcol; |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2430 #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
|
2431 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
|
2432 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
|
2433 #endif |
6178 | 2434 |
26094
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2435 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
|
2436 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
|
2437 && (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
|
2438 && !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
|
2439 oneright(); |
f53f365078dd
patch 8.2.3580: gj does not move properly with a wide character
Bram Moolenaar <Bram@vim.org>
parents:
26042
diff
changeset
|
2440 |
6178 | 2441 if (virtcol > curwin->w_curswant |
7 | 2442 && (curwin->w_curswant < (colnr_T)width1 |
2443 ? (curwin->w_curswant > (colnr_T)width1 / 2) | |
2444 : ((curwin->w_curswant - width1) % width2 | |
2445 > (colnr_T)width2 / 2))) | |
2446 --curwin->w_cursor.col; | |
2447 } | |
2448 | |
2449 if (atend) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2450 curwin->w_curswant = MAXCOL; // stick in the last column |
7 | 2451 |
2452 return retval; | |
2453 } | |
2454 | |
2455 /* | |
2456 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down. | |
2457 * cap->arg must be TRUE for CTRL-E. | |
2458 */ | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18128
diff
changeset
|
2459 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2460 nv_scroll_line(cmdarg_T *cap) |
7 | 2461 { |
2462 if (!checkclearop(cap->oap)) | |
2463 scroll_redraw(cap->arg, cap->count1); | |
2464 } | |
2465 | |
2466 /* | |
2467 * Scroll "count" lines up or down, and redraw. | |
2468 */ | |
2469 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2470 scroll_redraw(int up, long count) |
7 | 2471 { |
2472 linenr_T prev_topline = curwin->w_topline; | |
30616
eb86a6330ae3
patch 9.0.0643: smoothscroll test fails
Bram Moolenaar <Bram@vim.org>
parents:
30471
diff
changeset
|
2473 int prev_skipcol = curwin->w_skipcol; |
7 | 2474 #ifdef FEAT_DIFF |
2475 int prev_topfill = curwin->w_topfill; | |
2476 #endif | |
2477 linenr_T prev_lnum = curwin->w_cursor.lnum; | |
2478 | |
2479 if (up) | |
2480 scrollup(count, TRUE); | |
2481 else | |
2482 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
|
2483 if (get_scrolloff_value()) |
7 | 2484 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2485 // 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
|
2486 // valid, otherwise the screen jumps back at the end of the file. |
7 | 2487 cursor_correct(); |
2488 check_cursor_moved(curwin); | |
2489 curwin->w_valid |= VALID_TOPLINE; | |
2490 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2491 // 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
|
2492 // 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
|
2493 // first line of the buffer is already on the screen |
7 | 2494 while (curwin->w_topline == prev_topline |
30616
eb86a6330ae3
patch 9.0.0643: smoothscroll test fails
Bram Moolenaar <Bram@vim.org>
parents:
30471
diff
changeset
|
2495 && curwin->w_skipcol == prev_skipcol |
7 | 2496 #ifdef FEAT_DIFF |
2497 && curwin->w_topfill == prev_topfill | |
2498 #endif | |
2499 ) | |
2500 { | |
2501 if (up) | |
2502 { | |
2503 if (curwin->w_cursor.lnum > prev_lnum | |
2504 || cursor_down(1L, FALSE) == FAIL) | |
2505 break; | |
2506 } | |
2507 else | |
2508 { | |
2509 if (curwin->w_cursor.lnum < prev_lnum | |
2510 || prev_topline == 1L | |
2511 || cursor_up(1L, FALSE) == FAIL) | |
2512 break; | |
2513 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2514 // 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
|
2515 // end of the file. |
7 | 2516 check_cursor_moved(curwin); |
2517 curwin->w_valid |= VALID_TOPLINE; | |
2518 } | |
2519 } | |
2520 if (curwin->w_cursor.lnum != prev_lnum) | |
2521 coladvance(curwin->w_curswant); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
2522 redraw_later(UPD_VALID); |
7 | 2523 } |
2524 | |
2525 /* | |
27400
722db0819111
patch 8.2.4228: no tests for clicking in the GUI tabline
Bram Moolenaar <Bram@vim.org>
parents:
27386
diff
changeset
|
2526 * 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
|
2527 * '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
|
2528 * 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
|
2529 */ |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2530 static int |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2531 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
|
2532 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2533 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
|
2534 long n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2535 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2536 // "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
|
2537 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
|
2538 return FALSE; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2539 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
|
2540 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2541 for (;;) |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2542 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2543 #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
|
2544 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
|
2545 #endif |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2546 ++no_mapping; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2547 ++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
|
2548 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
|
2549 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
|
2550 --no_mapping; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2551 --allow_keys; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2552 #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
|
2553 (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
|
2554 #endif |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2555 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
|
2556 n /= 10; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2557 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
|
2558 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
|
2559 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
|
2560 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2561 #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
|
2562 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
|
2563 #endif |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2564 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
|
2565 break; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2566 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2567 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
|
2568 || nchar == 'h' |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2569 || 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
|
2570 || 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
|
2571 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2572 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
|
2573 *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
|
2574 return TRUE; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2575 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2576 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2577 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2578 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
|
2579 break; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2580 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2581 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2582 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
|
2583 return FALSE; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2584 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2585 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2586 #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
|
2587 /* |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2588 * "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
|
2589 * "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
|
2590 * "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
|
2591 * "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
|
2592 * "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
|
2593 */ |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2594 static int |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2595 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
|
2596 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2597 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
|
2598 int len; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2599 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
|
2600 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2601 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
|
2602 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2603 ++no_mapping; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2604 ++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
|
2605 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
|
2606 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
|
2607 --no_mapping; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2608 --allow_keys; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2609 #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
|
2610 (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
|
2611 #endif |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2612 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
|
2613 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2614 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
|
2615 return OK; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2616 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2617 undo = TRUE; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2618 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2619 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2620 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
|
2621 return OK; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2622 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
|
2623 return FAIL; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2624 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
|
2625 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2626 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
|
2627 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2628 // 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
|
2629 // 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
|
2630 // used below. |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2631 emsg_off++; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2632 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
|
2633 emsg_off--; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2634 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
|
2635 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
|
2636 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
|
2637 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2638 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2639 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
|
2640 && (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
|
2641 return FAIL; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2642 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
|
2643 ? 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
|
2644 (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
|
2645 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2646 return OK; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2647 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2648 #endif |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2649 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2650 /* |
7 | 2651 * Commands that start with "z". |
2652 */ | |
2653 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2654 nv_zet(cmdarg_T *cap) |
7 | 2655 { |
2656 long n; | |
2657 colnr_T col; | |
2658 int nchar = cap->nchar; | |
2659 #ifdef FEAT_FOLDING | |
2660 long old_fdl = curwin->w_p_fdl; | |
2661 int old_fen = curwin->w_p_fen; | |
2662 #endif | |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
2663 long siso = get_sidescrolloff_value(); |
7 | 2664 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2665 if (VIM_ISDIGIT(nchar) && !nv_z_get_count(cap, &nchar)) |
7 | 2666 return; |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2667 |
7 | 2668 if ( |
2669 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2670 // "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
|
2671 // 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
|
2672 // commands. |
7 | 2673 cap->nchar != 'f' && cap->nchar != 'F' |
2674 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar)) | |
2675 && cap->nchar != 'j' && cap->nchar != 'k' | |
2676 && | |
2677 #endif | |
2678 checkclearop(cap->oap)) | |
2679 return; | |
2680 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
2681 // 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
|
2682 // If line number given, set cursor. |
7 | 2683 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL) |
2684 && cap->count0 | |
2685 && cap->count0 != curwin->w_cursor.lnum) | |
2686 { | |
2687 setpcmark(); | |
2688 if (cap->count0 > curbuf->b_ml.ml_line_count) | |
2689 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
2690 else | |
2691 curwin->w_cursor.lnum = cap->count0; | |
22 | 2692 check_cursor_col(); |
7 | 2693 } |
2694 | |
2695 switch (nchar) | |
2696 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2697 // "z+", "z<CR>" and "zt": put cursor at top of screen |
7 | 2698 case '+': |
2699 if (cap->count0 == 0) | |
2700 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2701 // 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
|
2702 validate_botline(); // make sure w_botline is valid |
7 | 2703 if (curwin->w_botline > curbuf->b_ml.ml_line_count) |
2704 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
2705 else | |
2706 curwin->w_cursor.lnum = curwin->w_botline; | |
2707 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2708 // FALLTHROUGH |
7 | 2709 case NL: |
2710 case CAR: | |
2711 case K_KENTER: | |
2712 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
|
2713 // FALLTHROUGH |
7 | 2714 |
2715 case 't': scroll_cursor_top(0, TRUE); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
2716 redraw_later(UPD_VALID); |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2717 set_fraction(curwin); |
7 | 2718 break; |
2719 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2720 // "z." and "zz": put cursor in middle of screen |
7 | 2721 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
|
2722 // FALLTHROUGH |
7 | 2723 |
2724 case 'z': scroll_cursor_halfway(TRUE); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
2725 redraw_later(UPD_VALID); |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2726 set_fraction(curwin); |
7 | 2727 break; |
2728 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2729 // "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
|
2730 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
|
2731 // 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
|
2732 // bottom of window. |
7 | 2733 if (cap->count0 != 0) |
2734 { | |
2735 scroll_cursor_bot(0, TRUE); | |
2736 curwin->w_cursor.lnum = curwin->w_topline; | |
2737 } | |
2738 else if (curwin->w_topline == 1) | |
2739 curwin->w_cursor.lnum = 1; | |
2740 else | |
2741 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
|
2742 // FALLTHROUGH |
7 | 2743 case '-': |
2744 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
|
2745 // FALLTHROUGH |
7 | 2746 |
2747 case 'b': scroll_cursor_bot(0, TRUE); | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
2748 redraw_later(UPD_VALID); |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2749 set_fraction(curwin); |
7 | 2750 break; |
2751 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2752 // "zH" - scroll screen right half-page |
7 | 2753 case 'H': |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12487
diff
changeset
|
2754 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
|
2755 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2756 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2757 // "zh" - scroll screen to the right |
7 | 2758 case 'h': |
2759 case K_LEFT: | |
2760 if (!curwin->w_p_wrap) | |
2761 { | |
2762 if ((colnr_T)cap->count1 > curwin->w_leftcol) | |
2763 curwin->w_leftcol = 0; | |
2764 else | |
2765 curwin->w_leftcol -= (colnr_T)cap->count1; | |
2766 leftcol_changed(); | |
2767 } | |
2768 break; | |
2769 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2770 // "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
|
2771 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
|
2772 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2773 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2774 // "zl" - scroll screen to the left |
7 | 2775 case 'l': |
2776 case K_RIGHT: | |
2777 if (!curwin->w_p_wrap) | |
2778 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2779 // scroll the window left |
7 | 2780 curwin->w_leftcol += (colnr_T)cap->count1; |
2781 leftcol_changed(); | |
2782 } | |
2783 break; | |
2784 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2785 // "zs" - scroll screen, cursor at the start |
7 | 2786 case 's': if (!curwin->w_p_wrap) |
2787 { | |
2788 #ifdef FEAT_FOLDING | |
2789 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
|
2790 col = 0; // like the cursor is in col 0 |
7 | 2791 else |
2792 #endif | |
2793 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
|
2794 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
|
2795 col -= siso; |
7 | 2796 else |
2797 col = 0; | |
2798 if (curwin->w_leftcol != col) | |
2799 { | |
2800 curwin->w_leftcol = col; | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
2801 redraw_later(UPD_NOT_VALID); |
7 | 2802 } |
2803 } | |
2804 break; | |
2805 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2806 // "ze" - scroll screen, cursor at the end |
7 | 2807 case 'e': if (!curwin->w_p_wrap) |
2808 { | |
2809 #ifdef FEAT_FOLDING | |
2810 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
|
2811 col = 0; // like the cursor is in col 0 |
7 | 2812 else |
2813 #endif | |
2814 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
|
2815 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
|
2816 if ((long)col + siso < n) |
7 | 2817 col = 0; |
2818 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
|
2819 col = col + siso - n + 1; |
7 | 2820 if (curwin->w_leftcol != col) |
2821 { | |
2822 curwin->w_leftcol = col; | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
2823 redraw_later(UPD_NOT_VALID); |
7 | 2824 } |
2825 } | |
2826 break; | |
2827 | |
24752
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
2828 // "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
|
2829 case 'P': |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24731
diff
changeset
|
2830 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
|
2831 break; |
24866
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
2832 // "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
|
2833 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
|
2834 break; |
7 | 2835 #ifdef FEAT_FOLDING |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2836 // "zF": create fold command |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2837 // "zf": create fold operator |
7 | 2838 case 'F': |
2839 case 'f': if (foldManualAllowed(TRUE)) | |
2840 { | |
2841 cap->nchar = 'f'; | |
2842 nv_operator(cap); | |
2843 curwin->w_p_fen = TRUE; | |
2844 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2845 // "zF" is like "zfzf" |
7 | 2846 if (nchar == 'F' && cap->oap->op_type == OP_FOLD) |
2847 { | |
2848 nv_operator(cap); | |
2849 finish_op = TRUE; | |
2850 } | |
2851 } | |
2852 else | |
2853 clearopbeep(cap->oap); | |
2854 break; | |
2855 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2856 // "zd": delete fold at cursor |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2857 // "zD": delete fold at cursor recursively |
7 | 2858 case 'd': |
2859 case 'D': if (foldManualAllowed(FALSE)) | |
2860 { | |
2861 if (VIsual_active) | |
2862 nv_operator(cap); | |
2863 else | |
2864 deleteFold(curwin->w_cursor.lnum, | |
2865 curwin->w_cursor.lnum, nchar == 'D', FALSE); | |
2866 } | |
2867 break; | |
2868 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2869 // "zE": erase all folds |
7 | 2870 case 'E': if (foldmethodIsManual(curwin)) |
2871 { | |
2872 clearFolding(curwin); | |
2873 changed_window_setting(); | |
2874 } | |
2875 else if (foldmethodIsMarker(curwin)) | |
2876 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count, | |
2877 TRUE, FALSE); | |
2878 else | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
2879 emsg(_(e_cannot_erase_folds_with_current_foldmethod)); |
7 | 2880 break; |
2881 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2882 // "zn": fold none: reset 'foldenable' |
7 | 2883 case 'n': curwin->w_p_fen = FALSE; |
2884 break; | |
2885 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2886 // "zN": fold Normal: set 'foldenable' |
7 | 2887 case 'N': curwin->w_p_fen = TRUE; |
2888 break; | |
2889 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2890 // "zi": invert folding: toggle 'foldenable' |
7 | 2891 case 'i': curwin->w_p_fen = !curwin->w_p_fen; |
2892 break; | |
2893 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2894 // "za": open closed fold or close open fold at cursor |
7 | 2895 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) |
2896 openFold(curwin->w_cursor.lnum, cap->count1); | |
2897 else | |
2898 { | |
2899 closeFold(curwin->w_cursor.lnum, cap->count1); | |
2900 curwin->w_p_fen = TRUE; | |
2901 } | |
2902 break; | |
2903 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2904 // "zA": open fold at cursor recursively |
7 | 2905 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) |
2906 openFoldRecurse(curwin->w_cursor.lnum); | |
2907 else | |
2908 { | |
2909 closeFoldRecurse(curwin->w_cursor.lnum); | |
2910 curwin->w_p_fen = TRUE; | |
2911 } | |
2912 break; | |
2913 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2914 // "zo": open fold at cursor or Visual area |
7 | 2915 case 'o': if (VIsual_active) |
2916 nv_operator(cap); | |
2917 else | |
2918 openFold(curwin->w_cursor.lnum, cap->count1); | |
2919 break; | |
2920 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2921 // "zO": open fold recursively |
7 | 2922 case 'O': if (VIsual_active) |
2923 nv_operator(cap); | |
2924 else | |
2925 openFoldRecurse(curwin->w_cursor.lnum); | |
2926 break; | |
2927 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2928 // "zc": close fold at cursor or Visual area |
7 | 2929 case 'c': if (VIsual_active) |
2930 nv_operator(cap); | |
2931 else | |
2932 closeFold(curwin->w_cursor.lnum, cap->count1); | |
2933 curwin->w_p_fen = TRUE; | |
2934 break; | |
2935 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2936 // "zC": close fold recursively |
7 | 2937 case 'C': if (VIsual_active) |
2938 nv_operator(cap); | |
2939 else | |
2940 closeFoldRecurse(curwin->w_cursor.lnum); | |
2941 curwin->w_p_fen = TRUE; | |
2942 break; | |
2943 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2944 // "zv": open folds at the cursor |
7 | 2945 case 'v': foldOpenCursor(); |
2946 break; | |
2947 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2948 // "zx": re-apply 'foldlevel' and open folds at the cursor |
7 | 2949 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
|
2950 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
|
2951 newFoldLevel(); // update right now |
7 | 2952 foldOpenCursor(); |
2953 break; | |
2954 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2955 // "zX": undo manual opens/closes, re-apply 'foldlevel' |
7 | 2956 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
|
2957 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
|
2958 old_fdl = -1; // force an update |
7 | 2959 break; |
2960 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2961 // "zm": fold more |
7 | 2962 case 'm': if (curwin->w_p_fdl > 0) |
6725 | 2963 { |
2964 curwin->w_p_fdl -= cap->count1; | |
2965 if (curwin->w_p_fdl < 0) | |
2966 curwin->w_p_fdl = 0; | |
2967 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2968 old_fdl = -1; // force an update |
7 | 2969 curwin->w_p_fen = TRUE; |
2970 break; | |
2971 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2972 // "zM": close all folds |
7 | 2973 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
|
2974 old_fdl = -1; // force an update |
7 | 2975 curwin->w_p_fen = TRUE; |
2976 break; | |
2977 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2978 // "zr": reduce folding |
6725 | 2979 case 'r': curwin->w_p_fdl += cap->count1; |
2980 { | |
2981 int d = getDeepestNesting(); | |
2982 | |
2983 if (curwin->w_p_fdl >= d) | |
2984 curwin->w_p_fdl = d; | |
2985 } | |
7 | 2986 break; |
2987 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2988 // "zR": open all folds |
7 | 2989 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
|
2990 old_fdl = -1; // force an update |
7 | 2991 break; |
2992 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
2993 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
|
2994 case 'k': // "zk" move to next fold upwards |
7 | 2995 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD, |
2996 cap->count1) == FAIL) | |
2997 clearopbeep(cap->oap); | |
2998 break; | |
2999 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3000 #endif // FEAT_FOLDING |
7 | 3001 |
737 | 3002 #ifdef FEAT_SPELL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3003 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
|
3004 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
|
3005 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
|
3006 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
|
3007 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
|
3008 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
|
3009 return; |
316 | 3010 break; |
323 | 3011 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3012 case '=': // "z=": suggestions for a badly spelled word |
638 | 3013 if (!checkclearop(cap->oap)) |
485 | 3014 spell_suggest((int)cap->count0); |
323 | 3015 break; |
310 | 3016 #endif |
3017 | |
7 | 3018 default: clearopbeep(cap->oap); |
3019 } | |
3020 | |
3021 #ifdef FEAT_FOLDING | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3022 // Redraw when 'foldenable' changed |
7 | 3023 if (old_fen != curwin->w_p_fen) |
3024 { | |
3025 # ifdef FEAT_DIFF | |
3026 win_T *wp; | |
3027 | |
3028 if (foldmethodIsDiff(curwin) && curwin->w_p_scb) | |
3029 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3030 // Adjust 'foldenable' in diff-synced windows. |
7 | 3031 FOR_ALL_WINDOWS(wp) |
3032 { | |
3033 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb) | |
3034 { | |
3035 wp->w_p_fen = curwin->w_p_fen; | |
3036 changed_window_setting_win(wp); | |
3037 } | |
3038 } | |
3039 } | |
3040 # endif | |
3041 changed_window_setting(); | |
3042 } | |
3043 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3044 // Redraw when 'foldlevel' changed. |
7 | 3045 if (old_fdl != curwin->w_p_fdl) |
3046 newFoldLevel(); | |
3047 #endif | |
3048 } | |
3049 | |
3050 #ifdef FEAT_GUI | |
3051 /* | |
3052 * Vertical scrollbar movement. | |
3053 */ | |
3054 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3055 nv_ver_scrollbar(cmdarg_T *cap) |
7 | 3056 { |
3057 if (cap->oap->op_type != OP_NOP) | |
3058 clearopbeep(cap->oap); | |
3059 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3060 // Even if an operator was pending, we still want to scroll |
7 | 3061 gui_do_scroll(); |
3062 } | |
3063 | |
3064 /* | |
3065 * Horizontal scrollbar movement. | |
3066 */ | |
3067 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3068 nv_hor_scrollbar(cmdarg_T *cap) |
7 | 3069 { |
3070 if (cap->oap->op_type != OP_NOP) | |
3071 clearopbeep(cap->oap); | |
3072 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3073 // 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
|
3074 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 3075 } |
3076 #endif | |
3077 | |
690 | 3078 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
685 | 3079 /* |
3080 * Click in GUI tab. | |
3081 */ | |
3082 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3083 nv_tabline(cmdarg_T *cap) |
685 | 3084 { |
3085 if (cap->oap->op_type != OP_NOP) | |
3086 clearopbeep(cap->oap); | |
3087 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3088 // Even if an operator was pending, we still want to jump tabs. |
685 | 3089 goto_tabpage(current_tab); |
3090 } | |
686 | 3091 |
3092 /* | |
3093 * Selected item in tab line menu. | |
3094 */ | |
3095 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3096 nv_tabmenu(cmdarg_T *cap) |
686 | 3097 { |
3098 if (cap->oap->op_type != OP_NOP) | |
3099 clearopbeep(cap->oap); | |
3100 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3101 // Even if an operator was pending, we still want to jump tabs. |
690 | 3102 handle_tabmenu(); |
3103 } | |
3104 | |
3105 /* | |
3106 * Handle selecting an item of the GUI tab line menu. | |
3107 * Used in Normal and Insert mode. | |
3108 */ | |
3109 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3110 handle_tabmenu(void) |
690 | 3111 { |
686 | 3112 switch (current_tabmenu) |
3113 { | |
3114 case TABLINE_MENU_CLOSE: | |
3115 if (current_tab == 0) | |
3116 do_cmdline_cmd((char_u *)"tabclose"); | |
3117 else | |
3118 { | |
3119 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d", | |
3120 current_tab); | |
3121 do_cmdline_cmd(IObuff); | |
3122 } | |
3123 break; | |
3124 | |
3125 case TABLINE_MENU_NEW: | |
6631 | 3126 if (current_tab == 0) |
3127 do_cmdline_cmd((char_u *)"$tabnew"); | |
3128 else | |
3129 { | |
3130 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew", | |
3131 current_tab - 1); | |
3132 do_cmdline_cmd(IObuff); | |
3133 } | |
686 | 3134 break; |
3135 | |
3136 case TABLINE_MENU_OPEN: | |
6631 | 3137 if (current_tab == 0) |
3138 do_cmdline_cmd((char_u *)"browse $tabnew"); | |
3139 else | |
3140 { | |
3141 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew", | |
3142 current_tab - 1); | |
3143 do_cmdline_cmd(IObuff); | |
3144 } | |
686 | 3145 break; |
3146 } | |
3147 } | |
685 | 3148 #endif |
3149 | |
7 | 3150 /* |
3151 * "Q" command. | |
3152 */ | |
3153 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3154 nv_exmode(cmdarg_T *cap) |
7 | 3155 { |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3156 // Ignore 'Q' in Visual mode, just give a beep. |
7 | 3157 if (VIsual_active) |
6949 | 3158 vim_beep(BO_EX); |
5735 | 3159 else if (!checkclearop(cap->oap)) |
7 | 3160 do_exmode(FALSE); |
3161 } | |
3162 | |
3163 /* | |
3164 * Handle a ":" command. | |
3165 */ | |
3166 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3167 nv_colon(cmdarg_T *cap) |
7 | 3168 { |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3169 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
|
3170 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
|
3171 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
|
3172 || 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
|
3173 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
|
3174 |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3175 if (VIsual_active && !is_cmdkey) |
7 | 3176 nv_operator(cap); |
3177 else | |
3178 { | |
3179 if (cap->oap->op_type != OP_NOP) | |
3180 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3181 // Using ":" as a movement is characterwise exclusive. |
7 | 3182 cap->oap->motion_type = MCHAR; |
3183 cap->oap->inclusive = FALSE; | |
3184 } | |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
3185 else if (cap->count0 && !is_cmdkey) |
7 | 3186 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3187 // translate "count:" into ":.,.+(count - 1)" |
7 | 3188 stuffcharReadbuff('.'); |
3189 if (cap->count0 > 1) | |
3190 { | |
3191 stuffReadbuff((char_u *)",.+"); | |
3192 stuffnumReadbuff((long)cap->count0 - 1L); | |
3193 } | |
3194 } | |
3195 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3196 // When typing, don't type below an old message |
7 | 3197 if (KeyTyped) |
3198 compute_cmdrow(); | |
3199 | |
3200 old_p_im = p_im; | |
3201 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3202 // 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
|
3203 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
|
3204 if (is_cmdkey) |
a9eeb18e749c
patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
3205 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
|
3206 else |
a9eeb18e749c
patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
3207 cmd_result = do_cmdline(NULL, getexline, NULL, flags); |
7 | 3208 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3209 // If 'insertmode' changed, enter or exit Insert mode |
7 | 3210 if (p_im != old_p_im) |
3211 { | |
3212 if (p_im) | |
3213 restart_edit = 'i'; | |
3214 else | |
3215 restart_edit = 0; | |
3216 } | |
3217 | |
4256 | 3218 if (cmd_result == FAIL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3219 // The Ex command failed, do not execute the operator. |
4256 | 3220 clearop(cap->oap); |
3221 else if (cap->oap->op_type != OP_NOP | |
7 | 3222 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count |
3223 || cap->oap->start.col > | |
4256 | 3224 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum)) |
3225 || did_emsg | |
3226 )) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3227 // The start of the operator has become invalid by the Ex command. |
7 | 3228 clearopbeep(cap->oap); |
3229 } | |
3230 } | |
3231 | |
3232 /* | |
3233 * Handle CTRL-G command. | |
3234 */ | |
3235 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3236 nv_ctrlg(cmdarg_T *cap) |
7 | 3237 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3238 if (VIsual_active) // toggle Selection/Visual mode |
7 | 3239 { |
3240 VIsual_select = !VIsual_select; | |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
3241 may_trigger_modechanged(); |
7 | 3242 showmode(); |
3243 } | |
5735 | 3244 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
|
3245 // print full name if count given or :cd used |
7 | 3246 fileinfo((int)cap->count0, FALSE, TRUE); |
3247 } | |
3248 | |
3249 /* | |
3250 * Handle CTRL-H <Backspace> command. | |
3251 */ | |
3252 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3253 nv_ctrlh(cmdarg_T *cap) |
7 | 3254 { |
3255 if (VIsual_active && VIsual_select) | |
3256 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3257 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode |
7 | 3258 v_visop(cap); |
3259 } | |
3260 else | |
3261 nv_left(cap); | |
3262 } | |
3263 | |
3264 /* | |
3265 * CTRL-L: clear screen and redraw. | |
3266 */ | |
3267 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3268 nv_clear(cmdarg_T *cap) |
7 | 3269 { |
3270 if (!checkclearop(cap->oap)) | |
3271 { | |
3272 #ifdef FEAT_SYN_HL | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3273 // 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
|
3274 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
|
3275 # ifdef FEAT_RELTIME |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3276 { |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3277 win_T *wp; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3278 |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3279 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
|
3280 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
|
3281 } |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3282 # endif |
7 | 3283 #endif |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
3284 redraw_later(UPD_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
|
3285 #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
|
3286 # 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
|
3287 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
|
3288 # 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
|
3289 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
|
3290 #endif |
7 | 3291 } |
3292 } | |
3293 | |
3294 /* | |
3295 * CTRL-O: In Select mode: switch to Visual mode for one command. | |
3296 * Otherwise: Go to older pcmark. | |
3297 */ | |
3298 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3299 nv_ctrlo(cmdarg_T *cap) |
7 | 3300 { |
3301 if (VIsual_active && VIsual_select) | |
3302 { | |
3303 VIsual_select = FALSE; | |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
3304 may_trigger_modechanged(); |
7 | 3305 showmode(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3306 restart_VIsual_select = 2; // restart Select mode later |
7 | 3307 } |
3308 else | |
3309 { | |
3310 cap->count1 = -cap->count1; | |
3311 nv_pcmark(cap); | |
3312 } | |
3313 } | |
3314 | |
3315 /* | |
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
|
3316 * 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
|
3317 * not named. |
7 | 3318 */ |
3319 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3320 nv_hat(cmdarg_T *cap) |
7 | 3321 { |
3322 if (!checkclearopq(cap->oap)) | |
3323 (void)buflist_getfile((int)cap->count0, (linenr_T)0, | |
3324 GETF_SETMARK|GETF_ALT, FALSE); | |
3325 } | |
3326 | |
3327 /* | |
3328 * "Z" commands. | |
3329 */ | |
3330 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3331 nv_Zet(cmdarg_T *cap) |
7 | 3332 { |
3333 if (!checkclearopq(cap->oap)) | |
3334 { | |
3335 switch (cap->nchar) | |
3336 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3337 // "ZZ": equivalent to ":x". |
7 | 3338 case 'Z': do_cmdline_cmd((char_u *)"x"); |
3339 break; | |
3340 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3341 // "ZQ": equivalent to ":q!" (Elvis compatible). |
7 | 3342 case 'Q': do_cmdline_cmd((char_u *)"q!"); |
3343 break; | |
3344 | |
3345 default: clearopbeep(cap->oap); | |
3346 } | |
3347 } | |
3348 } | |
3349 | |
3350 /* | |
3351 * Call nv_ident() as if "c1" was used, with "c2" as next character. | |
3352 */ | |
3353 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3354 do_nv_ident(int c1, int c2) |
7 | 3355 { |
3356 oparg_T oa; | |
3357 cmdarg_T ca; | |
3358 | |
3359 clear_oparg(&oa); | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
3360 CLEAR_FIELD(ca); |
7 | 3361 ca.oap = &oa; |
3362 ca.cmdchar = c1; | |
3363 ca.nchar = c2; | |
3364 nv_ident(&ca); | |
3365 } | |
3366 | |
3367 /* | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3368 * '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
|
3369 * cursor. |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3370 */ |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3371 static int |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3372 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
|
3373 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
|
3374 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
|
3375 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
|
3376 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
|
3377 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
|
3378 int n, |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3379 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
|
3380 unsigned buflen) |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3381 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3382 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
|
3383 int isman; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3384 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
|
3385 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3386 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
|
3387 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3388 // 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
|
3389 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
|
3390 return n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3391 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3392 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3393 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
|
3394 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3395 // '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
|
3396 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
|
3397 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
|
3398 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3399 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
|
3400 STRCAT(buf, " "); |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3401 return n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3402 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3403 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3404 // 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
|
3405 // 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
|
3406 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
|
3407 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3408 ++ptr; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3409 --n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3410 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3411 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
|
3412 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3413 // 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
|
3414 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
|
3415 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
|
3416 *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
|
3417 return 0; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3418 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3419 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3420 // 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
|
3421 // 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
|
3422 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
|
3423 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
|
3424 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
|
3425 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
|
3426 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3427 STRCAT(buf, "! "); |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3428 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
|
3429 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
|
3430 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3431 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
|
3432 STRCAT(buf, " "); |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3433 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
|
3434 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3435 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
|
3436 STRCAT(buf, " "); |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3437 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3438 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3439 *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
|
3440 return n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3441 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3442 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3443 /* |
7 | 3444 * Handle the commands that use the word under the cursor. |
3445 * [g] CTRL-] :ta to current identifier | |
3446 * [g] 'K' run program for current identifier | |
3447 * [g] '*' / to current identifier or string | |
3448 * [g] '#' ? to current identifier or string | |
3449 * g ']' :tselect for current identifier | |
3450 */ | |
3451 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3452 nv_ident(cmdarg_T *cap) |
7 | 3453 { |
3454 char_u *ptr = NULL; | |
3455 char_u *buf; | |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3456 unsigned buflen; |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
3457 char_u *newbuf; |
7 | 3458 char_u *p; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3459 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
|
3460 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
|
3461 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
|
3462 int n = 0; // init for GCC |
7 | 3463 int cmdchar; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3464 int g_cmd; // "g" command |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3465 int tag_cmd = FALSE; |
7 | 3466 char_u *aux_ptr; |
3467 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3468 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]" |
7 | 3469 { |
3470 cmdchar = cap->nchar; | |
3471 g_cmd = TRUE; | |
3472 } | |
3473 else | |
3474 { | |
3475 cmdchar = cap->cmdchar; | |
3476 g_cmd = FALSE; | |
3477 } | |
3478 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3479 if (cmdchar == POUND) // the pound sign, '#' for English keyboards |
7 | 3480 cmdchar = '#'; |
3481 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3482 // The "]", "CTRL-]" and "K" commands accept an argument in Visual mode. |
7 | 3483 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K') |
3484 { | |
3485 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL) | |
3486 return; | |
3487 if (checkclearopq(cap->oap)) | |
3488 return; | |
3489 } | |
3490 | |
3491 if (ptr == NULL && (n = find_ident_under_cursor(&ptr, | |
3492 (cmdchar == '*' || cmdchar == '#') | |
3493 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0) | |
3494 { | |
3495 clearop(cap->oap); | |
3496 return; | |
3497 } | |
3498 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3499 // 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
|
3500 // 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
|
3501 // and some numbers. |
7 | 3502 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp); |
3503 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0 | |
3504 || 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
|
3505 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
|
3506 { |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26804
diff
changeset
|
3507 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
|
3508 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
|
3509 } |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3510 kp_ex = (*kp == ':'); |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
3511 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
|
3512 buf = alloc(buflen); |
7 | 3513 if (buf == NULL) |
3514 return; | |
3515 buf[0] = NUL; | |
3516 | |
3517 switch (cmdchar) | |
3518 { | |
3519 case '*': | |
3520 case '#': | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3521 // 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
|
3522 // 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
|
3523 // 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
|
3524 // it was. |
7 | 3525 setpcmark(); |
3526 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline()); | |
3527 | |
3528 if (!g_cmd && vim_iswordp(ptr)) | |
3529 STRCPY(buf, "\\<"); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3530 no_smartcase = TRUE; // don't use 'smartcase' now |
7 | 3531 break; |
3532 | |
3533 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
|
3534 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
|
3535 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
|
3536 return; |
7 | 3537 break; |
3538 | |
3539 case ']': | |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3540 tag_cmd = TRUE; |
7 | 3541 #ifdef FEAT_CSCOPE |
3542 if (p_cst) | |
3543 STRCPY(buf, "cstag "); | |
3544 else | |
3545 #endif | |
3546 STRCPY(buf, "ts "); | |
3547 break; | |
3548 | |
3549 default: | |
2112
6b5d641bcdd4
updated for version 7.2.395
Bram Moolenaar <bram@zimbu.org>
parents:
2049
diff
changeset
|
3550 tag_cmd = TRUE; |
7 | 3551 if (curbuf->b_help) |
3552 STRCPY(buf, "he! "); | |
3553 else | |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3554 { |
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3555 if (g_cmd) |
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3556 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
|
3557 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
|
3558 STRCPY(buf, "ta "); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3559 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
|
3560 sprintf((char *)buf, ":%ldta ", cap->count0); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3561 } |
7 | 3562 } |
3563 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3564 // Now grab the chars in the identifier |
1712 | 3565 if (cmdchar == 'K' && !kp_help) |
3566 { | |
1728 | 3567 ptr = vim_strnsave(ptr, n); |
10330
71ca6a16e818
commit https://github.com/vim/vim/commit/426f3754223c8ff8a1bc51d6ba1eba11e8982ebc
Christian Brabandt <cb@256bit.org>
parents:
10251
diff
changeset
|
3568 if (kp_ex) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3569 // 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
|
3570 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
|
3571 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3572 // 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
|
3573 p = vim_strsave_shellescape(ptr, TRUE, TRUE); |
1728 | 3574 vim_free(ptr); |
1712 | 3575 if (p == NULL) |
3576 { | |
3577 vim_free(buf); | |
3578 return; | |
3579 } | |
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
|
3580 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
|
3581 if (newbuf == NULL) |
1712 | 3582 { |
3583 vim_free(buf); | |
3584 vim_free(p); | |
3585 return; | |
3586 } | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
3587 buf = newbuf; |
1712 | 3588 STRCAT(buf, p); |
3589 vim_free(p); | |
3590 } | |
7 | 3591 else |
1712 | 3592 { |
3593 if (cmdchar == '*') | |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3594 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\"); |
1712 | 3595 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
|
3596 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\"); |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
3597 else if (tag_cmd) |
2603 | 3598 { |
3599 if (curbuf->b_help) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3600 // ":help" handles unescaped argument |
2603 | 3601 aux_ptr = (char_u *)""; |
3602 else | |
3603 aux_ptr = (char_u *)"\\|\"\n["; | |
3604 } | |
1712 | 3605 else |
3606 aux_ptr = (char_u *)"\\|\"\n*?["; | |
3607 | |
3608 p = buf + STRLEN(buf); | |
3609 while (n-- > 0) | |
3610 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3611 // put a backslash before \ and some others |
1712 | 3612 if (vim_strchr(aux_ptr, *ptr) != NULL) |
3613 *p++ = '\\'; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3614 // 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
|
3615 // bytes of that character. |
1712 | 3616 if (has_mbyte) |
3617 { | |
3618 int i; | |
3619 int len = (*mb_ptr2len)(ptr) - 1; | |
3620 | |
3621 for (i = 0; i < len && n >= 1; ++i, --n) | |
3622 *p++ = *ptr++; | |
3623 } | |
3624 *p++ = *ptr++; | |
3625 } | |
3626 *p = NUL; | |
3627 } | |
7 | 3628 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3629 // Execute the command. |
7 | 3630 if (cmdchar == '*' || cmdchar == '#') |
3631 { | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3632 if (!g_cmd && (has_mbyte |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3633 ? 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
|
3634 : vim_iswordc(ptr[-1]))) |
7 | 3635 STRCAT(buf, "\\>"); |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17520
diff
changeset
|
3636 |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17520
diff
changeset
|
3637 // put pattern in search history |
2024 | 3638 init_history(); |
7 | 3639 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
|
3640 |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3641 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL); |
7 | 3642 } |
3643 else | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3644 { |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3645 g_tag_at_cursor = TRUE; |
7 | 3646 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
|
3647 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
|
3648 } |
7 | 3649 |
3650 vim_free(buf); | |
3651 } | |
3652 | |
3653 /* | |
3654 * Get visually selected text, within one line only. | |
3655 * Returns FAIL if more than one line selected. | |
3656 */ | |
344 | 3657 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3658 get_visual_text( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3659 cmdarg_T *cap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3660 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
|
3661 int *lenp) // return: length of selected text |
7 | 3662 { |
3663 if (VIsual_mode != 'V') | |
3664 unadjust_for_sel(); | |
3665 if (VIsual.lnum != curwin->w_cursor.lnum) | |
3666 { | |
344 | 3667 if (cap != NULL) |
3668 clearopbeep(cap->oap); | |
7 | 3669 return FAIL; |
3670 } | |
3671 if (VIsual_mode == 'V') | |
3672 { | |
3673 *pp = ml_get_curline(); | |
3674 *lenp = (int)STRLEN(*pp); | |
3675 } | |
3676 else | |
3677 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
3678 if (LT_POS(curwin->w_cursor, VIsual)) |
7 | 3679 { |
3680 *pp = ml_get_pos(&curwin->w_cursor); | |
3681 *lenp = VIsual.col - curwin->w_cursor.col + 1; | |
3682 } | |
3683 else | |
3684 { | |
3685 *pp = ml_get_pos(&VIsual); | |
3686 *lenp = curwin->w_cursor.col - VIsual.col + 1; | |
3687 } | |
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
|
3688 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
|
3689 *lenp = 0; |
28867
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3690 if (*lenp > 0) |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3691 { |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3692 if (has_mbyte) |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3693 // Correct the length to include all bytes of the last |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3694 // character. |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3695 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1; |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3696 else if ((*pp)[*lenp - 1] == NUL) |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3697 // Do not include a trailing NUL. |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3698 *lenp -= 1; |
987d29ca36a5
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
3699 } |
7 | 3700 } |
3701 reset_VIsual_and_resel(); | |
3702 return OK; | |
3703 } | |
3704 | |
3705 /* | |
3706 * CTRL-T: backwards in tag stack | |
3707 */ | |
3708 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3709 nv_tagpop(cmdarg_T *cap) |
7 | 3710 { |
3711 if (!checkclearopq(cap->oap)) | |
3712 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE); | |
3713 } | |
3714 | |
3715 /* | |
3716 * Handle scrolling command 'H', 'L' and 'M'. | |
3717 */ | |
3718 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3719 nv_scroll(cmdarg_T *cap) |
7 | 3720 { |
3721 int used = 0; | |
3722 long n; | |
3723 #ifdef FEAT_FOLDING | |
3724 linenr_T lnum; | |
3725 #endif | |
3726 int half; | |
3727 | |
3728 cap->oap->motion_type = MLINE; | |
3729 setpcmark(); | |
3730 | |
3731 if (cap->cmdchar == 'L') | |
3732 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3733 validate_botline(); // make sure curwin->w_botline is valid |
7 | 3734 curwin->w_cursor.lnum = curwin->w_botline - 1; |
3735 if (cap->count1 - 1 >= curwin->w_cursor.lnum) | |
3736 curwin->w_cursor.lnum = 1; | |
3737 else | |
9 | 3738 { |
3739 #ifdef FEAT_FOLDING | |
3740 if (hasAnyFolding(curwin)) | |
3741 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3742 // Count a fold for one screen line. |
9 | 3743 for (n = cap->count1 - 1; n > 0 |
3744 && curwin->w_cursor.lnum > curwin->w_topline; --n) | |
3745 { | |
3746 (void)hasFolding(curwin->w_cursor.lnum, | |
3747 &curwin->w_cursor.lnum, NULL); | |
3748 --curwin->w_cursor.lnum; | |
3749 } | |
3750 } | |
3751 else | |
3752 #endif | |
3753 curwin->w_cursor.lnum -= cap->count1 - 1; | |
3754 } | |
7 | 3755 } |
3756 else | |
3757 { | |
3758 if (cap->cmdchar == 'M') | |
3759 { | |
3760 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3761 // Don't count filler lines above the window. |
7 | 3762 used -= diff_check_fill(curwin, curwin->w_topline) |
3763 - curwin->w_topfill; | |
3764 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3765 validate_botline(); // make sure w_empty_rows is valid |
7 | 3766 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2; |
3767 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n) | |
3768 { | |
3769 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3770 // 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
|
3771 // line" and half to be "above the next line". |
7 | 3772 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline |
3773 + n) / 2 >= half) | |
3774 { | |
3775 --n; | |
3776 break; | |
3777 } | |
3778 #endif | |
3779 used += plines(curwin->w_topline + n); | |
3780 if (used >= half) | |
3781 break; | |
3782 #ifdef FEAT_FOLDING | |
3783 if (hasFolding(curwin->w_topline + n, NULL, &lnum)) | |
3784 n = lnum - curwin->w_topline; | |
3785 #endif | |
3786 } | |
3787 if (n > 0 && used > curwin->w_height) | |
3788 --n; | |
3789 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3790 else // (cap->cmdchar == 'H') |
9 | 3791 { |
7 | 3792 n = cap->count1 - 1; |
9 | 3793 #ifdef FEAT_FOLDING |
3794 if (hasAnyFolding(curwin)) | |
3795 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3796 // Count a fold for one screen line. |
9 | 3797 lnum = curwin->w_topline; |
3798 while (n-- > 0 && lnum < curwin->w_botline - 1) | |
3799 { | |
7009 | 3800 (void)hasFolding(lnum, NULL, &lnum); |
9 | 3801 ++lnum; |
3802 } | |
3803 n = lnum - curwin->w_topline; | |
3804 } | |
3805 #endif | |
3806 } | |
7 | 3807 curwin->w_cursor.lnum = curwin->w_topline + n; |
3808 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
3809 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
3810 } | |
3811 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3812 // 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
|
3813 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
|
3814 cursor_correct(); |
7 | 3815 beginline(BL_SOL | BL_FIX); |
3816 } | |
3817 | |
3818 /* | |
3819 * Cursor right commands. | |
3820 */ | |
3821 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3822 nv_right(cmdarg_T *cap) |
7 | 3823 { |
3824 long n; | |
5735 | 3825 int past_line; |
7 | 3826 |
180 | 3827 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) |
3828 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3829 // <C-Right> and <S-Right> move a word or WORD right |
180 | 3830 if (mod_mask & MOD_MASK_CTRL) |
3831 cap->arg = TRUE; | |
3832 nv_wordcmd(cap); | |
3833 return; | |
3834 } | |
3835 | |
7 | 3836 cap->oap->motion_type = MCHAR; |
3837 cap->oap->inclusive = FALSE; | |
5735 | 3838 past_line = (VIsual_active && *p_sel != 'o'); |
3839 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3840 // 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
|
3841 // are (theoretically) infinitely long. |
7 | 3842 if (virtual_active()) |
5735 | 3843 past_line = 0; |
7 | 3844 |
3845 for (n = cap->count1; n > 0; --n) | |
3846 { | |
5735 | 3847 if ((!past_line && oneright() == FAIL) |
3848 || (past_line && *ml_get_cursor() == NUL) | |
1877 | 3849 ) |
7 | 3850 { |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
3851 // <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
|
3852 // '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
|
3853 // CURS_RIGHT wraps to next line if 'whichwrap' has '>'. |
7 | 3854 if ( ((cap->cmdchar == ' ' |
3855 && vim_strchr(p_ww, 's') != NULL) | |
3856 || (cap->cmdchar == 'l' | |
3857 && vim_strchr(p_ww, 'l') != NULL) | |
229 | 3858 || (cap->cmdchar == K_RIGHT |
7 | 3859 && vim_strchr(p_ww, '>') != NULL)) |
3860 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
3861 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3862 // 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
|
3863 // 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
|
3864 // included, move to next line after that |
714 | 3865 if ( cap->oap->op_type != OP_NOP |
7 | 3866 && !cap->oap->inclusive |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
3867 && !LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 3868 cap->oap->inclusive = TRUE; |
3869 else | |
3870 { | |
3871 ++curwin->w_cursor.lnum; | |
3872 curwin->w_cursor.col = 0; | |
3873 curwin->w_cursor.coladd = 0; | |
3874 curwin->w_set_curswant = TRUE; | |
3875 cap->oap->inclusive = FALSE; | |
3876 } | |
3877 continue; | |
3878 } | |
3879 if (cap->oap->op_type == OP_NOP) | |
3880 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3881 // Only beep and flush if not moved at all |
7 | 3882 if (n == cap->count1) |
3883 beep_flush(); | |
3884 } | |
3885 else | |
3886 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
3887 if (!LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 3888 cap->oap->inclusive = TRUE; |
3889 } | |
3890 break; | |
3891 } | |
5735 | 3892 else if (past_line) |
7 | 3893 { |
3894 curwin->w_set_curswant = TRUE; | |
3895 if (virtual_active()) | |
3896 oneright(); | |
3897 else | |
5735 | 3898 { |
7 | 3899 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
|
3900 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor()); |
7 | 3901 else |
3902 ++curwin->w_cursor.col; | |
3903 } | |
3904 } | |
3905 } | |
3906 #ifdef FEAT_FOLDING | |
3907 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped | |
3908 && cap->oap->op_type == OP_NOP) | |
3909 foldOpenCursor(); | |
3910 #endif | |
3911 } | |
3912 | |
3913 /* | |
3914 * Cursor left commands. | |
3915 * | |
3916 * Returns TRUE when operator end should not be adjusted. | |
3917 */ | |
3918 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3919 nv_left(cmdarg_T *cap) |
7 | 3920 { |
3921 long n; | |
3922 | |
180 | 3923 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) |
3924 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3925 // <C-Left> and <S-Left> move a word or WORD left |
180 | 3926 if (mod_mask & MOD_MASK_CTRL) |
3927 cap->arg = 1; | |
3928 nv_bck_word(cap); | |
3929 return; | |
3930 } | |
3931 | |
7 | 3932 cap->oap->motion_type = MCHAR; |
3933 cap->oap->inclusive = FALSE; | |
3934 for (n = cap->count1; n > 0; --n) | |
3935 { | |
3936 if (oneleft() == FAIL) | |
3937 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3938 // <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
|
3939 // '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
|
3940 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'. |
7 | 3941 if ( (((cap->cmdchar == K_BS |
3942 || cap->cmdchar == Ctrl_H) | |
3943 && vim_strchr(p_ww, 'b') != NULL) | |
3944 || (cap->cmdchar == 'h' | |
3945 && vim_strchr(p_ww, 'h') != NULL) | |
229 | 3946 || (cap->cmdchar == K_LEFT |
7 | 3947 && vim_strchr(p_ww, '<') != NULL)) |
3948 && curwin->w_cursor.lnum > 1) | |
3949 { | |
3950 --(curwin->w_cursor.lnum); | |
3951 coladvance((colnr_T)MAXCOL); | |
3952 curwin->w_set_curswant = TRUE; | |
3953 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3954 // 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
|
3955 // 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
|
3956 // 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
|
3957 // Don't adjust op_end now, otherwise it won't work. |
7 | 3958 if ( (cap->oap->op_type == OP_DELETE |
3959 || 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
|
3960 && !LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 3961 { |
5682 | 3962 char_u *cp = ml_get_cursor(); |
3963 | |
3964 if (*cp != NUL) | |
3965 { | |
3966 if (has_mbyte) | |
3967 curwin->w_cursor.col += (*mb_ptr2len)(cp); | |
3968 else | |
3969 ++curwin->w_cursor.col; | |
3970 } | |
7 | 3971 cap->retval |= CA_NO_ADJ_OP_END; |
3972 } | |
3973 continue; | |
3974 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3975 // Only beep and flush if not moved at all |
7 | 3976 else if (cap->oap->op_type == OP_NOP && n == cap->count1) |
3977 beep_flush(); | |
3978 break; | |
3979 } | |
3980 } | |
3981 #ifdef FEAT_FOLDING | |
3982 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped | |
3983 && cap->oap->op_type == OP_NOP) | |
3984 foldOpenCursor(); | |
3985 #endif | |
3986 } | |
3987 | |
3988 /* | |
3989 * Cursor up commands. | |
3990 * cap->arg is TRUE for "-": Move cursor to first non-blank. | |
3991 */ | |
3992 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3993 nv_up(cmdarg_T *cap) |
7 | 3994 { |
180 | 3995 if (mod_mask & MOD_MASK_SHIFT) |
3996 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
3997 // <S-Up> is page up |
180 | 3998 cap->arg = BACKWARD; |
3999 nv_page(cap); | |
4000 } | |
4001 else | |
4002 { | |
4003 cap->oap->motion_type = MLINE; | |
4004 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) | |
4005 clearopbeep(cap->oap); | |
4006 else if (cap->arg) | |
4007 beginline(BL_WHITE | BL_FIX); | |
4008 } | |
7 | 4009 } |
4010 | |
4011 /* | |
4012 * Cursor down commands. | |
4013 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank. | |
4014 */ | |
4015 static void | |
10192
758f3d5a463d
commit https://github.com/vim/vim/commit/1b010058235fb803c1d4f42a02d2883921be8ef4
Christian Brabandt <cb@256bit.org>
parents:
10154
diff
changeset
|
4016 nv_down(cmdarg_T *cap) |
7 | 4017 { |
180 | 4018 if (mod_mask & MOD_MASK_SHIFT) |
4019 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4020 // <S-Down> is page down |
180 | 4021 cap->arg = FORWARD; |
4022 nv_page(cap); | |
4023 } | |
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
|
4024 #if defined(FEAT_QUICKFIX) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4025 // 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
|
4026 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
|
4027 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
|
4028 #endif |
180 | 4029 else |
7 | 4030 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4031 // In the cmdline window a <CR> executes the command. |
170 | 4032 if (cmdwin_type != 0 && cap->cmdchar == CAR) |
7 | 4033 cmdwin_result = CAR; |
4034 else | |
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
|
4035 #ifdef FEAT_JOB_CHANNEL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4036 // 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
|
4037 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
|
4038 && 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
|
4039 { |
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
|
4040 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
|
4041 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
|
4042 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
|
4043 } |
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
|
4044 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
|
4045 #endif |
7 | 4046 { |
4047 cap->oap->motion_type = MLINE; | |
4048 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) | |
4049 clearopbeep(cap->oap); | |
4050 else if (cap->arg) | |
4051 beginline(BL_WHITE | BL_FIX); | |
4052 } | |
4053 } | |
4054 } | |
4055 | |
4056 /* | |
4057 * Grab the file name under the cursor and edit it. | |
4058 */ | |
4059 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4060 nv_gotofile(cmdarg_T *cap) |
7 | 4061 { |
4062 char_u *ptr; | |
681 | 4063 linenr_T lnum = -1; |
7 | 4064 |
29002
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
4065 if (check_text_locked(cap->oap)) |
7 | 4066 return; |
819 | 4067 if (curbuf_locked()) |
4068 { | |
4069 clearop(cap->oap); | |
4070 return; | |
4071 } | |
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
|
4072 #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
|
4073 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
|
4074 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
|
4075 #endif |
7 | 4076 |
681 | 4077 ptr = grab_file_name(cap->count1, &lnum); |
7 | 4078 |
4079 if (ptr != NULL) | |
4080 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4081 // 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
|
4082 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf)) |
7009 | 4083 (void)autowrite(curbuf, FALSE); |
7 | 4084 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
|
4085 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
|
4086 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
|
4087 && cap->nchar == 'F' && lnum >= 0) |
681 | 4088 { |
4089 curwin->w_cursor.lnum = lnum; | |
4090 check_cursor_lnum(); | |
4091 beginline(BL_SOL | BL_FIX); | |
4092 } | |
7 | 4093 vim_free(ptr); |
4094 } | |
4095 else | |
4096 clearop(cap->oap); | |
4097 } | |
4098 | |
4099 /* | |
4100 * <End> command: to end of current line or last line. | |
4101 */ | |
4102 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4103 nv_end(cmdarg_T *cap) |
7 | 4104 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4105 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line |
180 | 4106 { |
4107 cap->arg = TRUE; | |
7 | 4108 nv_goto(cap); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4109 cap->count1 = 1; // to end of current line |
7 | 4110 } |
4111 nv_dollar(cap); | |
4112 } | |
4113 | |
4114 /* | |
4115 * Handle the "$" command. | |
4116 */ | |
4117 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4118 nv_dollar(cmdarg_T *cap) |
7 | 4119 { |
4120 cap->oap->motion_type = MCHAR; | |
4121 cap->oap->inclusive = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4122 // 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
|
4123 // 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
|
4124 // Otherwise, send it to the end of the line. |
7 | 4125 if (!virtual_active() || gchar_cursor() != NUL |
4126 || 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
|
4127 curwin->w_curswant = MAXCOL; // so we stay at the end |
7 | 4128 if (cursor_down((long)(cap->count1 - 1), |
4129 cap->oap->op_type == OP_NOP) == FAIL) | |
4130 clearopbeep(cap->oap); | |
4131 #ifdef FEAT_FOLDING | |
4132 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4133 foldOpenCursor(); | |
4134 #endif | |
4135 } | |
4136 | |
4137 /* | |
4138 * Implementation of '?' and '/' commands. | |
4139 * If cap->arg is TRUE don't set PC mark. | |
4140 */ | |
4141 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4142 nv_search(cmdarg_T *cap) |
7 | 4143 { |
4144 oparg_T *oap = cap->oap; | |
10098
72e4b7f90465
commit https://github.com/vim/vim/commit/dda933d06c06c2792bd686d059f6ad19191ad30b
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4145 pos_T save_cursor = curwin->w_cursor; |
7 | 4146 |
4147 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13) | |
4148 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4149 // Translate "g??" to "g?g?" |
7 | 4150 cap->cmdchar = 'g'; |
4151 cap->nchar = '?'; | |
4152 nv_operator(cap); | |
4153 return; | |
4154 } | |
4155 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4156 // 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
|
4157 // start position. |
26804
34f1b7d6974a
patch 8.2.3930: getcmdline() argument has a misleading type
Bram Moolenaar <Bram@vim.org>
parents:
26749
diff
changeset
|
4158 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, 0); |
7 | 4159 |
4160 if (cap->searchbuf == NULL) | |
4161 { | |
4162 clearop(oap); | |
4163 return; | |
4164 } | |
4165 | |
6620 | 4166 (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
|
4167 (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
|
4168 ? 0 : SEARCH_MARK, NULL); |
7 | 4169 } |
4170 | |
28399
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4171 |
7 | 4172 /* |
4173 * Handle "N" and "n" commands. | |
4174 * cap->arg is SEARCH_REV for "N", 0 for "n". | |
4175 */ | |
4176 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4177 nv_next(cmdarg_T *cap) |
7 | 4178 { |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4179 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
|
4180 int wrapped = FALSE; |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4181 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
|
4182 |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4183 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor)) |
6620 | 4184 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4185 // 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
|
4186 // 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
|
4187 // in the buffer: Repeat with count + 1. |
6620 | 4188 cap->count1 += 1; |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4189 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL); |
6620 | 4190 cap->count1 -= 1; |
4191 } | |
28399
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4192 |
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4193 #ifdef FEAT_SEARCH_EXTRA |
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4194 // Redraw the window to refresh the highlighted matches. |
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4195 if (i > 0 && p_hls && !no_hlsearch) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4196 redraw_later(UPD_SOME_VALID); |
28399
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4197 #endif |
7 | 4198 } |
4199 | |
4200 /* | |
4201 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat). | |
4202 * Uses only cap->count1 and cap->oap from "cap". | |
6620 | 4203 * Return 0 for failure, 1 for found, 2 for found and line offset added. |
4204 */ | |
4205 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4206 normal_search( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4207 cmdarg_T *cap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4208 int dir, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4209 char_u *pat, |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4210 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
|
4211 int *wrapped) |
7 | 4212 { |
4213 int i; | |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4214 searchit_arg_T sia; |
28401
d1982178f787
patch 8.2.4725: unused variable in tiny build
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
4215 #ifdef FEAT_SEARCH_EXTRA |
28399
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4216 pos_T prev_cursor = curwin->w_cursor; |
28401
d1982178f787
patch 8.2.4725: unused variable in tiny build
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
4217 #endif |
7 | 4218 |
4219 cap->oap->motion_type = MCHAR; | |
4220 cap->oap->inclusive = FALSE; | |
4221 cap->oap->use_reg_one = TRUE; | |
4222 curwin->w_set_curswant = TRUE; | |
4223 | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19681
diff
changeset
|
4224 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
|
4225 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
|
4226 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
|
4227 if (wrapped != NULL) |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
4228 *wrapped = sia.sa_wrapped; |
7 | 4229 if (i == 0) |
4230 clearop(cap->oap); | |
4231 else | |
4232 { | |
4233 if (i == 2) | |
4234 cap->oap->motion_type = MLINE; | |
4235 curwin->w_cursor.coladd = 0; | |
4236 #ifdef FEAT_FOLDING | |
4237 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) | |
4238 foldOpenCursor(); | |
4239 #endif | |
4240 } | |
28399
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4241 #ifdef FEAT_SEARCH_EXTRA |
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4242 // Redraw the window to refresh the highlighted matches. |
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4243 if (!EQUAL_POS(curwin->w_cursor, prev_cursor) && p_hls && !no_hlsearch) |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
4244 redraw_later(UPD_SOME_VALID); |
28399
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28397
diff
changeset
|
4245 #endif |
7 | 4246 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4247 // "/$" 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
|
4248 // correct that here |
7 | 4249 check_cursor(); |
6620 | 4250 return i; |
7 | 4251 } |
4252 | |
4253 /* | |
4254 * Character search commands. | |
4255 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for | |
4256 * ',' and FALSE for ';'. | |
4257 * cap->nchar is NUL for ',' and ';' (repeat the search) | |
4258 */ | |
4259 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4260 nv_csearch(cmdarg_T *cap) |
7 | 4261 { |
4262 int t_cmd; | |
4263 | |
4264 if (cap->cmdchar == 't' || cap->cmdchar == 'T') | |
4265 t_cmd = TRUE; | |
4266 else | |
4267 t_cmd = FALSE; | |
4268 | |
4269 cap->oap->motion_type = MCHAR; | |
4270 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL) | |
4271 clearopbeep(cap->oap); | |
4272 else | |
4273 { | |
4274 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
|
4275 // Include a Tab for "tx" and for "dfx". |
7 | 4276 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD |
4277 && (t_cmd || cap->oap->op_type != OP_NOP)) | |
4278 { | |
4279 colnr_T scol, ecol; | |
4280 | |
4281 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol); | |
4282 curwin->w_cursor.coladd = ecol - scol; | |
4283 } | |
4284 else | |
4285 curwin->w_cursor.coladd = 0; | |
4286 adjust_for_sel(cap); | |
4287 #ifdef FEAT_FOLDING | |
4288 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4289 foldOpenCursor(); | |
4290 #endif | |
4291 } | |
4292 } | |
4293 | |
4294 /* | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4295 * "[{", "[(", "]}" 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
|
4296 * "[#", "]#": 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
|
4297 * "[/", "[*", "]/", "]*": 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
|
4298 * "[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
|
4299 * "[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
|
4300 */ |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4301 static void |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4302 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
|
4303 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4304 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
|
4305 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
|
4306 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
|
4307 long n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4308 int findc; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4309 int c; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4310 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4311 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
|
4312 cap->nchar = '/'; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4313 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
|
4314 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
|
4315 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4316 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
|
4317 findc = '{'; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4318 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4319 findc = '}'; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4320 n = 9999; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4321 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4322 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4323 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4324 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
|
4325 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
|
4326 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4327 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
|
4328 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4329 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
|
4330 (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
|
4331 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4332 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
|
4333 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4334 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
|
4335 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
|
4336 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4337 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4338 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
|
4339 break; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4340 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4341 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
|
4342 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
|
4343 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
|
4344 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4345 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
|
4346 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4347 // 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
|
4348 // 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
|
4349 // 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
|
4350 // 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
|
4351 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
|
4352 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4353 // 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
|
4354 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
|
4355 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4356 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
|
4357 // 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
|
4358 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
|
4359 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4360 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
|
4361 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
|
4362 if (norm) |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4363 --n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4364 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4365 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4366 pos = NULL; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4367 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
|
4368 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4369 for (;;) |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4370 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4371 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
|
4372 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4373 // 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
|
4374 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
|
4375 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
|
4376 n = 0; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4377 break; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4378 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4379 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
|
4380 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
|
4381 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4382 // 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
|
4383 // 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
|
4384 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
|
4385 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4386 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
|
4387 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
|
4388 n = 0; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4389 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4390 // 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
|
4391 // 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
|
4392 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
|
4393 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4394 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
|
4395 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
|
4396 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4397 // 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
|
4398 else if ((pos = findmatchlimit(cap->oap, findc, |
27428
3f8a57b8c7d8
patch 8.2.4242: put in Visual mode cannot be repeated
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4399 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, |
3f8a57b8c7d8
patch 8.2.4242: put in Visual mode cannot be repeated
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4400 0)) == NULL) |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4401 n = 0; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4402 else |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4403 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
|
4404 break; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4405 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4406 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4407 --n; |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4408 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4409 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
|
4410 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
|
4411 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
|
4412 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4413 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
|
4414 { |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4415 setpcmark(); |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4416 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
|
4417 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
|
4418 #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
|
4419 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
|
4420 && 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
|
4421 foldOpenCursor(); |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4422 #endif |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4423 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4424 } |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4425 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4426 /* |
7 | 4427 * "[" and "]" commands. |
4428 * cap->arg is BACKWARD for "[" and FORWARD for "]". | |
4429 */ | |
4430 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4431 nv_brackets(cmdarg_T *cap) |
7 | 4432 { |
4433 pos_T prev_pos; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4434 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
|
4435 pos_T old_pos; // cursor position before command |
7 | 4436 int flag; |
4437 long n; | |
4438 | |
4439 cap->oap->motion_type = MCHAR; | |
4440 cap->oap->inclusive = FALSE; | |
4441 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
|
4442 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error. |
7 | 4443 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4444 // "[f" or "]f" : Edit file under the cursor (same as "gf") |
7 | 4445 if (cap->nchar == 'f') |
4446 nv_gotofile(cap); | |
4447 else | |
4448 | |
4449 #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
|
4450 // 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
|
4451 // 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
|
4452 // |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4453 // 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
|
4454 // 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
|
4455 // 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
|
4456 // define "]d" "[d" "]D" "[D" "]^D" "[^D" |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27484
diff
changeset
|
4457 if (vim_strchr((char_u *)"iI\011dD\004", cap->nchar) != NULL) |
7 | 4458 { |
4459 char_u *ptr; | |
4460 int len; | |
4461 | |
4462 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) | |
4463 clearop(cap->oap); | |
4464 else | |
4465 { | |
29004
c7e3721ec88f
patch 8.2.5024: using freed memory with "]d"
Bram Moolenaar <Bram@vim.org>
parents:
29002
diff
changeset
|
4466 // Make a copy, if the line was changed it will be freed. |
c7e3721ec88f
patch 8.2.5024: using freed memory with "]d"
Bram Moolenaar <Bram@vim.org>
parents:
29002
diff
changeset
|
4467 ptr = vim_strnsave(ptr, len); |
c7e3721ec88f
patch 8.2.5024: using freed memory with "]d"
Bram Moolenaar <Bram@vim.org>
parents:
29002
diff
changeset
|
4468 if (ptr == NULL) |
c7e3721ec88f
patch 8.2.5024: using freed memory with "]d"
Bram Moolenaar <Bram@vim.org>
parents:
29002
diff
changeset
|
4469 return; |
c7e3721ec88f
patch 8.2.5024: using freed memory with "]d"
Bram Moolenaar <Bram@vim.org>
parents:
29002
diff
changeset
|
4470 |
7 | 4471 find_pattern_in_path(ptr, 0, len, TRUE, |
4472 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE, | |
4473 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY, | |
4474 cap->count1, | |
4475 isupper(cap->nchar) ? ACTION_SHOW_ALL : | |
4476 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO, | |
4477 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1, | |
4478 (linenr_T)MAXLNUM); | |
29004
c7e3721ec88f
patch 8.2.5024: using freed memory with "]d"
Bram Moolenaar <Bram@vim.org>
parents:
29002
diff
changeset
|
4479 vim_free(ptr); |
7 | 4480 curwin->w_set_curswant = TRUE; |
4481 } | |
4482 } | |
4483 else | |
4484 #endif | |
4485 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4486 // "[{", "[(", "]}" 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
|
4487 // "[#", "]#": 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
|
4488 // "[/", "[*", "]/", "]*": 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
|
4489 // "[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
|
4490 // "[M" or "]M" search for prev/next end of (Java) method. |
7 | 4491 if ( (cap->cmdchar == '[' |
4492 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL) | |
4493 || (cap->cmdchar == ']' | |
4494 && 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
|
4495 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
|
4496 |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4497 // "[[", "[]", "]]" and "][": move to start or end of function |
7 | 4498 else if (cap->nchar == '[' || cap->nchar == ']') |
4499 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4500 if (cap->nchar == cap->cmdchar) // "]]" or "[[" |
7 | 4501 flag = '{'; |
4502 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4503 flag = '}'; // "][" or "[]" |
7 | 4504 |
4505 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
|
4506 // 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
|
4507 // we also stop at '}'. |
503 | 4508 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag, |
7 | 4509 (cap->oap->op_type != OP_NOP |
4510 && cap->arg == FORWARD && flag == '{'))) | |
4511 clearopbeep(cap->oap); | |
4512 else | |
4513 { | |
4514 if (cap->oap->op_type == OP_NOP) | |
4515 beginline(BL_WHITE | BL_FIX); | |
4516 #ifdef FEAT_FOLDING | |
4517 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4518 foldOpenCursor(); | |
4519 #endif | |
4520 } | |
4521 } | |
4522 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4523 // "[p", "[P", "]P" and "]p": put with indent adjustment |
7 | 4524 else if (cap->nchar == 'p' || cap->nchar == 'P') |
4525 { | |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
4526 nv_put_opt(cap, TRUE); |
7 | 4527 } |
4528 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4529 // "['", "[`", "]'" and "]`": jump to next mark |
7 | 4530 else if (cap->nchar == '\'' || cap->nchar == '`') |
4531 { | |
4532 pos = &curwin->w_cursor; | |
4533 for (n = cap->count1; n > 0; --n) | |
4534 { | |
4535 prev_pos = *pos; | |
4536 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD, | |
4537 cap->nchar == '\''); | |
4538 if (pos == NULL) | |
4539 break; | |
4540 } | |
4541 if (pos == NULL) | |
4542 pos = &prev_pos; | |
4543 nv_cursormark(cap, cap->nchar == '\'', pos); | |
4544 } | |
4545 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4546 // [ 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
|
4547 // 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
|
4548 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE) |
7 | 4549 { |
4550 (void)do_mouse(cap->oap, cap->nchar, | |
4551 (cap->cmdchar == ']') ? FORWARD : BACKWARD, | |
4552 cap->count1, PUT_FIXINDENT); | |
4553 } | |
4554 | |
4555 #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
|
4556 // "[z" and "]z": move to start or end of open fold. |
7 | 4557 else if (cap->nchar == 'z') |
4558 { | |
4559 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD, | |
4560 cap->count1) == FAIL) | |
4561 clearopbeep(cap->oap); | |
4562 } | |
4563 #endif | |
4564 | |
4565 #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
|
4566 // "[c" and "]c": move to next or previous diff-change. |
7 | 4567 else if (cap->nchar == 'c') |
4568 { | |
4569 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD, | |
4570 cap->count1) == FAIL) | |
4571 clearopbeep(cap->oap); | |
4572 } | |
4573 #endif | |
4574 | |
737 | 4575 #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
|
4576 // "[s", "[S", "]s" and "]S": move to next spell error. |
236 | 4577 else if (cap->nchar == 's' || cap->nchar == 'S') |
4578 { | |
249 | 4579 setpcmark(); |
4580 for (n = 0; n < cap->count1; ++n) | |
498 | 4581 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD, |
4582 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0) | |
249 | 4583 { |
4584 clearopbeep(cap->oap); | |
4585 break; | |
4586 } | |
13088
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
4587 else |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
4588 curwin->w_set_curswant = TRUE; |
819 | 4589 # ifdef FEAT_FOLDING |
4590 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) | |
4591 foldOpenCursor(); | |
4592 # endif | |
236 | 4593 } |
4594 #endif | |
4595 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4596 // Not a valid cap->nchar. |
7 | 4597 else |
4598 clearopbeep(cap->oap); | |
4599 } | |
4600 | |
4601 /* | |
4602 * Handle Normal mode "%" command. | |
4603 */ | |
4604 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4605 nv_percent(cmdarg_T *cap) |
7 | 4606 { |
4607 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
|
4608 #if defined(FEAT_FOLDING) |
7 | 4609 linenr_T lnum = curwin->w_cursor.lnum; |
4610 #endif | |
4611 | |
4612 cap->oap->inclusive = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4613 if (cap->count0) // {cnt}% : goto {cnt} percentage in file |
7 | 4614 { |
4615 if (cap->count0 > 100) | |
4616 clearopbeep(cap->oap); | |
4617 else | |
4618 { | |
4619 cap->oap->motion_type = MLINE; | |
4620 setpcmark(); | |
24010
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4621 // 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
|
4622 // 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
|
4623 // 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
|
4624 // to avoid overflows. |
c9849ed1ce05
patch 8.2.2547: "%" command not accurate for big files
Bram Moolenaar <Bram@vim.org>
parents:
23762
diff
changeset
|
4625 if (curbuf->b_ml.ml_line_count >= 21474836) |
7 | 4626 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L) |
4627 / 100L * cap->count0; | |
4628 else | |
4629 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count * | |
4630 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
|
4631 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
|
4632 curwin->w_cursor.lnum = 1; |
7 | 4633 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
4634 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4635 beginline(BL_SOL | BL_FIX); | |
4636 } | |
4637 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4638 else // "%" : go to matching paren |
7 | 4639 { |
4640 cap->oap->motion_type = MCHAR; | |
4641 cap->oap->use_reg_one = TRUE; | |
4642 if ((pos = findmatch(cap->oap, NUL)) == NULL) | |
4643 clearopbeep(cap->oap); | |
4644 else | |
4645 { | |
4646 setpcmark(); | |
4647 curwin->w_cursor = *pos; | |
4648 curwin->w_set_curswant = TRUE; | |
4649 curwin->w_cursor.coladd = 0; | |
4650 adjust_for_sel(cap); | |
4651 } | |
4652 } | |
4653 #ifdef FEAT_FOLDING | |
4654 if (cap->oap->op_type == OP_NOP | |
4655 && lnum != curwin->w_cursor.lnum | |
4656 && (fdo_flags & FDO_PERCENT) | |
4657 && KeyTyped) | |
4658 foldOpenCursor(); | |
4659 #endif | |
4660 } | |
4661 | |
4662 /* | |
4663 * Handle "(" and ")" commands. | |
4664 * cap->arg is BACKWARD for "(" and FORWARD for ")". | |
4665 */ | |
4666 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4667 nv_brace(cmdarg_T *cap) |
7 | 4668 { |
4669 cap->oap->motion_type = MCHAR; | |
4670 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
|
4671 // The motion used to be inclusive for "(", but that is not what Vi does. |
620 | 4672 cap->oap->inclusive = FALSE; |
7 | 4673 curwin->w_set_curswant = TRUE; |
4674 | |
4675 if (findsent(cap->arg, cap->count1) == FAIL) | |
4676 clearopbeep(cap->oap); | |
4677 else | |
4678 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4679 // Don't leave the cursor on the NUL past end of line. |
1505 | 4680 adjust_cursor(cap->oap); |
7 | 4681 curwin->w_cursor.coladd = 0; |
4682 #ifdef FEAT_FOLDING | |
4683 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4684 foldOpenCursor(); | |
4685 #endif | |
4686 } | |
4687 } | |
4688 | |
4689 /* | |
4690 * "m" command: Mark a position. | |
4691 */ | |
4692 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4693 nv_mark(cmdarg_T *cap) |
7 | 4694 { |
4695 if (!checkclearop(cap->oap)) | |
4696 { | |
4697 if (setmark(cap->nchar) == FAIL) | |
4698 clearopbeep(cap->oap); | |
4699 } | |
4700 } | |
4701 | |
4702 /* | |
4703 * "{" and "}" commands. | |
4704 * cmd->arg is BACKWARD for "{" and FORWARD for "}". | |
4705 */ | |
4706 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4707 nv_findpar(cmdarg_T *cap) |
7 | 4708 { |
4709 cap->oap->motion_type = MCHAR; | |
4710 cap->oap->inclusive = FALSE; | |
4711 cap->oap->use_reg_one = TRUE; | |
4712 curwin->w_set_curswant = TRUE; | |
503 | 4713 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE)) |
7 | 4714 clearopbeep(cap->oap); |
4715 else | |
4716 { | |
4717 curwin->w_cursor.coladd = 0; | |
4718 #ifdef FEAT_FOLDING | |
4719 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) | |
4720 foldOpenCursor(); | |
4721 #endif | |
4722 } | |
4723 } | |
4724 | |
4725 /* | |
4726 * "u" command: Undo or make lower case. | |
4727 */ | |
4728 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4729 nv_undo(cmdarg_T *cap) |
7 | 4730 { |
5735 | 4731 if (cap->oap->op_type == OP_LOWER || VIsual_active) |
7 | 4732 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4733 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" |
7 | 4734 cap->cmdchar = 'g'; |
4735 cap->nchar = 'u'; | |
4736 nv_operator(cap); | |
4737 } | |
4738 else | |
4739 nv_kundo(cap); | |
4740 } | |
4741 | |
4742 /* | |
4743 * <Undo> command. | |
4744 */ | |
4745 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4746 nv_kundo(cmdarg_T *cap) |
7 | 4747 { |
4748 if (!checkclearopq(cap->oap)) | |
4749 { | |
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
|
4750 #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
|
4751 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
|
4752 { |
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
|
4753 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
|
4754 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
|
4755 } |
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
|
4756 #endif |
7 | 4757 u_undo((int)cap->count1); |
4758 curwin->w_set_curswant = TRUE; | |
4759 } | |
4760 } | |
4761 | |
4762 /* | |
4763 * Handle the "r" command. | |
4764 */ | |
4765 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4766 nv_replace(cmdarg_T *cap) |
7 | 4767 { |
4768 char_u *ptr; | |
4769 int had_ctrl_v; | |
4770 long n; | |
4771 | |
4772 if (checkclearop(cap->oap)) | |
4773 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
|
4774 #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
|
4775 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
|
4776 { |
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
|
4777 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
|
4778 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
|
4779 } |
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
|
4780 #endif |
7 | 4781 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4782 // get another character |
7 | 4783 if (cap->nchar == Ctrl_V) |
4784 { | |
4785 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
|
4786 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
|
4787 // Don't redo a multibyte character with CTRL-V. |
7 | 4788 if (cap->nchar > DEL) |
4789 had_ctrl_v = NUL; | |
4790 } | |
4791 else | |
4792 had_ctrl_v = NUL; | |
4793 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4794 // Abort if the character is a special key. |
1343 | 4795 if (IS_SPECIAL(cap->nchar)) |
4796 { | |
4797 clearopbeep(cap->oap); | |
4798 return; | |
4799 } | |
4800 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4801 // Visual mode "r" |
7 | 4802 if (VIsual_active) |
4803 { | |
1797 | 4804 if (got_int) |
4805 reset_VIsual(); | |
5428 | 4806 if (had_ctrl_v) |
4807 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4808 // 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
|
4809 // 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
|
4810 if (cap->nchar == CAR) |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
4811 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
|
4812 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
|
4813 cap->nchar = REPLACE_NL_NCHAR; |
5428 | 4814 } |
7 | 4815 nv_operator(cap); |
4816 return; | |
4817 } | |
4818 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4819 // Break tabs, etc. |
7 | 4820 if (virtual_active()) |
4821 { | |
4822 if (u_save_cursor() == FAIL) | |
4823 return; | |
4824 if (gchar_cursor() == NUL) | |
4825 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4826 // Add extra space and put the cursor on the first one. |
7 | 4827 coladvance_force((colnr_T)(getviscol() + cap->count1)); |
4828 curwin->w_cursor.col -= cap->count1; | |
4829 } | |
4830 else if (gchar_cursor() == TAB) | |
4831 coladvance_force(getviscol()); | |
4832 } | |
4833 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4834 // Abort if not enough characters to replace. |
7 | 4835 ptr = ml_get_cursor(); |
1343 | 4836 if (STRLEN(ptr) < (unsigned)cap->count1 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
4837 || (has_mbyte && mb_charlen(ptr) < cap->count1)) |
7 | 4838 { |
4839 clearopbeep(cap->oap); | |
4840 return; | |
4841 } | |
4842 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4843 // 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
|
4844 // '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
|
4845 // 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
|
4846 // CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC). |
7 | 4847 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta)) |
4848 { | |
4849 stuffnumReadbuff(cap->count1); | |
4850 stuffcharReadbuff('R'); | |
4851 stuffcharReadbuff('\t'); | |
4852 stuffcharReadbuff(ESC); | |
4853 return; | |
4854 } | |
4855 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4856 // save line for undo |
7 | 4857 if (u_save_cursor() == FAIL) |
4858 return; | |
4859 | |
4860 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n')) | |
4861 { | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4862 // 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
|
4863 // 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
|
4864 // 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
|
4865 // 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
|
4866 // 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
|
4867 // 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
|
4868 (void)del_chars(cap->count1, FALSE); // delete the characters |
7 | 4869 stuffcharReadbuff('\r'); |
4870 stuffcharReadbuff(ESC); | |
4871 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4872 // Give 'r' to edit(), to get the redo command right. |
7 | 4873 invoke_edit(cap, TRUE, 'r', FALSE); |
4874 } | |
4875 else | |
4876 { | |
4877 prep_redo(cap->oap->regname, cap->count1, | |
4878 NUL, 'r', NUL, had_ctrl_v, cap->nchar); | |
4879 | |
4880 curbuf->b_op_start = curwin->w_cursor; | |
4881 if (has_mbyte) | |
4882 { | |
4883 int old_State = State; | |
4884 | |
4885 if (cap->ncharC1 != 0) | |
4886 AppendCharToRedobuff(cap->ncharC1); | |
4887 if (cap->ncharC2 != 0) | |
4888 AppendCharToRedobuff(cap->ncharC2); | |
4889 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4890 // 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
|
4891 // 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
|
4892 // composing characters for utf-8. |
7 | 4893 for (n = cap->count1; n > 0; --n) |
4894 { | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
4895 State = MODE_REPLACE; |
3501 | 4896 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) |
4897 { | |
4898 int c = ins_copychar(curwin->w_cursor.lnum | |
4899 + (cap->nchar == Ctrl_Y ? -1 : 1)); | |
4900 if (c != NUL) | |
4901 ins_char(c); | |
4902 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4903 // will be decremented further down |
3501 | 4904 ++curwin->w_cursor.col; |
4905 } | |
4906 else | |
4907 ins_char(cap->nchar); | |
7 | 4908 State = old_State; |
4909 if (cap->ncharC1 != 0) | |
4910 ins_char(cap->ncharC1); | |
4911 if (cap->ncharC2 != 0) | |
4912 ins_char(cap->ncharC2); | |
4913 } | |
4914 } | |
4915 else | |
4916 { | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4917 // Replace the characters within one line. |
7 | 4918 for (n = cap->count1; n > 0; --n) |
4919 { | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
4920 // 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
|
4921 // 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
|
4922 // At the same time we let know that the line will be changed. |
3501 | 4923 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) |
4924 { | |
4925 int c = ins_copychar(curwin->w_cursor.lnum | |
4926 + (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
|
4927 |
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
4928 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE); |
3501 | 4929 if (c != NUL) |
4930 ptr[curwin->w_cursor.col] = c; | |
4931 } | |
4932 else | |
25786
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
4933 { |
ec62e0764ffa
patch 8.2.3428: using freed memory when replacing
Bram Moolenaar <Bram@vim.org>
parents:
25398
diff
changeset
|
4934 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE); |
3501 | 4935 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
|
4936 } |
7 | 4937 if (p_sm && msg_silent == 0) |
4938 showmatch(cap->nchar); | |
4939 ++curwin->w_cursor.col; | |
4940 } | |
4941 #ifdef FEAT_NETBEANS_INTG | |
2210 | 4942 if (netbeans_active()) |
7 | 4943 { |
2210 | 4944 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1); |
7 | 4945 |
33 | 4946 netbeans_removed(curbuf, curwin->w_cursor.lnum, start, |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27418
diff
changeset
|
4947 cap->count1); |
7 | 4948 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start, |
33 | 4949 &ptr[start], (int)cap->count1); |
7 | 4950 } |
4951 #endif | |
4952 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4953 // mark the buffer as changed and prepare for displaying |
7 | 4954 changed_bytes(curwin->w_cursor.lnum, |
4955 (colnr_T)(curwin->w_cursor.col - cap->count1)); | |
4956 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4957 --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
|
4958 // 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
|
4959 // character, move two characters left |
7 | 4960 if (has_mbyte) |
4961 mb_adjust_cursor(); | |
4962 curbuf->b_op_end = curwin->w_cursor; | |
4963 curwin->w_set_curswant = TRUE; | |
4964 set_last_insert(cap->nchar); | |
4965 } | |
4966 } | |
4967 | |
4968 /* | |
4969 * 'o': Exchange start and end of Visual area. | |
4970 * 'O': same, but in block mode exchange left and right corners. | |
4971 */ | |
4972 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4973 v_swap_corners(int cmdchar) |
7 | 4974 { |
4975 pos_T old_cursor; | |
4976 colnr_T left, right; | |
4977 | |
4978 if (cmdchar == 'O' && VIsual_mode == Ctrl_V) | |
4979 { | |
4980 old_cursor = curwin->w_cursor; | |
4981 getvcols(curwin, &old_cursor, &VIsual, &left, &right); | |
4982 curwin->w_cursor.lnum = VIsual.lnum; | |
4983 coladvance(left); | |
4984 VIsual = curwin->w_cursor; | |
4985 | |
4986 curwin->w_cursor.lnum = old_cursor.lnum; | |
4987 curwin->w_curswant = right; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
4988 // '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
|
4989 // right one column |
7 | 4990 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e') |
4991 ++curwin->w_curswant; | |
4992 coladvance(curwin->w_curswant); | |
4993 if (curwin->w_cursor.col == old_cursor.col | |
4994 && (!virtual_active() | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
4995 || curwin->w_cursor.coladd == old_cursor.coladd)) |
7 | 4996 { |
4997 curwin->w_cursor.lnum = VIsual.lnum; | |
4998 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e') | |
4999 ++right; | |
5000 coladvance(right); | |
5001 VIsual = curwin->w_cursor; | |
5002 | |
5003 curwin->w_cursor.lnum = old_cursor.lnum; | |
5004 coladvance(left); | |
5005 curwin->w_curswant = left; | |
5006 } | |
5007 } | |
5008 else | |
5009 { | |
5010 old_cursor = curwin->w_cursor; | |
5011 curwin->w_cursor = VIsual; | |
5012 VIsual = old_cursor; | |
5013 curwin->w_set_curswant = TRUE; | |
5014 } | |
5015 } | |
5016 | |
5017 /* | |
5018 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE). | |
5019 */ | |
5020 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5021 nv_Replace(cmdarg_T *cap) |
7 | 5022 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5023 if (VIsual_active) // "R" is replace lines |
7 | 5024 { |
5025 cap->cmdchar = 'c'; | |
5026 cap->nchar = NUL; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5027 VIsual_mode_orig = VIsual_mode; // remember original area for gv |
7 | 5028 VIsual_mode = 'V'; |
5029 nv_operator(cap); | |
5030 } | |
5735 | 5031 else if (!checkclearopq(cap->oap)) |
7 | 5032 { |
5033 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
|
5034 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 5035 else |
5036 { | |
5037 if (virtual_active()) | |
5038 coladvance(getviscol()); | |
5039 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE); | |
5040 } | |
5041 } | |
5042 } | |
5043 | |
5044 /* | |
5045 * "gr". | |
5046 */ | |
5047 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5048 nv_vreplace(cmdarg_T *cap) |
7 | 5049 { |
5050 if (VIsual_active) | |
5051 { | |
5052 cap->cmdchar = 'r'; | |
5053 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
|
5054 nv_replace(cap); // Do same as "r" in Visual mode for now |
7 | 5055 } |
5735 | 5056 else if (!checkclearopq(cap->oap)) |
7 | 5057 { |
5058 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
|
5059 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 5060 else |
5061 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5062 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
|
5063 cap->extra_char = get_literal(FALSE); |
7 | 5064 stuffcharReadbuff(cap->extra_char); |
5065 stuffcharReadbuff(ESC); | |
5066 if (virtual_active()) | |
5067 coladvance(getviscol()); | |
5068 invoke_edit(cap, TRUE, 'v', FALSE); | |
5069 } | |
5070 } | |
5071 } | |
5072 | |
5073 /* | |
5074 * Swap case for "~" command, when it does not work like an operator. | |
5075 */ | |
5076 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5077 n_swapchar(cmdarg_T *cap) |
7 | 5078 { |
5079 long n; | |
5080 pos_T startpos; | |
5081 int did_change = 0; | |
5082 #ifdef FEAT_NETBEANS_INTG | |
5083 pos_T pos; | |
5084 char_u *ptr; | |
5085 int count; | |
5086 #endif | |
5087 | |
5088 if (checkclearopq(cap->oap)) | |
5089 return; | |
5090 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
5091 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL) |
7 | 5092 { |
5093 clearopbeep(cap->oap); | |
5094 return; | |
5095 } | |
5096 | |
5097 prep_redo_cmd(cap); | |
5098 | |
5099 if (u_save_cursor() == FAIL) | |
5100 return; | |
5101 | |
5102 startpos = curwin->w_cursor; | |
5103 #ifdef FEAT_NETBEANS_INTG | |
5104 pos = startpos; | |
5105 #endif | |
5106 for (n = cap->count1; n > 0; --n) | |
5107 { | |
5108 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor); | |
5109 inc_cursor(); | |
5110 if (gchar_cursor() == NUL) | |
5111 { | |
5112 if (vim_strchr(p_ww, '~') != NULL | |
5113 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
5114 { | |
5115 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5116 if (netbeans_active()) |
7 | 5117 { |
5118 if (did_change) | |
5119 { | |
5120 ptr = ml_get(pos.lnum); | |
835 | 5121 count = (int)STRLEN(ptr) - pos.col; |
33 | 5122 netbeans_removed(curbuf, pos.lnum, pos.col, |
5123 (long)count); | |
29340
fba9e366ced4
patch 9.0.0013: reproducing memory access errors can be difficult
Bram Moolenaar <Bram@vim.org>
parents:
29179
diff
changeset
|
5124 // line may have been flushed, get it again |
fba9e366ced4
patch 9.0.0013: reproducing memory access errors can be difficult
Bram Moolenaar <Bram@vim.org>
parents:
29179
diff
changeset
|
5125 ptr = ml_get(pos.lnum); |
7 | 5126 netbeans_inserted(curbuf, pos.lnum, pos.col, |
33 | 5127 &ptr[pos.col], count); |
7 | 5128 } |
5129 pos.col = 0; | |
5130 pos.lnum++; | |
5131 } | |
5132 #endif | |
5133 ++curwin->w_cursor.lnum; | |
5134 curwin->w_cursor.col = 0; | |
5135 if (n > 1) | |
5136 { | |
5137 if (u_savesub(curwin->w_cursor.lnum) == FAIL) | |
5138 break; | |
5139 u_clearline(); | |
5140 } | |
5141 } | |
5142 else | |
5143 break; | |
5144 } | |
5145 } | |
5146 #ifdef FEAT_NETBEANS_INTG | |
2210 | 5147 if (did_change && netbeans_active()) |
7 | 5148 { |
5149 ptr = ml_get(pos.lnum); | |
5150 count = curwin->w_cursor.col - pos.col; | |
33 | 5151 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count); |
5152 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count); | |
7 | 5153 } |
5154 #endif | |
5155 | |
5156 | |
5157 check_cursor(); | |
5158 curwin->w_set_curswant = TRUE; | |
5159 if (did_change) | |
5160 { | |
5161 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1, | |
5162 0L); | |
5163 curbuf->b_op_start = startpos; | |
5164 curbuf->b_op_end = curwin->w_cursor; | |
5165 if (curbuf->b_op_end.col > 0) | |
5166 --curbuf->b_op_end.col; | |
5167 } | |
5168 } | |
5169 | |
5170 /* | |
5171 * Move cursor to mark. | |
5172 */ | |
5173 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5174 nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos) |
7 | 5175 { |
5176 if (check_mark(pos) == FAIL) | |
5177 clearop(cap->oap); | |
5178 else | |
5179 { | |
5180 if (cap->cmdchar == '\'' | |
5181 || cap->cmdchar == '`' | |
5182 || cap->cmdchar == '[' | |
5183 || cap->cmdchar == ']') | |
5184 setpcmark(); | |
5185 curwin->w_cursor = *pos; | |
5186 if (flag) | |
5187 beginline(BL_WHITE | BL_FIX); | |
5188 else | |
5189 check_cursor(); | |
5190 } | |
5191 cap->oap->motion_type = flag ? MLINE : MCHAR; | |
5192 if (cap->cmdchar == '`') | |
5193 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
|
5194 cap->oap->inclusive = FALSE; // ignored if not MCHAR |
7 | 5195 curwin->w_set_curswant = TRUE; |
5196 } | |
5197 | |
5198 /* | |
5199 * Handle commands that are operators in Visual mode. | |
5200 */ | |
5201 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5202 v_visop(cmdarg_T *cap) |
7 | 5203 { |
5204 static char_u trans[] = "YyDdCcxdXdAAIIrr"; | |
5205 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5206 // 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
|
5207 // the end of the line, and "C" replaces till EOL |
7 | 5208 if (isupper(cap->cmdchar)) |
5209 { | |
5210 if (VIsual_mode != Ctrl_V) | |
4213 | 5211 { |
5212 VIsual_mode_orig = VIsual_mode; | |
7 | 5213 VIsual_mode = 'V'; |
4213 | 5214 } |
7 | 5215 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D') |
5216 curwin->w_curswant = MAXCOL; | |
5217 } | |
5218 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1); | |
5219 nv_operator(cap); | |
5220 } | |
5221 | |
5222 /* | |
5223 * "s" and "S" commands. | |
5224 */ | |
5225 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5226 nv_subst(cmdarg_T *cap) |
7 | 5227 { |
13298
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5228 #ifdef FEAT_TERMINAL |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
23165
diff
changeset
|
5229 // 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
|
5230 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
|
5231 return; |
a88c5e12b860
patch 8.0.1523: cannot write and read terminal screendumps
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5232 #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
|
5233 #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
|
5234 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
|
5235 { |
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
|
5236 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
|
5237 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
|
5238 } |
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
|
5239 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5240 if (VIsual_active) // "vs" and "vS" are the same as "vc" |
7 | 5241 { |
5242 if (cap->cmdchar == 'S') | |
4213 | 5243 { |
5244 VIsual_mode_orig = VIsual_mode; | |
7 | 5245 VIsual_mode = 'V'; |
4213 | 5246 } |
7 | 5247 cap->cmdchar = 'c'; |
5248 nv_operator(cap); | |
5249 } | |
5250 else | |
5251 nv_optrans(cap); | |
5252 } | |
5253 | |
5254 /* | |
5255 * Abbreviated commands. | |
5256 */ | |
5257 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5258 nv_abbrev(cmdarg_T *cap) |
7 | 5259 { |
5260 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
|
5261 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
|
5262 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5263 // in Visual mode these commands are operators |
7 | 5264 if (VIsual_active) |
5265 v_visop(cap); | |
5266 else | |
5267 nv_optrans(cap); | |
5268 } | |
5269 | |
5270 /* | |
5271 * Translate a command into another command. | |
5272 */ | |
5273 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5274 nv_optrans(cmdarg_T *cap) |
7 | 5275 { |
5276 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh", | |
5277 (char_u *)"d$", (char_u *)"c$", | |
5278 (char_u *)"cl", (char_u *)"cc", | |
5279 (char_u *)"yy", (char_u *)":s\r"}; | |
5280 static char_u *str = (char_u *)"xXDCsSY&"; | |
5281 | |
5282 if (!checkclearopq(cap->oap)) | |
5283 { | |
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
|
5284 // 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
|
5285 // either, because "2." should also not use the count. |
164 | 5286 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL) |
5287 { | |
5288 cap->oap->start = curwin->w_cursor; | |
5289 cap->oap->op_type = OP_DELETE; | |
1490 | 5290 #ifdef FEAT_EVAL |
5291 set_op_var(OP_DELETE); | |
5292 #endif | |
164 | 5293 cap->count1 = 1; |
5294 nv_dollar(cap); | |
5295 finish_op = TRUE; | |
5296 ResetRedobuff(); | |
5297 AppendCharToRedobuff('D'); | |
5298 } | |
5299 else | |
5300 { | |
5301 if (cap->count0) | |
5302 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
|
5303 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]); |
164 | 5304 } |
7 | 5305 } |
5306 cap->opcount = 0; | |
5307 } | |
5308 | |
5309 /* | |
5310 * "'" and "`" commands. Also for "g'" and "g`". | |
5311 * cap->arg is TRUE for "'" and "g'". | |
5312 */ | |
5313 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5314 nv_gomark(cmdarg_T *cap) |
7 | 5315 { |
5316 pos_T *pos; | |
5317 int c; | |
5318 #ifdef FEAT_FOLDING | |
4017 | 5319 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
|
5320 int old_KeyTyped = KeyTyped; // getting file may reset it |
7 | 5321 #endif |
5322 | |
5323 if (cap->cmdchar == 'g') | |
5324 c = cap->extra_char; | |
5325 else | |
5326 c = cap->nchar; | |
5327 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
|
5328 if (pos == (pos_T *)-1) // jumped to other file |
7 | 5329 { |
5330 if (cap->arg) | |
5331 { | |
5332 check_cursor_lnum(); | |
5333 beginline(BL_WHITE | BL_FIX); | |
5334 } | |
5335 else | |
5336 check_cursor(); | |
5337 } | |
5338 else | |
5339 nv_cursormark(cap, cap->arg, pos); | |
5340 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5341 // May need to clear the coladd that a mark includes. |
7 | 5342 if (!virtual_active()) |
5343 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
|
5344 check_cursor_col(); |
7 | 5345 #ifdef FEAT_FOLDING |
5346 if (cap->oap->op_type == OP_NOP | |
4057 | 5347 && pos != NULL |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
5348 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos)) |
7 | 5349 && (fdo_flags & FDO_MARK) |
5350 && old_KeyTyped) | |
5351 foldOpenCursor(); | |
5352 #endif | |
5353 } | |
5354 | |
5355 /* | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5356 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands. |
7 | 5357 */ |
5358 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5359 nv_pcmark(cmdarg_T *cap) |
7 | 5360 { |
5361 pos_T *pos; | |
26532
255bc9a08e58
patch 8.2.3795: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
26516
diff
changeset
|
5362 #ifdef FEAT_FOLDING |
7 | 5363 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
|
5364 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
|
5365 #endif |
7 | 5366 |
5367 if (!checkclearopq(cap->oap)) | |
5368 { | |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5369 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
|
5370 { |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5371 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
|
5372 clearopbeep(cap->oap); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5373 return; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
5374 } |
7 | 5375 if (cap->cmdchar == 'g') |
5376 pos = movechangelist((int)cap->count1); | |
5377 else | |
5378 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
|
5379 if (pos == (pos_T *)-1) // jump to other file |
7 | 5380 { |
5381 curwin->w_set_curswant = TRUE; | |
5382 check_cursor(); | |
5383 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5384 else if (pos != NULL) // can jump |
7 | 5385 nv_cursormark(cap, FALSE, pos); |
5386 else if (cap->cmdchar == 'g') | |
5387 { | |
5388 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
|
5389 emsg(_(e_changelist_is_empty)); |
7 | 5390 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
|
5391 emsg(_(e_at_start_of_changelist)); |
7 | 5392 else |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26929
diff
changeset
|
5393 emsg(_(e_at_end_of_changelist)); |
7 | 5394 } |
5395 else | |
5396 clearopbeep(cap->oap); | |
5397 # ifdef FEAT_FOLDING | |
5398 if (cap->oap->op_type == OP_NOP | |
5399 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum) | |
5400 && (fdo_flags & FDO_MARK) | |
5401 && old_KeyTyped) | |
5402 foldOpenCursor(); | |
5403 # endif | |
5404 } | |
5405 } | |
5406 | |
5407 /* | |
5408 * Handle '"' command. | |
5409 */ | |
5410 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5411 nv_regname(cmdarg_T *cap) |
7 | 5412 { |
5413 if (checkclearop(cap->oap)) | |
5414 return; | |
5415 #ifdef FEAT_EVAL | |
5416 if (cap->nchar == '=') | |
5417 cap->nchar = get_expr_register(); | |
5418 #endif | |
5419 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE)) | |
5420 { | |
5421 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
|
5422 cap->opcount = cap->count0; // remember count before '"' |
7 | 5423 #ifdef FEAT_EVAL |
5424 set_reg_var(cap->oap->regname); | |
5425 #endif | |
5426 } | |
5427 else | |
5428 clearopbeep(cap->oap); | |
5429 } | |
5430 | |
5431 /* | |
5432 * Handle "v", "V" and "CTRL-V" commands. | |
5433 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg | |
5434 * is TRUE. | |
167 | 5435 * Handle CTRL-Q just like CTRL-V. |
7 | 5436 */ |
5437 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5438 nv_visual(cmdarg_T *cap) |
7 | 5439 { |
167 | 5440 if (cap->cmdchar == Ctrl_Q) |
5441 cap->cmdchar = Ctrl_V; | |
5442 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5443 // '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
|
5444 // characterwise, linewise, or blockwise. |
7 | 5445 if (cap->oap->op_type != OP_NOP) |
5446 { | |
15279
54457fc4af0b
patch 8.1.0648: custom operators can't act upon a forced motion
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5447 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
|
5448 finish_op = FALSE; // operator doesn't finish now but later |
7 | 5449 return; |
5450 } | |
5451 | |
5452 VIsual_select = cap->arg; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5453 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
|
5454 { |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5455 if (VIsual_mode == cap->cmdchar) // stop visual mode |
7 | 5456 end_visual_mode(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5457 else // toggle char/block mode |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5458 { // or char/line mode |
7 | 5459 VIsual_mode = cap->cmdchar; |
5460 showmode(); | |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
5461 may_trigger_modechanged(); |
7 | 5462 } |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
5463 redraw_curbuf_later(UPD_INVERTED); // update the inversion |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5464 } |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5465 else // start Visual mode |
7 | 5466 { |
5467 check_visual_highlight(); | |
3537 | 5468 if (cap->count0 > 0 && resel_VIsual_mode != NUL) |
5469 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5470 // use previously selected part |
7 | 5471 VIsual = curwin->w_cursor; |
5472 | |
5473 VIsual_active = TRUE; | |
5474 VIsual_reselect = TRUE; | |
5475 if (!cap->arg) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5476 // start Select mode when 'selectmode' contains "cmd" |
7 | 5477 may_start_select('c'); |
5478 setmouse(); | |
641 | 5479 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
|
5480 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
|
5481 // 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
|
5482 // was only one -- webb |
7 | 5483 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1) |
5484 { | |
5485 curwin->w_cursor.lnum += | |
5486 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
|
5487 check_cursor(); |
7 | 5488 } |
5489 VIsual_mode = resel_VIsual_mode; | |
5490 if (VIsual_mode == 'v') | |
5491 { | |
5492 if (resel_VIsual_line_count <= 1) | |
3125 | 5493 { |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5494 update_curswant_force(); |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5495 curwin->w_curswant += resel_VIsual_vcol * cap->count0 - 1; |
3125 | 5496 } |
7 | 5497 else |
3125 | 5498 curwin->w_curswant = resel_VIsual_vcol; |
5499 coladvance(curwin->w_curswant); | |
7 | 5500 } |
3125 | 5501 if (resel_VIsual_vcol == MAXCOL) |
7 | 5502 { |
5503 curwin->w_curswant = MAXCOL; | |
5504 coladvance((colnr_T)MAXCOL); | |
5505 } | |
5506 else if (VIsual_mode == Ctrl_V) | |
5507 { | |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5508 update_curswant_force(); |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5509 curwin->w_curswant += + resel_VIsual_vcol * cap->count0 - 1; |
7 | 5510 coladvance(curwin->w_curswant); |
5511 } | |
5512 else | |
5513 curwin->w_set_curswant = TRUE; | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
5514 redraw_curbuf_later(UPD_INVERTED); // show the inversion |
7 | 5515 } |
5516 else | |
5517 { | |
5518 if (!cap->arg) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5519 // start Select mode when 'selectmode' contains "cmd" |
7 | 5520 may_start_select('c'); |
5521 n_start_visual_mode(cap->cmdchar); | |
3537 | 5522 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
|
5523 ++cap->count1; // include one more char |
3537 | 5524 if (cap->count0 > 0 && --cap->count1 > 0) |
5525 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5526 // With a count select that many characters or lines. |
3537 | 5527 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V) |
5528 nv_right(cap); | |
5529 else if (VIsual_mode == 'V') | |
5530 nv_down(cap); | |
5531 } | |
7 | 5532 } |
5533 } | |
5534 } | |
5535 | |
5536 /* | |
5537 * Start selection for Shift-movement keys. | |
5538 */ | |
5539 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5540 start_selection(void) |
7 | 5541 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5542 // if 'selectmode' contains "key", start Select mode |
7 | 5543 may_start_select('k'); |
5544 n_start_visual_mode('v'); | |
5545 } | |
5546 | |
5547 /* | |
5548 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu. | |
28564
9a2fb96475ed
patch 8.2.4806: a mapping using <LeftDrag> does not start Select mode
Bram Moolenaar <Bram@vim.org>
parents:
28401
diff
changeset
|
5549 * When "c" is 'o' (checking for "mouse") then also when mapped. |
7 | 5550 */ |
5551 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5552 may_start_select(int c) |
7 | 5553 { |
28564
9a2fb96475ed
patch 8.2.4806: a mapping using <LeftDrag> does not start Select mode
Bram Moolenaar <Bram@vim.org>
parents:
28401
diff
changeset
|
5554 VIsual_select = (c == 'o' || (stuff_empty() && typebuf_typed())) |
9a2fb96475ed
patch 8.2.4806: a mapping using <LeftDrag> does not start Select mode
Bram Moolenaar <Bram@vim.org>
parents:
28401
diff
changeset
|
5555 && vim_strchr(p_slm, c) != NULL; |
7 | 5556 } |
5557 | |
5558 /* | |
5559 * Start Visual mode "c". | |
5560 * Should set VIsual_select before calling this. | |
5561 */ | |
5562 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5563 n_start_visual_mode(int c) |
7 | 5564 { |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5565 #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
|
5566 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
|
5567 && 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
|
5568 #endif |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5569 |
7 | 5570 VIsual_mode = c; |
5571 VIsual_active = TRUE; | |
5572 VIsual_reselect = TRUE; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5573 |
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
5574 // 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
|
5575 // 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
|
5576 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB) |
3742 | 5577 { |
5578 validate_virtcol(); | |
7 | 5579 coladvance(curwin->w_virtcol); |
3742 | 5580 } |
7 | 5581 VIsual = curwin->w_cursor; |
5582 | |
5583 #ifdef FEAT_FOLDING | |
5584 foldAdjustVisual(); | |
5585 #endif | |
5586 | |
28397
d1702731786c
patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents:
28224
diff
changeset
|
5587 may_trigger_modechanged(); |
7 | 5588 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
|
5589 #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
|
5590 // 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
|
5591 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
|
5592 #endif |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5593 |
641 | 5594 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
|
5595 redraw_cmdline = TRUE; // show visual mode later |
7 | 5596 #ifdef FEAT_CLIPBOARD |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5597 // 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
|
5598 // end may still be the same, and the selection needs to be owned |
7 | 5599 clip_star.vmode = NUL; |
5600 #endif | |
5601 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5602 // 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
|
5603 // Visual area (when 'lazyredraw' is set). |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
5604 if (curwin->w_redr_type < UPD_INVERTED) |
7 | 5605 { |
5606 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum; | |
5607 curwin->w_old_visual_lnum = curwin->w_cursor.lnum; | |
5608 } | |
5609 } | |
5610 | |
5611 | |
5612 /* | |
5613 * CTRL-W: Window commands | |
5614 */ | |
5615 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5616 nv_window(cmdarg_T *cap) |
7 | 5617 { |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5618 if (cap->nchar == ':') |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5619 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5620 // "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
|
5621 cap->cmdchar = ':'; |
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5622 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
|
5623 nv_colon(cap); |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
5624 } |
11684
1ce1376fbbf8
patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5625 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
|
5626 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c |
7 | 5627 } |
5628 | |
5629 /* | |
5630 * CTRL-Z: Suspend | |
5631 */ | |
5632 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5633 nv_suspend(cmdarg_T *cap) |
7 | 5634 { |
5635 clearop(cap->oap); | |
5636 if (VIsual_active) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5637 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
|
5638 do_cmdline_cmd((char_u *)"stop"); |
7 | 5639 } |
5640 | |
5641 /* | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5642 * "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
|
5643 * 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
|
5644 */ |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5645 static void |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5646 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
|
5647 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5648 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
|
5649 int i; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5650 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5651 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
|
5652 return; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5653 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5654 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
|
5655 || 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
|
5656 || 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
|
5657 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5658 beep_flush(); |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5659 return; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5660 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5661 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5662 // 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
|
5663 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
|
5664 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5665 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
|
5666 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
|
5667 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
|
5668 # 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
|
5669 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
|
5670 # endif |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5671 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
|
5672 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
|
5673 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
|
5674 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5675 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
|
5676 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
|
5677 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
|
5678 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
|
5679 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5680 else |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5681 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5682 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
|
5683 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
|
5684 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
|
5685 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
|
5686 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5687 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5688 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
|
5689 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
|
5690 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5691 // 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
|
5692 // 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
|
5693 check_cursor(); |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5694 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
|
5695 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
|
5696 check_cursor(); |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5697 update_topline(); |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5698 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5699 // 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
|
5700 // '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
|
5701 // 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
|
5702 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
|
5703 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5704 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
|
5705 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
|
5706 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5707 else |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5708 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
|
5709 setmouse(); |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5710 #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
|
5711 // 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
|
5712 // 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
|
5713 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
|
5714 #endif |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
5715 redraw_curbuf_later(UPD_INVERTED); |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5716 showmode(); |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5717 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5718 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5719 /* |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5720 * "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
|
5721 * "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
|
5722 */ |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5723 static void |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5724 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
|
5725 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5726 int i; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5727 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
|
5728 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5729 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
|
5730 flag = TRUE; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5731 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5732 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
|
5733 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
|
5734 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
|
5735 { |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5736 int width1 = curwin->w_width - curwin_col_off(); |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5737 int width2 = width1 + curwin_col_off2(); |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5738 int virtcol; |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5739 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5740 validate_virtcol(); |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5741 virtcol = curwin->w_virtcol |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5742 #ifdef FEAT_PROP_POPUP |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5743 - curwin->w_virtcol_first_char |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5744 #endif |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5745 ; |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5746 i = 0; |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5747 if (virtcol >= (colnr_T)width1 && width2 > 0) |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5748 i = (virtcol - width1) / width2 * width2 + width1; |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5749 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5750 else |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5751 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
|
5752 // 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
|
5753 // '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
|
5754 // 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
|
5755 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
|
5756 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
|
5757 + ((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
|
5758 ? 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
|
5759 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
|
5760 if (flag) |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5761 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5762 do |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5763 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
|
5764 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
|
5765 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
|
5766 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5767 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
|
5768 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5769 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5770 /* |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5771 * "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
|
5772 * downward. |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5773 */ |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5774 static void |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5775 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
|
5776 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5777 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
|
5778 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5779 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
|
5780 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
|
5781 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
|
5782 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
|
5783 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
|
5784 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5785 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
|
5786 return; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5787 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5788 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5789 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
|
5790 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5791 // 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
|
5792 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
|
5793 --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
|
5794 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5795 // 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
|
5796 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
|
5797 && 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
|
5798 --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
|
5799 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
|
5800 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
|
5801 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5802 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5803 /* |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5804 * "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
|
5805 */ |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5806 static void |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5807 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
|
5808 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5809 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
|
5810 int i; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5811 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
|
5812 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5813 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
|
5814 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
|
5815 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
|
5816 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5817 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
|
5818 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
|
5819 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5820 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
|
5821 int width2 = width1 + curwin_col_off2(); |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5822 int virtcol; |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5823 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5824 validate_virtcol(); |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5825 virtcol = curwin->w_virtcol |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5826 #ifdef FEAT_PROP_POPUP |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5827 - curwin->w_virtcol_first_char |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5828 #endif |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5829 ; |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5830 i = width1 - 1; |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5831 if (virtcol >= (colnr_T)width1) |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5832 i += ((virtcol - width1) / width2 + 1) |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5833 * width2; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5834 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
|
5835 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5836 // Make sure we stick in this column. |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5837 update_curswant_force(); |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5838 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
|
5839 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5840 // 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
|
5841 // 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
|
5842 // the next screen line. |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5843 if (curwin->w_virtcol |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5844 #ifdef FEAT_PROP_POPUP |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5845 - curwin->w_virtcol_first_char |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5846 #endif |
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5847 > (colnr_T)i) |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5848 --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
|
5849 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5850 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5851 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
|
5852 clearopbeep(oap); |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5853 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5854 else |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5855 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5856 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
|
5857 // 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
|
5858 (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
|
5859 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5860 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
|
5861 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
|
5862 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5863 // 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
|
5864 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
|
5865 && (*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
|
5866 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5867 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
|
5868 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5869 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
|
5870 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
|
5871 --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
|
5872 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5873 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5874 // Make sure we stick in this column. |
30293
914b3c64ab92
patch 9.0.0482: "g0" moves to wrong location with virtual text "above"
Bram Moolenaar <Bram@vim.org>
parents:
30102
diff
changeset
|
5875 update_curswant_force(); |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5876 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5877 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5878 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5879 /* |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5880 * "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
|
5881 */ |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5882 static void |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5883 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
|
5884 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5885 int i; |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5886 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5887 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
|
5888 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5889 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
|
5890 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
|
5891 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
|
5892 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
|
5893 { |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5894 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
|
5895 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
|
5896 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
|
5897 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5898 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5899 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
|
5900 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
|
5901 } |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5902 |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5903 /* |
7 | 5904 * Commands starting with "g". |
5905 */ | |
5906 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5907 nv_g_cmd(cmdarg_T *cap) |
7 | 5908 { |
5909 oparg_T *oap = cap->oap; | |
5910 int i; | |
5911 | |
5912 switch (cap->nchar) | |
5913 { | |
6868 | 5914 case Ctrl_A: |
5915 case Ctrl_X: | |
7 | 5916 #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
|
5917 // "g^A": dump log of used memory. |
6868 | 5918 if (!VIsual_active && cap->nchar == Ctrl_A) |
5919 vim_mem_profile_dump(); | |
5920 else | |
5921 #endif | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5922 // "g^A/g^X": sequentially increment visually selected region |
6868 | 5923 if (VIsual_active) |
5924 { | |
5925 cap->arg = TRUE; | |
5926 cap->cmdchar = cap->nchar; | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
5927 cap->nchar = NUL; |
6868 | 5928 nv_addsub(cap); |
5929 } | |
5930 else | |
5931 clearopbeep(oap); | |
7 | 5932 break; |
5933 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5934 // "gR": Enter virtual replace mode. |
7 | 5935 case 'R': |
5936 cap->arg = TRUE; | |
5937 nv_Replace(cap); | |
5938 break; | |
5939 | |
5940 case 'r': | |
5941 nv_vreplace(cap); | |
5942 break; | |
5943 | |
5944 case '&': | |
5945 do_cmdline_cmd((char_u *)"%s//~/&"); | |
5946 break; | |
5947 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5948 // "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
|
5949 // exchange previous and current Visual area. |
7 | 5950 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
|
5951 nv_gv_cmd(cap); |
7 | 5952 break; |
27273
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 // "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
|
5955 // mapping of menu. |
7 | 5956 case 'V': |
5957 VIsual_reselect = FALSE; | |
5958 break; | |
5959 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5960 // "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
|
5961 // "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
|
5962 // "g^H": start Select block mode. |
7 | 5963 case K_BS: |
5964 cap->nchar = Ctrl_H; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5965 // FALLTHROUGH |
7 | 5966 case 'h': |
5967 case 'H': | |
5968 case Ctrl_H: | |
5969 cap->cmdchar = cap->nchar + ('v' - 'h'); | |
5970 cap->arg = TRUE; | |
5971 nv_visual(cap); | |
5972 break; | |
3701 | 5973 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5974 // "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
|
5975 // "gn" selects next match |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
5976 // "gN" selects previous match |
3701 | 5977 case 'N': |
5978 case 'n': | |
5979 if (!current_search(cap->count1, cap->nchar == 'n')) | |
3896 | 5980 clearopbeep(oap); |
3701 | 5981 break; |
7 | 5982 |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
5983 // "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
|
5984 // movement based on *screen* line rather than *file* line. |
7 | 5985 case 'j': |
5986 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
|
5987 // 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
|
5988 if (!curwin->w_p_wrap) |
7 | 5989 { |
5990 oap->motion_type = MLINE; | |
5991 i = cursor_down(cap->count1, oap->op_type == OP_NOP); | |
5992 } | |
5993 else | |
5994 i = nv_screengo(oap, FORWARD, cap->count1); | |
5995 if (i == FAIL) | |
5996 clearopbeep(oap); | |
5997 break; | |
5998 | |
5999 case 'k': | |
6000 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
|
6001 // 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
|
6002 if (!curwin->w_p_wrap) |
7 | 6003 { |
6004 oap->motion_type = MLINE; | |
6005 i = cursor_up(cap->count1, oap->op_type == OP_NOP); | |
6006 } | |
6007 else | |
6008 i = nv_screengo(oap, BACKWARD, cap->count1); | |
6009 if (i == FAIL) | |
6010 clearopbeep(oap); | |
6011 break; | |
6012 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6013 // "gJ": join two lines without inserting a space. |
7 | 6014 case 'J': |
6015 nv_join(cap); | |
6016 break; | |
6017 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6018 // "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
|
6019 // "gm": middle of "g0" and "g$". |
7 | 6020 case '^': |
6021 case '0': | |
6022 case 'm': | |
6023 case K_HOME: | |
6024 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
|
6025 nv_g_home_m_cmd(cap); |
7 | 6026 break; |
6027 | |
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
|
6028 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
|
6029 { |
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
|
6030 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
|
6031 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
|
6032 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
|
6033 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
|
6034 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
|
6035 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
|
6036 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
|
6037 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
|
6038 } |
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
|
6039 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
|
6040 |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6041 // "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
|
6042 // downward. |
7 | 6043 case '_': |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6044 nv_g_underscore_cmd(cap); |
7 | 6045 break; |
6046 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6047 // "g$" : Like "$" but for screen lines. |
7 | 6048 case '$': |
6049 case K_END: | |
6050 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
|
6051 nv_g_dollar_cmd(cap); |
7 | 6052 break; |
6053 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6054 // "g*" and "g#", like "*" and "#" but without using "\<" and "\>" |
7 | 6055 case '*': |
6056 case '#': | |
6057 #if POUND != '#' | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6058 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
|
6059 #endif |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6060 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
|
6061 case ']': // :tselect for current identifier |
7 | 6062 nv_ident(cap); |
6063 break; | |
6064 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6065 // ge and gE: go back to end of word |
7 | 6066 case 'e': |
6067 case 'E': | |
6068 oap->motion_type = MCHAR; | |
6069 curwin->w_set_curswant = TRUE; | |
6070 oap->inclusive = TRUE; | |
6071 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL) | |
6072 clearopbeep(oap); | |
6073 break; | |
6074 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6075 // "g CTRL-G": display info about cursor position |
7 | 6076 case Ctrl_G: |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
6077 cursor_pos_info(NULL); |
7 | 6078 break; |
6079 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6080 // "gi": start Insert at the last position. |
7 | 6081 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
|
6082 nv_gi_cmd(cap); |
7 | 6083 break; |
6084 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6085 // "gI": Start insert in column 1. |
7 | 6086 case 'I': |
6087 beginline(0); | |
6088 if (!checkclearopq(oap)) | |
6089 invoke_edit(cap, FALSE, 'g', FALSE); | |
6090 break; | |
6091 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6092 // "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
|
6093 // "]f" and "[f": can also be used. |
7 | 6094 case 'f': |
681 | 6095 case 'F': |
7 | 6096 nv_gotofile(cap); |
6097 break; | |
6098 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6099 // "g'm" and "g`m": jump to mark without setting pcmark |
7 | 6100 case '\'': |
6101 cap->arg = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6102 // FALLTHROUGH |
7 | 6103 case '`': |
6104 nv_gomark(cap); | |
6105 break; | |
6106 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6107 // "gs": Goto sleep. |
7 | 6108 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
|
6109 do_sleep(cap->count1 * 1000L, FALSE); |
7 | 6110 break; |
6111 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6112 // "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
|
6113 // cursor. It is displayed in decimal, hex, and octal. -- webb |
7 | 6114 case 'a': |
6115 do_ascii(NULL); | |
6116 break; | |
6117 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6118 // "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
|
6119 // 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
|
6120 // "8g8" finds illegal byte sequence. |
7 | 6121 case '8': |
775 | 6122 if (cap->count0 == 8) |
6123 utf_find_illegal(); | |
6124 else | |
6125 show_utf8(); | |
7 | 6126 break; |
6127 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6128 // "g<": show scrollback text |
447 | 6129 case '<': |
6130 show_sb_text(); | |
6131 break; | |
6132 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6133 // "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
|
6134 // that line number like for "G". -- webb |
7 | 6135 case 'g': |
6136 cap->arg = FALSE; | |
6137 nv_goto(cap); | |
6138 break; | |
6139 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6140 // 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
|
6141 // "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
|
6142 // "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
|
6143 // "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
|
6144 // "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
|
6145 // "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
|
6146 // "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
|
6147 // "g@" call 'operatorfunc' |
7 | 6148 case 'q': |
6149 case 'w': | |
6150 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
|
6151 // FALLTHROUGH |
7 | 6152 case '~': |
6153 case 'u': | |
6154 case 'U': | |
6155 case '?': | |
602 | 6156 case '@': |
7 | 6157 nv_operator(cap); |
6158 break; | |
6159 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6160 // "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
|
6161 // current function |
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6162 // "gD": idem, but in the current file. |
7 | 6163 case 'd': |
6164 case 'D': | |
523 | 6165 nv_gd(oap, cap->nchar, (int)cap->count0); |
7 | 6166 break; |
6167 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6168 // g<*Mouse> : <C-*mouse> |
7 | 6169 case K_MIDDLEMOUSE: |
6170 case K_MIDDLEDRAG: | |
6171 case K_MIDDLERELEASE: | |
6172 case K_LEFTMOUSE: | |
6173 case K_LEFTDRAG: | |
6174 case K_LEFTRELEASE: | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
6175 case K_MOUSEMOVE: |
7 | 6176 case K_RIGHTMOUSE: |
6177 case K_RIGHTDRAG: | |
6178 case K_RIGHTRELEASE: | |
6179 case K_X1MOUSE: | |
6180 case K_X1DRAG: | |
6181 case K_X1RELEASE: | |
6182 case K_X2MOUSE: | |
6183 case K_X2DRAG: | |
6184 case K_X2RELEASE: | |
6185 mod_mask = MOD_MASK_CTRL; | |
6186 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0); | |
6187 break; | |
6188 | |
6189 case K_IGNORE: | |
6190 break; | |
6191 | |
27273
a9f0c1f06c84
patch 8.2.4165: the nv_g_cmd() function is too long
Bram Moolenaar <Bram@vim.org>
parents:
27263
diff
changeset
|
6192 // "gP" and "gp": same as "P" and "p" but leave cursor just after new text |
7 | 6193 case 'p': |
6194 case 'P': | |
6195 nv_put(cap); | |
6196 break; | |
6197 | |
6198 #ifdef FEAT_BYTEOFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6199 // "go": goto byte count from start of buffer |
7 | 6200 case 'o': |
6201 goto_byte(cap->count0); | |
6202 break; | |
6203 #endif | |
6204 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6205 // "gQ": improved Ex mode |
7 | 6206 case 'Q': |
29002
48d74a5822eb
patch 8.2.5023: substitute overwrites allocated buffer
Bram Moolenaar <Bram@vim.org>
parents:
28867
diff
changeset
|
6207 if (!check_text_locked(cap->oap) && !checkclearopq(oap)) |
7 | 6208 do_exmode(TRUE); |
6209 break; | |
6210 | |
6211 case ',': | |
6212 nv_pcmark(cap); | |
6213 break; | |
6214 | |
6215 case ';': | |
6216 cap->count1 = -cap->count1; | |
6217 nv_pcmark(cap); | |
6218 break; | |
6219 | |
667 | 6220 case 't': |
3630 | 6221 if (!checkclearop(oap)) |
6222 goto_tabpage((int)cap->count0); | |
667 | 6223 break; |
682 | 6224 case 'T': |
3630 | 6225 if (!checkclearop(oap)) |
6226 goto_tabpage(-(int)cap->count1); | |
682 | 6227 break; |
667 | 6228 |
21703
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6229 case TAB: |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6230 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
|
6231 clearopbeep(oap); |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6232 break; |
22583b9d4efd
patch 8.2.1401: cannot jump to the last used tabpage
Bram Moolenaar <Bram@vim.org>
parents:
21415
diff
changeset
|
6233 |
750 | 6234 case '+': |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6235 case '-': // "g+" and "g-": undo or redo along the timeline |
750 | 6236 if (!checkclearopq(oap)) |
771 | 6237 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
|
6238 FALSE, FALSE, FALSE); |
750 | 6239 break; |
6240 | |
7 | 6241 default: |
6242 clearopbeep(oap); | |
6243 break; | |
6244 } | |
6245 } | |
6246 | |
6247 /* | |
6248 * Handle "o" and "O" commands. | |
6249 */ | |
6250 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6251 n_opencmd(cmdarg_T *cap) |
7 | 6252 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6253 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6254 linenr_T oldline = curwin->w_cursor.lnum; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6255 #endif |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6256 |
7 | 6257 if (!checkclearopq(cap->oap)) |
6258 { | |
6259 #ifdef FEAT_FOLDING | |
6260 if (cap->cmdchar == 'O') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6261 // Open above the first line of a folded sequence of lines |
7 | 6262 (void)hasFolding(curwin->w_cursor.lnum, |
6263 &curwin->w_cursor.lnum, NULL); | |
6264 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6265 // Open below the last line of a folded sequence of lines |
7 | 6266 (void)hasFolding(curwin->w_cursor.lnum, |
6267 NULL, &curwin->w_cursor.lnum); | |
6268 #endif | |
6269 if (u_save((linenr_T)(curwin->w_cursor.lnum - | |
6270 (cap->cmdchar == 'O' ? 1 : 0)), | |
6271 (linenr_T)(curwin->w_cursor.lnum + | |
6272 (cap->cmdchar == 'o' ? 1 : 0)) | |
6273 ) == OK | |
6274 && 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
|
6275 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
|
6276 0, NULL) == OK) |
7 | 6277 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6278 #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
|
6279 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
|
6280 redrawWinline(curwin, oldline); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6281 #endif |
6834 | 6282 #ifdef FEAT_SYN_HL |
6821 | 6283 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
|
6284 // force redraw of cursorline |
6821 | 6285 curwin->w_valid &= ~VALID_CROW; |
6834 | 6286 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6287 // 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
|
6288 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
|
6289 cap->count1 = 1; |
7 | 6290 invoke_edit(cap, FALSE, cap->cmdchar, TRUE); |
6291 } | |
6292 } | |
6293 } | |
6294 | |
6295 /* | |
6296 * "." command: redo last change. | |
6297 */ | |
6298 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6299 nv_dot(cmdarg_T *cap) |
7 | 6300 { |
6301 if (!checkclearopq(cap->oap)) | |
6302 { | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
6303 // 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
|
6304 // 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
|
6305 // CTRL-O <.> in insert mode. |
7 | 6306 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL) |
6307 clearopbeep(cap->oap); | |
6308 } | |
6309 } | |
6310 | |
6311 /* | |
27263
93d4ee1e6113
patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents:
27140
diff
changeset
|
6312 * CTRL-R: undo undo or specify register in select mode |
7 | 6313 */ |
6314 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
|
6315 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
|
6316 { |
93d4ee1e6113
patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents:
27140
diff
changeset
|
6317 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
|
6318 { |
93d4ee1e6113
patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents:
27140
diff
changeset
|
6319 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
|
6320 // 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
|
6321 ++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
|
6322 ++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
|
6323 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
|
6324 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
|
6325 --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
|
6326 --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
|
6327 |
93d4ee1e6113
patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents:
27140
diff
changeset
|
6328 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
|
6329 // 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
|
6330 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
|
6331 |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
6332 VIsual_select_reg = valid_yank_reg(reg, TRUE) ? reg : 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
|
6333 return; |
93d4ee1e6113
patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents:
27140
diff
changeset
|
6334 } |
93d4ee1e6113
patch 8.2.4160: cannot change the register used for Select mode delete
Bram Moolenaar <Bram@vim.org>
parents:
27140
diff
changeset
|
6335 |
7 | 6336 if (!checkclearopq(cap->oap)) |
6337 { | |
6338 u_redo((int)cap->count1); | |
6339 curwin->w_set_curswant = TRUE; | |
6340 } | |
6341 } | |
6342 | |
6343 /* | |
6344 * Handle "U" command. | |
6345 */ | |
6346 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6347 nv_Undo(cmdarg_T *cap) |
7 | 6348 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6349 // In Visual mode and typing "gUU" triggers an operator |
5735 | 6350 if (cap->oap->op_type == OP_UPPER || VIsual_active) |
7 | 6351 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6352 // translate "gUU" to "gUgU" |
7 | 6353 cap->cmdchar = 'g'; |
6354 cap->nchar = 'U'; | |
6355 nv_operator(cap); | |
6356 } | |
6357 else if (!checkclearopq(cap->oap)) | |
6358 { | |
6359 u_undoline(); | |
6360 curwin->w_set_curswant = TRUE; | |
6361 } | |
6362 } | |
6363 | |
6364 /* | |
6365 * '~' command: If tilde is not an operator and Visual is off: swap case of a | |
6366 * single character. | |
6367 */ | |
6368 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6369 nv_tilde(cmdarg_T *cap) |
7 | 6370 { |
5735 | 6371 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
|
6372 { |
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
|
6373 #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
|
6374 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
|
6375 { |
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
|
6376 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
|
6377 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
|
6378 } |
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
|
6379 #endif |
7 | 6380 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
|
6381 } |
7 | 6382 else |
6383 nv_operator(cap); | |
6384 } | |
6385 | |
6386 /* | |
6387 * Handle an operator command. | |
6388 * The actual work is done by do_pending_operator(). | |
6389 */ | |
6390 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6391 nv_operator(cmdarg_T *cap) |
7 | 6392 { |
6393 int op_type; | |
6394 | |
6395 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
|
6396 #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
|
6397 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
|
6398 { |
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
|
6399 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
|
6400 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
|
6401 } |
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
|
6402 #endif |
7 | 6403 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6404 if (op_type == cap->oap->op_type) // double operator works on lines |
7 | 6405 nv_lineop(cap); |
6406 else if (!checkclearop(cap->oap)) | |
6407 { | |
6408 cap->oap->start = curwin->w_cursor; | |
6409 cap->oap->op_type = op_type; | |
1490 | 6410 #ifdef FEAT_EVAL |
6411 set_op_var(op_type); | |
6412 #endif | |
6413 } | |
6414 } | |
6415 | |
6416 #ifdef FEAT_EVAL | |
6417 /* | |
6418 * Set v:operator to the characters for "optype". | |
6419 */ | |
6420 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6421 set_op_var(int optype) |
1490 | 6422 { |
6423 char_u opchars[3]; | |
6424 | |
6425 if (optype == OP_NOP) | |
6426 set_vim_var_string(VV_OP, NULL, 0); | |
6427 else | |
6428 { | |
6429 opchars[0] = get_op_char(optype); | |
6430 opchars[1] = get_extra_op_char(optype); | |
6431 opchars[2] = NUL; | |
6432 set_vim_var_string(VV_OP, opchars, -1); | |
6433 } | |
6434 } | |
6435 #endif | |
7 | 6436 |
6437 /* | |
6438 * Handle linewise operator "dd", "yy", etc. | |
6439 * | |
6440 * "_" is is a strange motion command that helps make operators more logical. | |
6441 * It is actually implemented, but not documented in the real Vi. This motion | |
6442 * command actually refers to "the current line". Commands like "dd" and "yy" | |
6443 * are really an alternate form of "d_" and "y_". It does accept a count, so | |
6444 * "d3_" works to delete 3 lines. | |
6445 */ | |
6446 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6447 nv_lineop(cmdarg_T *cap) |
7 | 6448 { |
6449 cap->oap->motion_type = MLINE; | |
6450 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL) | |
6451 clearopbeep(cap->oap); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6452 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions |
4011 | 6453 && cap->oap->motion_force != 'v' |
6454 && cap->oap->motion_force != Ctrl_V) | |
7 | 6455 || cap->oap->op_type == OP_LSHIFT |
6456 || cap->oap->op_type == OP_RSHIFT) | |
6457 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
|
6458 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor |
7 | 6459 beginline(BL_WHITE | BL_FIX); |
6460 } | |
6461 | |
6462 /* | |
6463 * <Home> command. | |
6464 */ | |
6465 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6466 nv_home(cmdarg_T *cap) |
7 | 6467 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6468 // CTRL-HOME is like "gg" |
180 | 6469 if (mod_mask & MOD_MASK_CTRL) |
6470 nv_goto(cap); | |
6471 else | |
6472 { | |
6473 cap->count0 = 1; | |
6474 nv_pipe(cap); | |
6475 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6476 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
|
6477 // one-character line). |
7 | 6478 } |
6479 | |
6480 /* | |
6481 * "|" command. | |
6482 */ | |
6483 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6484 nv_pipe(cmdarg_T *cap) |
7 | 6485 { |
6486 cap->oap->motion_type = MCHAR; | |
6487 cap->oap->inclusive = FALSE; | |
6488 beginline(0); | |
6489 if (cap->count0 > 0) | |
6490 { | |
6491 coladvance((colnr_T)(cap->count0 - 1)); | |
6492 curwin->w_curswant = (colnr_T)(cap->count0 - 1); | |
6493 } | |
6494 else | |
6495 curwin->w_curswant = 0; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6496 // 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
|
6497 // we ended; differs if line is too short |
7 | 6498 curwin->w_set_curswant = FALSE; |
6499 } | |
6500 | |
6501 /* | |
6502 * Handle back-word command "b" and "B". | |
6503 * cap->arg is 1 for "B" | |
6504 */ | |
6505 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6506 nv_bck_word(cmdarg_T *cap) |
7 | 6507 { |
6508 cap->oap->motion_type = MCHAR; | |
6509 cap->oap->inclusive = FALSE; | |
6510 curwin->w_set_curswant = TRUE; | |
6511 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL) | |
6512 clearopbeep(cap->oap); | |
6513 #ifdef FEAT_FOLDING | |
6514 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6515 foldOpenCursor(); | |
6516 #endif | |
6517 } | |
6518 | |
6519 /* | |
6520 * Handle word motion commands "e", "E", "w" and "W". | |
6521 * cap->arg is TRUE for "E" and "W". | |
6522 */ | |
6523 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6524 nv_wordcmd(cmdarg_T *cap) |
7 | 6525 { |
6526 int n; | |
6527 int word_end; | |
6528 int flag = FALSE; | |
1573 | 6529 pos_T startpos = curwin->w_cursor; |
7 | 6530 |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
6531 // Set inclusive for the "E" and "e" command. |
7 | 6532 if (cap->cmdchar == 'e' || cap->cmdchar == 'E') |
6533 word_end = TRUE; | |
6534 else | |
6535 word_end = FALSE; | |
6536 cap->oap->inclusive = word_end; | |
6537 | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
6538 // "cw" and "cW" are a special case. |
7 | 6539 if (!word_end && cap->oap->op_type == OP_CHANGE) |
6540 { | |
6541 n = gchar_cursor(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6542 if (n != NUL) // not an empty line |
7 | 6543 { |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
6544 if (VIM_ISWHITE(n)) |
7 | 6545 { |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
6546 // 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
|
6547 // 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
|
6548 // 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
|
6549 // in 'cpoptions'. |
7 | 6550 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL) |
6551 { | |
6552 cap->oap->inclusive = TRUE; | |
6553 cap->oap->motion_type = MCHAR; | |
6554 return; | |
6555 } | |
6556 } | |
6557 else | |
6558 { | |
27386
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
6559 // 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
|
6560 // 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
|
6561 // 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
|
6562 // 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
|
6563 // 'cw'. |
ccfb16d876b1
patch 8.2.4221: some functions in normal.c are very long
Bram Moolenaar <Bram@vim.org>
parents:
27354
diff
changeset
|
6564 // 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
|
6565 // "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
|
6566 // 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
|
6567 // flag. |
7 | 6568 cap->oap->inclusive = TRUE; |
6569 word_end = TRUE; | |
6570 flag = TRUE; | |
6571 } | |
6572 } | |
6573 } | |
6574 | |
6575 cap->oap->motion_type = MCHAR; | |
6576 curwin->w_set_curswant = TRUE; | |
6577 if (word_end) | |
6578 n = end_word(cap->count1, cap->arg, flag, FALSE); | |
6579 else | |
6580 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP); | |
6581 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6582 // 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
|
6583 // 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
|
6584 if (LT_POS(startpos, curwin->w_cursor)) |
1505 | 6585 adjust_cursor(cap->oap); |
7 | 6586 |
6587 if (n == FAIL && cap->oap->op_type == OP_NOP) | |
6588 clearopbeep(cap->oap); | |
6589 else | |
6590 { | |
6591 adjust_for_sel(cap); | |
6592 #ifdef FEAT_FOLDING | |
6593 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6594 foldOpenCursor(); | |
6595 #endif | |
6596 } | |
6597 } | |
6598 | |
6599 /* | |
1505 | 6600 * Used after a movement command: If the cursor ends up on the NUL after the |
6601 * end of the line, may move it back to the last character and make the motion | |
6602 * inclusive. | |
6603 */ | |
6604 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6605 adjust_cursor(oparg_T *oap) |
1505 | 6606 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6607 // 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
|
6608 // - the column is > 0 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6609 // - 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
|
6610 // - 'virtualedit' is not "all" and not "onemore". |
1505 | 6611 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL |
6612 && (!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
|
6613 && !virtual_active() && (get_ve_flags() & VE_ONEMORE) == 0) |
1505 | 6614 { |
6615 --curwin->w_cursor.col; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6616 // prevent cursor from moving on the trail byte |
1505 | 6617 if (has_mbyte) |
6618 mb_adjust_cursor(); | |
6619 oap->inclusive = TRUE; | |
6620 } | |
6621 } | |
6622 | |
6623 /* | |
7 | 6624 * "0" and "^" commands. |
6625 * cap->arg is the argument for beginline(). | |
6626 */ | |
6627 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6628 nv_beginline(cmdarg_T *cap) |
7 | 6629 { |
6630 cap->oap->motion_type = MCHAR; | |
6631 cap->oap->inclusive = FALSE; | |
6632 beginline(cap->arg); | |
6633 #ifdef FEAT_FOLDING | |
6634 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6635 foldOpenCursor(); | |
6636 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6637 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
|
6638 // one-character line). |
7 | 6639 } |
6640 | |
6641 /* | |
6642 * In exclusive Visual mode, may include the last character. | |
6643 */ | |
6644 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6645 adjust_for_sel(cmdarg_T *cap) |
7 | 6646 { |
6647 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
|
6648 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor)) |
7 | 6649 { |
6650 if (has_mbyte) | |
6651 inc_cursor(); | |
6652 else | |
6653 ++curwin->w_cursor.col; | |
6654 cap->oap->inclusive = FALSE; | |
6655 } | |
6656 } | |
6657 | |
6658 /* | |
6659 * Exclude last character at end of Visual area for 'selection' == "exclusive". | |
6660 * Should check VIsual_mode before calling this. | |
6661 * Returns TRUE when backed up to the previous line. | |
6662 */ | |
18219
5d67f207f7c3
patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
6663 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6664 unadjust_for_sel(void) |
7 | 6665 { |
6666 pos_T *pp; | |
6667 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6668 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
|
6669 { |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10980
diff
changeset
|
6670 if (LT_POS(VIsual, curwin->w_cursor)) |
7 | 6671 pp = &curwin->w_cursor; |
6672 else | |
6673 pp = &VIsual; | |
6674 if (pp->coladd > 0) | |
6675 --pp->coladd; | |
6676 else | |
6677 if (pp->col > 0) | |
6678 { | |
6679 --pp->col; | |
2933 | 6680 mb_adjustpos(curbuf, pp); |
7 | 6681 } |
6682 else if (pp->lnum > 1) | |
6683 { | |
6684 --pp->lnum; | |
6685 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum)); | |
6686 return TRUE; | |
6687 } | |
6688 } | |
6689 return FALSE; | |
6690 } | |
6691 | |
6692 /* | |
6693 * SELECT key in Normal or Visual mode: end of Select mode mapping. | |
6694 */ | |
6695 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6696 nv_select(cmdarg_T *cap) |
7 | 6697 { |
6698 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
|
6699 { |
7 | 6700 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
|
6701 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
|
6702 } |
7 | 6703 else if (VIsual_reselect) |
6704 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6705 cap->nchar = 'v'; // fake "gv" command |
7 | 6706 cap->arg = TRUE; |
6707 nv_g_cmd(cap); | |
6708 } | |
6709 } | |
6710 | |
6711 | |
6712 /* | |
6713 * "G", "gg", CTRL-END, CTRL-HOME. | |
6714 * cap->arg is TRUE for "G". | |
6715 */ | |
6716 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6717 nv_goto(cmdarg_T *cap) |
7 | 6718 { |
6719 linenr_T lnum; | |
6720 | |
6721 if (cap->arg) | |
6722 lnum = curbuf->b_ml.ml_line_count; | |
6723 else | |
6724 lnum = 1L; | |
6725 cap->oap->motion_type = MLINE; | |
6726 setpcmark(); | |
6727 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6728 // When a count is given, use it instead of the default lnum |
7 | 6729 if (cap->count0 != 0) |
6730 lnum = cap->count0; | |
6731 if (lnum < 1L) | |
6732 lnum = 1L; | |
6733 else if (lnum > curbuf->b_ml.ml_line_count) | |
6734 lnum = curbuf->b_ml.ml_line_count; | |
6735 curwin->w_cursor.lnum = lnum; | |
6736 beginline(BL_SOL | BL_FIX); | |
6737 #ifdef FEAT_FOLDING | |
6738 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP) | |
6739 foldOpenCursor(); | |
6740 #endif | |
6741 } | |
6742 | |
6743 /* | |
6744 * CTRL-\ in Normal mode. | |
6745 */ | |
6746 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6747 nv_normal(cmdarg_T *cap) |
7 | 6748 { |
6749 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G) | |
6750 { | |
6751 clearop(cap->oap); | |
643 | 6752 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
|
6753 clear_cmdline = TRUE; // unshow mode later |
7 | 6754 restart_edit = 0; |
6755 if (cmdwin_type != 0) | |
6756 cmdwin_result = Ctrl_C; | |
6757 if (VIsual_active) | |
6758 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6759 end_visual_mode(); // stop Visual |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
6760 redraw_curbuf_later(UPD_INVERTED); |
7 | 6761 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6762 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. |
7 | 6763 if (cap->nchar == Ctrl_G && p_im) |
6764 restart_edit = 'a'; | |
6765 } | |
6766 else | |
6767 clearopbeep(cap->oap); | |
6768 } | |
6769 | |
6770 /* | |
6771 * ESC in Normal mode: beep, but don't flush buffers. | |
6772 * Don't even beep if we are canceling a command. | |
6773 */ | |
6774 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6775 nv_esc(cmdarg_T *cap) |
7 | 6776 { |
6777 int no_reason; | |
6778 | |
6779 no_reason = (cap->oap->op_type == OP_NOP | |
6780 && cap->opcount == 0 | |
6781 && cap->count0 == 0 | |
6782 && cap->oap->regname == 0 | |
6783 && !p_im); | |
6784 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6785 if (cap->arg) // TRUE for CTRL-C |
7 | 6786 { |
30645
101f08b49ed3
patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30616
diff
changeset
|
6787 if (restart_edit == 0 && cmdwin_type == 0 |
101f08b49ed3
patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30616
diff
changeset
|
6788 && !VIsual_active && 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
|
6789 { |
30471
584231b9b37e
patch 9.0.0571: MS-Windows: CTRL-C can make Vim exit
Bram Moolenaar <Bram@vim.org>
parents:
30467
diff
changeset
|
6790 int out_redir = !stdout_isatty && !is_not_a_term_or_gui(); |
584231b9b37e
patch 9.0.0571: MS-Windows: CTRL-C can make Vim exit
Bram Moolenaar <Bram@vim.org>
parents:
30467
diff
changeset
|
6791 |
30467
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6792 // The user may accidentally do "vim file | grep word" and then |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6793 // CTRL-C doesn't show anything. With a changed buffer give the |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6794 // message on stderr. Without any changes might as well exit. |
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
|
6795 if (anyBufIsChanged()) |
30467
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6796 { |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6797 char *ms = _("Type :qa! and press <Enter> to abandon all changes and exit Vim"); |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6798 |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6799 if (out_redir) |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6800 mch_errmsg(ms); |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6801 else |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6802 msg(ms); |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6803 } |
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
|
6804 else |
30467
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6805 { |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6806 if (out_redir) |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6807 { |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6808 got_int = FALSE; |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6809 do_cmdline_cmd((char_u *)"qa"); |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6810 } |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6811 else |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6812 msg(_("Type :qa and press <Enter> to exit Vim")); |
072c61082148
patch 9.0.0569: cannot easily get out when using "vim file | grep word"
Bram Moolenaar <Bram@vim.org>
parents:
30293
diff
changeset
|
6813 } |
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
|
6814 } |
7 | 6815 |
29179
432e1535ef2c
patch 8.2.5109: mode not updated after CTRL-O CTRL-C in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6816 if (restart_edit != 0) |
432e1535ef2c
patch 8.2.5109: mode not updated after CTRL-O CTRL-C in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6817 redraw_mode = TRUE; // remove "-- (insert) --" |
432e1535ef2c
patch 8.2.5109: mode not updated after CTRL-O CTRL-C in Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6818 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6819 // 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
|
6820 // set again below when halfway a mapping. |
7 | 6821 if (!p_im) |
6822 restart_edit = 0; | |
6823 if (cmdwin_type != 0) | |
6824 { | |
6825 cmdwin_result = K_IGNORE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6826 got_int = FALSE; // don't stop executing autocommands et al. |
7 | 6827 return; |
6828 } | |
30645
101f08b49ed3
patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30616
diff
changeset
|
6829 } |
29790
8874cb642b70
patch 9.0.0234: cannot make difference between :normal end and argument char
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
6830 else if (cmdwin_type != 0 && ex_normal_busy && typebuf_was_empty) |
24012
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
6831 { |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
6832 // When :normal runs out of characters while in the command line window |
29790
8874cb642b70
patch 9.0.0234: cannot make difference between :normal end and argument char
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
6833 // vgetorpeek() will repeatedly return ESC. Exit the cmdline window to |
8874cb642b70
patch 9.0.0234: cannot make difference between :normal end and argument char
Bram Moolenaar <Bram@vim.org>
parents:
29765
diff
changeset
|
6834 // break the loop. |
24012
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
6835 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
|
6836 return; |
59b59a5f75d4
patch 8.2.2548: May get stuck in the cmdline window using :normal
Bram Moolenaar <Bram@vim.org>
parents:
24010
diff
changeset
|
6837 } |
7 | 6838 |
6839 if (VIsual_active) | |
6840 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6841 end_visual_mode(); // stop Visual |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6842 check_cursor_col(); // make sure cursor is not beyond EOL |
7 | 6843 curwin->w_set_curswant = TRUE; |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29566
diff
changeset
|
6844 redraw_curbuf_later(UPD_INVERTED); |
7 | 6845 } |
5735 | 6846 else if (no_reason) |
29944
34c5647efe7a
patch 9.0.0310: output of :messages dissappears when cmdheight is zero
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
6847 { |
34c5647efe7a
patch 9.0.0310: output of :messages dissappears when cmdheight is zero
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
6848 #ifdef HAS_MESSAGE_WINDOW |
29948
29e4cd9e66de
patch 9.0.0312: test for cmdheight zero fails
Bram Moolenaar <Bram@vim.org>
parents:
29944
diff
changeset
|
6849 if (!cap->arg && popup_message_win_visible()) |
29944
34c5647efe7a
patch 9.0.0310: output of :messages dissappears when cmdheight is zero
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
6850 popup_hide_message_win(); |
34c5647efe7a
patch 9.0.0310: output of :messages dissappears when cmdheight is zero
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
6851 else |
34c5647efe7a
patch 9.0.0310: output of :messages dissappears when cmdheight is zero
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
6852 #endif |
34c5647efe7a
patch 9.0.0310: output of :messages dissappears when cmdheight is zero
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
6853 vim_beep(BO_ESC); |
34c5647efe7a
patch 9.0.0310: output of :messages dissappears when cmdheight is zero
Bram Moolenaar <Bram@vim.org>
parents:
29853
diff
changeset
|
6854 } |
7 | 6855 clearop(cap->oap); |
6856 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6857 // 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
|
6858 // 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
|
6859 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0) |
7 | 6860 restart_edit = 'a'; |
6861 } | |
6862 | |
6863 /* | |
17984
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6864 * 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
|
6865 */ |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6866 void |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6867 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
|
6868 { |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6869 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
|
6870 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
|
6871 { |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6872 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
|
6873 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6874 // 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
|
6875 // character past the end of the line |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
6876 State = MODE_INSERT; |
17984
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6877 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
|
6878 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
|
6879 } |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6880 else |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6881 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
|
6882 } |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6883 |
2ea47dee7ddd
patch 8.1.1988: :startinsert! does not work the same way as "A"
Bram Moolenaar <Bram@vim.org>
parents:
17787
diff
changeset
|
6884 /* |
7 | 6885 * 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
|
6886 * Also handle K_PS, start bracketed paste. |
7 | 6887 */ |
6888 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
6889 nv_edit(cmdarg_T *cap) |
7 | 6890 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6891 // <Insert> is equal to "i" |
7 | 6892 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS) |
6893 cap->cmdchar = 'i'; | |
6894 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6895 // in Visual mode "A" and "I" are an operator |
7 | 6896 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
|
6897 { |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
6898 #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
|
6899 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
|
6900 { |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
6901 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
|
6902 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
|
6903 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
|
6904 return; |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
6905 } |
66fe20238c1d
patch 8.0.1113: can go to Insert mode from Terminal-Normal mode
Christian Brabandt <cb@256bit.org>
parents:
12423
diff
changeset
|
6906 #endif |
7 | 6907 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
|
6908 } |
7 | 6909 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6910 // in Visual mode and after an operator "a" and "i" are for text objects |
5735 | 6911 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i') |
6912 && (cap->oap->op_type != OP_NOP || VIsual_active)) | |
7 | 6913 { |
6914 nv_object(cap); | |
6915 } | |
11892
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
6916 #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
|
6917 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
|
6918 { |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
6919 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
|
6920 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
|
6921 return; |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
6922 } |
50ad151a7482
patch 8.0.0826: cannot use text objects in Terminal mode
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
6923 #endif |
7 | 6924 else if (!curbuf->b_p_ma && !p_im) |
6925 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6926 // 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
|
6927 emsg(_(e_cannot_make_changes_modifiable_is_off)); |
7 | 6928 clearop(cap->oap); |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
6929 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
|
6930 // drop the pasted text |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
6931 bracketed_paste(PASTE_INSERT, TRUE, NULL); |
7 | 6932 } |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6933 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
|
6934 { |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6935 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
|
6936 pos_T old_visual = VIsual; |
28085
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6937 int old_visual_mode = VIsual_mode; |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6938 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6939 // 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
|
6940 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
|
6941 { |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6942 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
|
6943 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
|
6944 } |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6945 else |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6946 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
|
6947 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
|
6948 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
|
6949 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
|
6950 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
|
6951 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
|
6952 |
28085
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6953 if (*ml_get_cursor() != NUL) |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6954 { |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6955 if (old_visual_mode == 'V') |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6956 { |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6957 // In linewise Visual mode insert before the beginning of the |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6958 // next line. |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6959 // When the last line in the buffer was deleted then create a |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6960 // new line, otherwise there is not need to move cursor. |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6961 // Detect this by checking if cursor moved above Visual area. |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6962 if (curwin->w_cursor.lnum < old_pos.lnum |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6963 && curwin->w_cursor.lnum < old_visual.lnum) |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6964 { |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6965 if (u_save_cursor() == OK) |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6966 { |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6967 ml_append(curwin->w_cursor.lnum, (char_u *)"", 0, |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6968 FALSE); |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6969 appended_lines(curwin->w_cursor.lnum++, 1L); |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6970 } |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6971 } |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6972 } |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6973 // When the last char in the line was deleted then append. |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6974 // Detect this by checking if cursor moved before Visual area. |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6975 else if (curwin->w_cursor.col < old_pos.col |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6976 && curwin->w_cursor.col < old_visual.col) |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6977 inc_cursor(); |
7976d709c963
patch 8.2.4567: bracketed paste doesn't work well in Visual linewise mode
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
6978 } |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6979 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6980 // 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
|
6981 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
|
6982 } |
7 | 6983 else if (!checkclearopq(cap->oap)) |
6984 { | |
6985 switch (cap->cmdchar) | |
6986 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6987 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
|
6988 set_cursor_for_append_to_line(); |
7 | 6989 break; |
6990 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6991 case 'I': // "I"nsert before the first non-blank |
164 | 6992 if (vim_strchr(p_cpo, CPO_INSEND) == NULL) |
6993 beginline(BL_WHITE); | |
6994 else | |
6995 beginline(BL_WHITE|BL_FIX); | |
7 | 6996 break; |
6997 | |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10813
diff
changeset
|
6998 case K_PS: |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
6999 // 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
|
7000 // 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
|
7001 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
|
7002 break; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7003 // FALLTHROUGH |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7004 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7005 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
|
7006 // 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
|
7007 // column otherwise, also to append after an unprintable char |
7 | 7008 if (virtual_active() |
7009 && (curwin->w_cursor.coladd > 0 | |
7010 || *ml_get_cursor() == NUL | |
7011 || *ml_get_cursor() == TAB)) | |
7012 curwin->w_cursor.coladd++; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
7013 else if (*ml_get_cursor() != NUL) |
7 | 7014 inc_cursor(); |
7015 break; | |
7016 } | |
7017 | |
7018 if (curwin->w_cursor.coladd && cap->cmdchar != 'A') | |
7019 { | |
7020 int save_State = State; | |
7021 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7022 // 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
|
7023 // character past the end of the line |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28714
diff
changeset
|
7024 State = MODE_INSERT; |
7 | 7025 coladvance(getviscol()); |
7026 State = save_State; | |
7027 } | |
7028 | |
7029 invoke_edit(cap, FALSE, cap->cmdchar, FALSE); | |
7030 } | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7031 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
|
7032 // drop the pasted text |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
7033 bracketed_paste(PASTE_INSERT, TRUE, NULL); |
7 | 7034 } |
7035 | |
7036 /* | |
7037 * Invoke edit() and take care of "restart_edit" and the return value. | |
7038 */ | |
7039 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7040 invoke_edit( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7041 cmdarg_T *cap, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7042 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
|
7043 int cmd, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7044 int startln) |
7 | 7045 { |
7046 int restart_edit_save = 0; | |
7047 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7048 // 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
|
7049 // 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
|
7050 // it. |
7 | 7051 if (repl || !stuff_empty()) |
7052 restart_edit_save = restart_edit; | |
7053 else | |
7054 restart_edit_save = 0; | |
7055 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7056 // Always reset "restart_edit", this is not a restarted edit. |
7 | 7057 restart_edit = 0; |
7058 | |
7059 if (edit(cmd, startln, cap->count1)) | |
7060 cap->retval |= CA_COMMAND_BUSY; | |
7061 | |
7062 if (restart_edit == 0) | |
7063 restart_edit = restart_edit_save; | |
7064 } | |
7065 | |
7066 /* | |
7067 * "a" or "i" while an operator is pending or in Visual mode: object motion. | |
7068 */ | |
7069 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7070 nv_object( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7071 cmdarg_T *cap) |
7 | 7072 { |
7073 int flag; | |
7074 int include; | |
7075 char_u *mps_save; | |
7076 | |
7077 if (cap->cmdchar == 'i') | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7078 include = FALSE; // "ix" = inner object: exclude white space |
7 | 7079 else |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7080 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
|
7081 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7082 // Make sure (), [], {} and <> are in 'matchpairs' |
7 | 7083 mps_save = curbuf->b_p_mps; |
7084 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>"; | |
7085 | |
7086 switch (cap->nchar) | |
7087 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7088 case 'w': // "aw" = a word |
7 | 7089 flag = current_word(cap->oap, cap->count1, include, FALSE); |
7090 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7091 case 'W': // "aW" = a WORD |
7 | 7092 flag = current_word(cap->oap, cap->count1, include, TRUE); |
7093 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7094 case 'b': // "ab" = a braces block |
7 | 7095 case '(': |
7096 case ')': | |
7097 flag = current_block(cap->oap, cap->count1, include, '(', ')'); | |
7098 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7099 case 'B': // "aB" = a Brackets block |
7 | 7100 case '{': |
7101 case '}': | |
7102 flag = current_block(cap->oap, cap->count1, include, '{', '}'); | |
7103 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7104 case '[': // "a[" = a [] block |
7 | 7105 case ']': |
7106 flag = current_block(cap->oap, cap->count1, include, '[', ']'); | |
7107 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7108 case '<': // "a<" = a <> block |
7 | 7109 case '>': |
7110 flag = current_block(cap->oap, cap->count1, include, '<', '>'); | |
7111 break; | |
29765
bc6cf208b1b4
patch 9.0.0222: no good reason why text objects are only in larger builds
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
7112 #ifdef FEAT_EVAL |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7113 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
|
7114 // 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
|
7115 // 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
|
7116 // (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
|
7117 // 1) <b> 2) <b> |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7118 // foobar foobar |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7119 // </b> </b> |
6661 | 7120 cap->retval |= CA_NO_ADJ_OP_END; |
420 | 7121 flag = current_tagblock(cap->oap, cap->count1, include); |
7122 break; | |
29765
bc6cf208b1b4
patch 9.0.0222: no good reason why text objects are only in larger builds
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
7123 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7124 case 'p': // "ap" = a paragraph |
7 | 7125 flag = current_par(cap->oap, cap->count1, include, 'p'); |
7126 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7127 case 's': // "as" = a sentence |
7 | 7128 flag = current_sent(cap->oap, cap->count1, include); |
7129 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7130 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
|
7131 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
|
7132 case '`': // "a`" = a backtick quoted string |
12 | 7133 flag = current_quote(cap->oap, cap->count1, include, |
7134 cap->nchar); | |
7135 break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7136 #if 0 // TODO |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7137 case 'S': // "aS" = a section |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7138 case 'f': // "af" = a filename |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7139 case 'u': // "au" = a URL |
7 | 7140 #endif |
7141 default: | |
7142 flag = FAIL; | |
7143 break; | |
7144 } | |
7145 | |
7146 curbuf->b_p_mps = mps_save; | |
7147 if (flag == FAIL) | |
7148 clearopbeep(cap->oap); | |
7149 adjust_cursor_col(); | |
7150 curwin->w_set_curswant = TRUE; | |
7151 } | |
7152 | |
7153 /* | |
7154 * "q" command: Start/stop recording. | |
7155 * "q:", "q/", "q?": edit command-line in command-line window. | |
7156 */ | |
7157 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7158 nv_record(cmdarg_T *cap) |
7 | 7159 { |
7160 if (cap->oap->op_type == OP_FORMAT) | |
7161 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7162 // "gqq" is the same as "gqgq": format line |
7 | 7163 cap->cmdchar = 'g'; |
7164 cap->nchar = 'q'; | |
7165 nv_operator(cap); | |
7166 } | |
7167 else if (!checkclearop(cap->oap)) | |
7168 { | |
7169 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') | |
7170 { | |
29444
44bb4a607125
patch 9.0.0064: confusing error when using "q:" in command line window
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
7171 if (cmdwin_type != 0) |
44bb4a607125
patch 9.0.0064: confusing error when using "q:" in command line window
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
7172 { |
44bb4a607125
patch 9.0.0064: confusing error when using "q:" in command line window
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
7173 emsg(_(e_cmdline_window_already_open)); |
44bb4a607125
patch 9.0.0064: confusing error when using "q:" in command line window
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
7174 return; |
44bb4a607125
patch 9.0.0064: confusing error when using "q:" in command line window
Bram Moolenaar <Bram@vim.org>
parents:
29340
diff
changeset
|
7175 } |
7 | 7176 stuffcharReadbuff(cap->nchar); |
7177 stuffcharReadbuff(K_CMDWIN); | |
7178 } | |
7179 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7180 // (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
|
7181 // 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
|
7182 if (reg_executing == 0 && do_record(cap->nchar) == FAIL) |
7 | 7183 clearopbeep(cap->oap); |
7184 } | |
7185 } | |
7186 | |
7187 /* | |
7188 * Handle the "@r" command. | |
7189 */ | |
7190 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7191 nv_at(cmdarg_T *cap) |
7 | 7192 { |
7193 if (checkclearop(cap->oap)) | |
7194 return; | |
7195 #ifdef FEAT_EVAL | |
7196 if (cap->nchar == '=') | |
7197 { | |
7198 if (get_expr_register() == NUL) | |
7199 return; | |
7200 } | |
7201 #endif | |
7202 while (cap->count1-- && !got_int) | |
7203 { | |
1034 | 7204 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL) |
7 | 7205 { |
7206 clearopbeep(cap->oap); | |
7207 break; | |
7208 } | |
7209 line_breakcheck(); | |
7210 } | |
7211 } | |
7212 | |
7213 /* | |
7214 * Handle the CTRL-U and CTRL-D commands. | |
7215 */ | |
7216 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7217 nv_halfpage(cmdarg_T *cap) |
7 | 7218 { |
7219 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1) | |
7220 || (cap->cmdchar == Ctrl_D | |
7221 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)) | |
7222 clearopbeep(cap->oap); | |
7223 else if (!checkclearop(cap->oap)) | |
7224 halfpage(cap->cmdchar == Ctrl_D, cap->count0); | |
7225 } | |
7226 | |
7227 /* | |
7228 * Handle "J" or "gJ" command. | |
7229 */ | |
7230 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7231 nv_join(cmdarg_T *cap) |
7 | 7232 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7233 if (VIsual_active) // join the visual lines |
7 | 7234 nv_operator(cap); |
5735 | 7235 else if (!checkclearop(cap->oap)) |
7 | 7236 { |
7237 if (cap->count0 <= 1) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7238 cap->count0 = 2; // default for join is two lines! |
7 | 7239 if (curwin->w_cursor.lnum + cap->count0 - 1 > |
7240 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
|
7241 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7242 // 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
|
7243 if (cap->count0 <= 2) |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7244 { |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7245 clearopbeep(cap->oap); |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7246 return; |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7247 } |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7248 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
|
7249 - curwin->w_cursor.lnum + 1; |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7250 } |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7251 |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7252 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
|
7253 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
|
7254 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE); |
7 | 7255 } |
7256 } | |
7257 | |
7258 /* | |
7259 * "P", "gP", "p" and "gp" commands. | |
7260 */ | |
7261 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7262 nv_put(cmdarg_T *cap) |
7 | 7263 { |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7264 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
|
7265 } |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7266 |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7267 /* |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7268 * "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
|
7269 * "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
|
7270 */ |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7271 static void |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7272 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
|
7273 { |
7 | 7274 int regname = 0; |
7275 void *reg1 = NULL, *reg2 = NULL; | |
84 | 7276 int empty = FALSE; |
236 | 7277 int was_visual = FALSE; |
7 | 7278 int dir; |
7279 int flags = 0; | |
28714
5eea8a249f86
patch 8.2.4881: "P" in Visual mode still changes some registers
Bram Moolenaar <Bram@vim.org>
parents:
28564
diff
changeset
|
7280 int keep_registers = FALSE; |
7 | 7281 |
7282 if (cap->oap->op_type != OP_NOP) | |
7283 { | |
7284 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7285 // "dp" is ":diffput" |
7 | 7286 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p') |
7287 { | |
7288 clearop(cap->oap); | |
6314 | 7289 nv_diffgetput(TRUE, cap->opcount); |
7 | 7290 } |
7291 else | |
7292 #endif | |
7293 clearopbeep(cap->oap); | |
7294 } | |
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
|
7295 #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
|
7296 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
|
7297 { |
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
|
7298 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
|
7299 } |
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
|
7300 #endif |
7 | 7301 else |
7302 { | |
16742
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7303 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
|
7304 { |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7305 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
|
7306 ? FORWARD : BACKWARD; |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7307 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
|
7308 } |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7309 else |
75b5d77bbbab
patch 8.1.1373: "[p" in Visual mode puts in wrong line
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
7310 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
|
7311 || ((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
|
7312 && cap->nchar == 'P')) ? BACKWARD : FORWARD; |
7 | 7313 prep_redo_cmd(cap); |
7314 if (cap->cmdchar == 'g') | |
7315 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
|
7316 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
|
7317 flags |= PUT_BLOCK_INNER; |
7 | 7318 |
7319 if (VIsual_active) | |
7320 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7321 // 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
|
7322 // 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
|
7323 // 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
|
7324 // overwrites if the old contents is being put. |
236 | 7325 was_visual = TRUE; |
7 | 7326 regname = cap->oap->regname; |
28714
5eea8a249f86
patch 8.2.4881: "P" in Visual mode still changes some registers
Bram Moolenaar <Bram@vim.org>
parents:
28564
diff
changeset
|
7327 keep_registers = cap->cmdchar == 'P'; |
5735 | 7328 #ifdef FEAT_CLIPBOARD |
7 | 7329 adjust_clip_reg(®name); |
5735 | 7330 #endif |
5682 | 7331 if (regname == 0 || regname == '"' |
4013 | 7332 || VIM_ISDIGIT(regname) || regname == '-' |
5735 | 7333 #ifdef FEAT_CLIPBOARD |
7 | 7334 || (clip_unnamed && (regname == '*' || regname == '+')) |
5735 | 7335 #endif |
7 | 7336 |
7337 ) | |
7338 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7339 // 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
|
7340 // put, save it first. |
7 | 7341 reg1 = get_register(regname, TRUE); |
7342 } | |
7343 | |
17787
92e0996e1cb8
patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents:
17730
diff
changeset
|
7344 // Now delete the selected text. Avoid messages here. |
7 | 7345 cap->cmdchar = 'd'; |
7346 cap->nchar = NUL; | |
28714
5eea8a249f86
patch 8.2.4881: "P" in Visual mode still changes some registers
Bram Moolenaar <Bram@vim.org>
parents:
28564
diff
changeset
|
7347 cap->oap->regname = keep_registers ? '_' : NUL; |
17787
92e0996e1cb8
patch 8.1.1890: ml_get error when deleting fold marker
Bram Moolenaar <Bram@vim.org>
parents:
17730
diff
changeset
|
7348 ++msg_silent; |
7 | 7349 nv_operator(cap); |
7350 do_pending_operator(cap, 0, FALSE); | |
84 | 7351 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
|
7352 --msg_silent; |
7 | 7353 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7354 // delete PUT_LINE_BACKWARD; |
7 | 7355 cap->oap->regname = regname; |
7356 | |
7357 if (reg1 != NULL) | |
7358 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7359 // 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
|
7360 // it first. Then put back what was there before the delete. |
7 | 7361 reg2 = get_register(regname, FALSE); |
7362 put_register(regname, reg1); | |
7363 } | |
7364 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7365 // 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
|
7366 // 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
|
7367 // characterwise, split a line when putting lines. |
7 | 7368 if (VIsual_mode == 'V') |
7369 flags |= PUT_LINE; | |
7370 else if (VIsual_mode == 'v') | |
7371 flags |= PUT_LINE_SPLIT; | |
7372 if (VIsual_mode == Ctrl_V && dir == FORWARD) | |
7373 flags |= PUT_LINE_FORWARD; | |
7374 dir = BACKWARD; | |
7375 if ((VIsual_mode != 'V' | |
7376 && curwin->w_cursor.col < curbuf->b_op_start.col) | |
7377 || (VIsual_mode == 'V' | |
7378 && 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
|
7379 // 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
|
7380 // forward. |
7 | 7381 dir = FORWARD; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7382 // May have been reset in do_put(). |
5365 | 7383 VIsual_active = TRUE; |
7 | 7384 } |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
7385 do_put(cap->oap->regname, NULL, dir, cap->count1, flags); |
7 | 7386 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7387 // If a register was saved, put it back now. |
7 | 7388 if (reg2 != NULL) |
7389 put_register(regname, reg2); | |
236 | 7390 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7391 // 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
|
7392 // be the most useful, since the original text was removed. |
236 | 7393 if (was_visual) |
7394 { | |
690 | 7395 curbuf->b_visual.vi_start = curbuf->b_op_start; |
7396 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
|
7397 // need to adjust cursor position |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
7398 if (*p_sel == 'e') |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
7399 inc(&curbuf->b_visual.vi_end); |
236 | 7400 } |
7401 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7402 // 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
|
7403 // line that needs to be deleted now. |
84 | 7404 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL) |
817 | 7405 { |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
7406 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
|
7407 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1); |
817 | 7408 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7409 // 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
|
7410 // line. |
817 | 7411 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
7412 { | |
7413 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
7414 coladvance((colnr_T)MAXCOL); | |
7415 } | |
7416 } | |
7 | 7417 auto_format(FALSE, TRUE); |
7418 } | |
7419 } | |
7420 | |
7421 /* | |
7422 * "o" and "O" commands. | |
7423 */ | |
7424 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7425 nv_open(cmdarg_T *cap) |
7 | 7426 { |
7427 #ifdef FEAT_DIFF | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7428 // "do" is ":diffget" |
7 | 7429 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o') |
7430 { | |
7431 clearop(cap->oap); | |
6314 | 7432 nv_diffgetput(FALSE, cap->opcount); |
7 | 7433 } |
7434 else | |
7435 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7436 if (VIsual_active) // switch start and end of visual |
7 | 7437 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
|
7438 #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
|
7439 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
|
7440 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
|
7441 #endif |
7 | 7442 else |
7443 n_opencmd(cap); | |
7444 } | |
7445 | |
7446 #ifdef FEAT_NETBEANS_INTG | |
7447 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7448 nv_nbcmd(cmdarg_T *cap) |
7 | 7449 { |
7450 netbeans_keycommand(cap->nchar); | |
7451 } | |
7452 #endif | |
7453 | |
7454 #ifdef FEAT_DND | |
7455 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7456 nv_drop(cmdarg_T *cap UNUSED) |
7 | 7457 { |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
7458 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND); |
7 | 7459 } |
7460 #endif | |
203 | 7461 |
7462 /* | |
7463 * Trigger CursorHold event. | |
7464 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the | |
7465 * input buffer. "did_cursorhold" is set to avoid retriggering. | |
7466 */ | |
7467 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
7468 nv_cursorhold(cmdarg_T *cap) |
203 | 7469 { |
7470 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf); | |
7471 did_cursorhold = TRUE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18775
diff
changeset
|
7472 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now |
226 | 7473 } |