Mercurial > vim
annotate src/screen.c @ 30651:c6e85b9a88a0 v9.0.0660
patch 9.0.0660: mapping with CTRL keys does not work in the GUI
Commit: https://github.com/vim/vim/commit/2cd0f27b75c4497bec872819a965b3d6b4d55030
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Oct 4 20:14:28 2022 +0100
patch 9.0.0660: mapping with CTRL keys does not work in the GUI
Problem: Mapping with CTRL keys does not work in the GUI.
Solution: Recognize CSI next to K_SPECIAL. (closes https://github.com/vim/vim/issues/11275, closes https://github.com/vim/vim/issues/11270)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 04 Oct 2022 21:15:03 +0200 |
parents | dfb02f9dcbe8 |
children | cf77f7a19ab6 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9992
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
11 * screen.c: Lower level code for displaying on the screen. |
7 | 12 * |
13 * Output to the screen (console, terminal emulator or GUI window) is minimized | |
14 * by remembering what is already on the screen, and only updating the parts | |
15 * that changed. | |
16 * | |
17 * ScreenLines[off] Contains a copy of the whole screen, as it is currently | |
18 * displayed (excluding text written by external commands). | |
19 * ScreenAttrs[off] Contains the associated attributes. | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
20 * ScreenCols[off] Contains the byte offset in the line. -1 means not |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
21 * available (below last line), MAXCOL means after the end |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
22 * of the line. |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
23 * |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
24 * LineOffset[row] Contains the offset into ScreenLines*[], ScreenAttrs[] |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
25 * and ScreenCols[] for each line. |
7 | 26 * LineWraps[row] Flag for each line whether it wraps to the next line. |
27 * | |
28 * For double-byte characters, two consecutive bytes in ScreenLines[] can form | |
29 * one character which occupies two display cells. | |
30 * For UTF-8 a multi-byte character is converted to Unicode and stored in | |
31 * ScreenLinesUC[]. ScreenLines[] contains the first byte only. For an ASCII | |
2124
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
32 * character without composing chars ScreenLinesUC[] will be 0 and |
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
33 * ScreenLinesC[][] is not used. When the character occupies two display |
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
34 * cells the next byte in ScreenLines[] is 0. |
714 | 35 * ScreenLinesC[][] contain up to 'maxcombine' composing characters |
2124
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
36 * (drawn on top of the first character). There is 0 after the last one used. |
7 | 37 * ScreenLines2[] is only used for euc-jp to store the second byte if the |
38 * first byte is 0x8e (single-width character). | |
39 * | |
40 * The screen_*() functions write to the screen and handle updating | |
41 * ScreenLines[]. | |
42 */ | |
43 | |
44 #include "vim.h" | |
45 | |
46 /* | |
47 * The attributes that are actually active for writing to the screen. | |
48 */ | |
49 static int screen_attr = 0; | |
50 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
51 static void screen_char_2(unsigned off, int row, int col); |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
52 static int screenclear2(int doclear); |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
53 static void lineclear(unsigned off, int width, int attr); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
54 static void lineinvalid(unsigned off, int width); |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
55 static int win_do_lines(win_T *wp, int row, int line_count, int mayclear, int del, int clear_attr); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
56 static void win_rest_invalid(win_T *wp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
57 static void msg_pos_mode(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
58 static void recording_mode(int attr); |
7 | 59 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
60 // Ugly global: overrule attribute used by screen_char() |
7 | 61 static int screen_char_attr = 0; |
62 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2237
diff
changeset
|
63 #if defined(FEAT_CONCEAL) || defined(PROTO) |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
64 /* |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
65 * Return TRUE if the cursor line in window "wp" may be concealed, according |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
66 * to the 'concealcursor' option. |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
67 */ |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
68 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
69 conceal_cursor_line(win_T *wp) |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
70 { |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
71 int c; |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
72 |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
73 if (*wp->w_p_cocu == NUL) |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
74 return FALSE; |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
75 if (get_real_state() & MODE_VISUAL) |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
76 c = 'v'; |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
77 else if (State & MODE_INSERT) |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
78 c = 'i'; |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
79 else if (State & MODE_NORMAL) |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
80 c = 'n'; |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
81 else if (State & MODE_CMDLINE) |
2382
3a5ededa240a
Add the 'c' flag to 'concealcursor'.
Bram Moolenaar <bram@vim.org>
parents:
2381
diff
changeset
|
82 c = 'c'; |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
83 else |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
84 return FALSE; |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
85 return vim_strchr(wp->w_p_cocu, c) != NULL; |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
86 } |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
87 |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
88 /* |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
89 * Check if the cursor line needs to be redrawn because of 'concealcursor'. |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
90 * To be called after changing the state, "was_concealed" is the value of |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
91 * "conceal_cursor_line()" before the change. |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
92 * " |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
93 */ |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
94 void |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
95 conceal_check_cursor_line(int was_concealed) |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
96 { |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
97 if (curwin->w_p_cole > 0 && conceal_cursor_line(curwin) != was_concealed) |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
98 { |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
99 int wcol = curwin->w_wcol; |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
100 |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
101 need_cursor_line_redraw = TRUE; |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
102 // Need to recompute cursor column, e.g., when starting Visual mode |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
103 // without concealing. |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
104 curs_columns(TRUE); |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
105 |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
106 // When concealing now w_wcol will be computed wrong, keep the previous |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
107 // value, it will be updated in win_line(). |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
108 if (!was_concealed) |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
109 curwin->w_wcol = wcol; |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
110 } |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2375
diff
changeset
|
111 } |
7 | 112 #endif |
113 | |
16817
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
114 /* |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
115 * Get 'wincolor' attribute for window "wp". If not set and "wp" is a popup |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
116 * window then get the "Pmenu" highlight attribute. |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
117 */ |
17055
f4de7ccdfd8c
patch 8.1.1527: when moving popup window over the cmdline it is not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
118 int |
16817
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
119 get_wcr_attr(win_T *wp) |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
120 { |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
121 int wcr_attr = 0; |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
122 |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
123 if (*wp->w_p_wcr != NUL) |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
124 wcr_attr = syn_name2attr(wp->w_p_wcr); |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
125 #ifdef FEAT_PROP_POPUP |
17628
6146b10714de
patch 8.1.1811: popup window color cannot be set to "Normal"
Bram Moolenaar <Bram@vim.org>
parents:
17551
diff
changeset
|
126 else if (WIN_IS_POPUP(wp)) |
17771
4bd21046902b
patch 8.1.1882: cannot specify properties of the info popup window
Bram Moolenaar <Bram@vim.org>
parents:
17742
diff
changeset
|
127 { |
4bd21046902b
patch 8.1.1882: cannot specify properties of the info popup window
Bram Moolenaar <Bram@vim.org>
parents:
17742
diff
changeset
|
128 if (wp->w_popup_flags & POPF_INFO) |
4bd21046902b
patch 8.1.1882: cannot specify properties of the info popup window
Bram Moolenaar <Bram@vim.org>
parents:
17742
diff
changeset
|
129 wcr_attr = HL_ATTR(HLF_PSI); // PmenuSel |
4bd21046902b
patch 8.1.1882: cannot specify properties of the info popup window
Bram Moolenaar <Bram@vim.org>
parents:
17742
diff
changeset
|
130 else |
4bd21046902b
patch 8.1.1882: cannot specify properties of the info popup window
Bram Moolenaar <Bram@vim.org>
parents:
17742
diff
changeset
|
131 wcr_attr = HL_ATTR(HLF_PNI); // Pmenu |
4bd21046902b
patch 8.1.1882: cannot specify properties of the info popup window
Bram Moolenaar <Bram@vim.org>
parents:
17742
diff
changeset
|
132 } |
16817
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
133 #endif |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
134 return wcr_attr; |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
135 } |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
136 |
7 | 137 /* |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
138 * Call screen_fill() with the columns adjusted for 'rightleft' if needed. |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
139 * Return the new offset. |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
140 */ |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
141 static int |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
142 screen_fill_end( |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
143 win_T *wp, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
144 int c1, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
145 int c2, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
146 int off, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
147 int width, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
148 int row, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
149 int endrow, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
150 int attr) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
151 { |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
152 int nn = off + width; |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
153 |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
154 if (nn > wp->w_width) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
155 nn = wp->w_width; |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
156 #ifdef FEAT_RIGHTLEFT |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
157 if (wp->w_p_rl) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
158 { |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
159 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
160 W_ENDCOL(wp) - nn, (int)W_ENDCOL(wp) - off, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
161 c1, c2, attr); |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
162 } |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
163 else |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
164 #endif |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
165 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
166 wp->w_wincol + off, (int)wp->w_wincol + nn, |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
167 c1, c2, attr); |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
168 return nn; |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
169 } |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
170 |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
171 /* |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
172 * Clear lines near the end the window and mark the unused lines with "c1". |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
173 * use "c2" as the filler character. |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
174 * When "draw_margin" is TRUE then draw the sign, fold and number columns. |
7 | 175 */ |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
176 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
177 win_draw_end( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
178 win_T *wp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
179 int c1, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
180 int c2, |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
181 int draw_margin, |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
182 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
183 int endrow, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
184 hlf_T hl) |
7 | 185 { |
186 int n = 0; | |
16788
f7268ec2c889
patch 8.1.1396: 'wincolor' does not apply to lines below the buffer
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
187 int attr = HL_ATTR(hl); |
16817
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
188 int wcr_attr = get_wcr_attr(wp); |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
189 |
069ee8dc8c8d
patch 8.1.1410: popup_move() is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16813
diff
changeset
|
190 attr = hl_combine_attr(wcr_attr, attr); |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
191 |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
192 if (draw_margin) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
193 { |
6553 | 194 #ifdef FEAT_FOLDING |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
195 int fdc = compute_foldcolumn(wp, 0); |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
196 |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
197 if (fdc > 0) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
198 // draw the fold column |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
199 n = screen_fill_end(wp, ' ', ' ', n, fdc, |
16788
f7268ec2c889
patch 8.1.1396: 'wincolor' does not apply to lines below the buffer
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
200 row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_FC))); |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
201 #endif |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
202 #ifdef FEAT_SIGNS |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
203 if (signcolumn_on(wp)) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
204 // draw the sign column |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
205 n = screen_fill_end(wp, ' ', ' ', n, 2, |
16788
f7268ec2c889
patch 8.1.1396: 'wincolor' does not apply to lines below the buffer
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
206 row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_SC))); |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
207 #endif |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
208 if ((wp->w_p_nu || wp->w_p_rnu) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
209 && vim_strchr(p_cpo, CPO_NUMCOL) == NULL) |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
210 // draw the number column |
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
211 n = screen_fill_end(wp, ' ', ' ', n, number_width(wp) + 1, |
16788
f7268ec2c889
patch 8.1.1396: 'wincolor' does not apply to lines below the buffer
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
212 row, endrow, hl_combine_attr(wcr_attr, HL_ATTR(HLF_N))); |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
213 } |
7 | 214 |
215 #ifdef FEAT_RIGHTLEFT | |
216 if (wp->w_p_rl) | |
217 { | |
218 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, | |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
219 wp->w_wincol, W_ENDCOL(wp) - 1 - n, |
16788
f7268ec2c889
patch 8.1.1396: 'wincolor' does not apply to lines below the buffer
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
220 c2, c2, attr); |
7 | 221 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
222 W_ENDCOL(wp) - 1 - n, W_ENDCOL(wp) - n, |
16788
f7268ec2c889
patch 8.1.1396: 'wincolor' does not apply to lines below the buffer
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
223 c1, c2, attr); |
7 | 224 } |
225 else | |
226 #endif | |
227 { | |
228 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow, | |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
229 wp->w_wincol + n, (int)W_ENDCOL(wp), |
16788
f7268ec2c889
patch 8.1.1396: 'wincolor' does not apply to lines below the buffer
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
230 c1, c2, attr); |
7 | 231 } |
16135
dc0801e374e0
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
232 |
7 | 233 set_empty_rows(wp, row); |
234 } | |
235 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
236 #if defined(FEAT_FOLDING) || defined(PROTO) |
7 | 237 /* |
6553 | 238 * Compute the width of the foldcolumn. Based on 'foldcolumn' and how much |
239 * space is available for window "wp", minus "col". | |
240 */ | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
241 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
242 compute_foldcolumn(win_T *wp, int col) |
6553 | 243 { |
244 int fdc = wp->w_p_fdc; | |
245 int wmw = wp == curwin && p_wmw == 0 ? 1 : p_wmw; | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
246 int wwidth = wp->w_width; |
6553 | 247 |
248 if (fdc > wwidth - (col + wmw)) | |
249 fdc = wwidth - (col + wmw); | |
250 return fdc; | |
251 } | |
252 | |
253 /* | |
7 | 254 * Fill the foldcolumn at "p" for window "wp". |
548 | 255 * Only to be called when 'foldcolumn' > 0. |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
256 * Returns the number of bytes stored in 'p'. When non-multibyte characters are |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
257 * used for the fold column markers, this is equal to 'fdc' setting. Otherwise, |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
258 * this will be greater than 'fdc'. |
7 | 259 */ |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
260 size_t |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
261 fill_foldcolumn( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
262 char_u *p, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
263 win_T *wp, |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
264 int closed, // TRUE of FALSE |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
265 linenr_T lnum) // current line number |
7 | 266 { |
267 int i = 0; | |
268 int level; | |
269 int first_level; | |
519 | 270 int empty; |
6553 | 271 int fdc = compute_foldcolumn(wp, 0); |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
272 size_t byte_counter = 0; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
273 int symbol = 0; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
274 int len = 0; |
7 | 275 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
276 // Init to all spaces. |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
277 vim_memset(p, ' ', MAX_MCO * fdc + 1); |
7 | 278 |
279 level = win_foldinfo.fi_level; | |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
280 empty = (fdc == 1) ? 0 : 1; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
281 |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
282 // If the column is too narrow, we start at the lowest level that |
24055
90d1636a8fcb
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Bram Moolenaar <Bram@vim.org>
parents:
24043
diff
changeset
|
283 // fits and use numbers to indicate the depth. |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
284 first_level = level - fdc - closed + 1 + empty; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
285 if (first_level < 1) |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
286 first_level = 1; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
287 |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
288 for (i = 0; i < MIN(fdc, level); i++) |
7 | 289 { |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
290 if (win_foldinfo.fi_lnum == lnum |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
291 && first_level + i >= win_foldinfo.fi_low_level) |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
292 symbol = wp->w_fill_chars.foldopen; |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
293 else if (first_level == 1) |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
294 symbol = wp->w_fill_chars.foldsep; |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
295 else if (first_level + i <= 9) |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
296 symbol = '0' + first_level + i; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
297 else |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
298 symbol = '>'; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
299 |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
300 len = utf_char2bytes(symbol, &p[byte_counter]); |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
301 byte_counter += len; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
302 if (first_level + i >= level) |
7 | 303 { |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
304 i++; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
305 break; |
7 | 306 } |
307 } | |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
308 |
7 | 309 if (closed) |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
310 { |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
311 if (symbol != 0) |
24184
8ebf8b3dfc08
patch 8.2.2633: multi-byte 'fillchars' for folding do not show properly
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
312 { |
8ebf8b3dfc08
patch 8.2.2633: multi-byte 'fillchars' for folding do not show properly
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
313 // rollback length and the character |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
314 byte_counter -= len; |
24184
8ebf8b3dfc08
patch 8.2.2633: multi-byte 'fillchars' for folding do not show properly
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
315 if (len > 1) |
8ebf8b3dfc08
patch 8.2.2633: multi-byte 'fillchars' for folding do not show properly
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
316 // for a multibyte character, erase all the bytes |
8ebf8b3dfc08
patch 8.2.2633: multi-byte 'fillchars' for folding do not show properly
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
317 vim_memset(p + byte_counter, ' ', len); |
8ebf8b3dfc08
patch 8.2.2633: multi-byte 'fillchars' for folding do not show properly
Bram Moolenaar <Bram@vim.org>
parents:
24055
diff
changeset
|
318 } |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
319 symbol = wp->w_fill_chars.foldclosed; |
24043
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
320 len = utf_char2bytes(symbol, &p[byte_counter]); |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
321 byte_counter += len; |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
322 } |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
323 |
15408ab5fed7
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Bram Moolenaar <Bram@vim.org>
parents:
23964
diff
changeset
|
324 return MAX(byte_counter + (fdc - i), (size_t)fdc); |
7 | 325 } |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
326 #endif // FEAT_FOLDING |
7 | 327 |
714 | 328 /* |
329 * Return if the composing characters at "off_from" and "off_to" differ. | |
2124
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
330 * Only to be used when ScreenLinesUC[off_from] != 0. |
714 | 331 */ |
332 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
333 comp_char_differs(int off_from, int off_to) |
714 | 334 { |
335 int i; | |
336 | |
337 for (i = 0; i < Screen_mco; ++i) | |
338 { | |
339 if (ScreenLinesC[i][off_from] != ScreenLinesC[i][off_to]) | |
340 return TRUE; | |
341 if (ScreenLinesC[i][off_from] == 0) | |
342 break; | |
343 } | |
344 return FALSE; | |
345 } | |
346 | |
7 | 347 /* |
348 * Check whether the given character needs redrawing: | |
349 * - the (first byte of the) character is different | |
350 * - the attributes are different | |
351 * - the character is multi-byte and the next byte is different | |
1616 | 352 * - the character is two cells wide and the second cell differs. |
7 | 353 */ |
354 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
355 char_needs_redraw(int off_from, int off_to, int cols) |
7 | 356 { |
357 if (cols > 0 | |
358 && ((ScreenLines[off_from] != ScreenLines[off_to] | |
359 || ScreenAttrs[off_from] != ScreenAttrs[off_to]) | |
360 || (enc_dbcs != 0 | |
361 && MB_BYTE2LEN(ScreenLines[off_from]) > 1 | |
362 && (enc_dbcs == DBCS_JPNU && ScreenLines[off_from] == 0x8e | |
363 ? ScreenLines2[off_from] != ScreenLines2[off_to] | |
364 : (cols > 1 && ScreenLines[off_from + 1] | |
365 != ScreenLines[off_to + 1]))) | |
366 || (enc_utf8 | |
367 && (ScreenLinesUC[off_from] != ScreenLinesUC[off_to] | |
368 || (ScreenLinesUC[off_from] != 0 | |
1616 | 369 && comp_char_differs(off_from, off_to)) |
3759 | 370 || ((*mb_off2cells)(off_from, off_from + cols) > 1 |
371 && ScreenLines[off_from + 1] | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
372 != ScreenLines[off_to + 1]))))) |
7 | 373 return TRUE; |
374 return FALSE; | |
375 } | |
376 | |
11670
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
377 #if defined(FEAT_TERMINAL) || defined(PROTO) |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
378 /* |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
379 * Return the index in ScreenLines[] for the current screen line. |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
380 */ |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
381 int |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
382 screen_get_current_line_off() |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
383 { |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
384 return (int)(current_ScreenLine - ScreenLines); |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
385 } |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
386 #endif |
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
387 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
388 #ifdef FEAT_PROP_POPUP |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
389 /* |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
390 * Return TRUE if this position has a higher level popup or this cell is |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
391 * transparent in the current popup. |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
392 */ |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
393 static int |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
394 blocked_by_popup(int row, int col) |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
395 { |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
396 int off; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
397 |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
398 if (!popup_visible) |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
399 return FALSE; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
400 off = row * screen_Columns + col; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
401 return popup_mask[off] > screen_zindex || popup_transparent[off]; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
402 } |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
403 #endif |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
404 |
7 | 405 /* |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
406 * Reset the highlighting. Used before clearing the screen. |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
407 */ |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
408 void |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
409 reset_screen_attr(void) |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
410 { |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
411 #ifdef FEAT_GUI |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
412 if (gui.in_use) |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
413 // Use a code that will reset gui.highlight_mask in |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
414 // gui_stop_highlight(). |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
415 screen_attr = HL_ALL + 1; |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
416 else |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
417 #endif |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
418 // Use attributes that is very unlikely to appear in text. |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
419 screen_attr = HL_BOLD | HL_UNDERLINE | HL_INVERSE | HL_STRIKETHROUGH; |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
420 } |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
421 |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
422 /* |
30606
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
423 * Return TRUE if the character at "row" / "col" is under the popup menu and it |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
424 * will be redrawn soon or it is under another popup. |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
425 */ |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
426 static int |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
427 skip_for_popup(int row, int col) |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
428 { |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
429 // Popup windows with zindex higher than POPUPMENU_ZINDEX go on top. |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
430 if (pum_under_menu(row, col, TRUE) |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
431 #ifdef FEAT_PROP_POPUP |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
432 && screen_zindex <= POPUPMENU_ZINDEX |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
433 #endif |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
434 ) |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
435 return TRUE; |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
436 #ifdef FEAT_PROP_POPUP |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
437 if (blocked_by_popup(row, col)) |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
438 return TRUE; |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
439 #endif |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
440 return FALSE; |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
441 } |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
442 |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
443 /* |
7 | 444 * Move one "cooked" screen line to the screen, but only the characters that |
445 * have actually changed. Handle insert/delete character. | |
446 * "coloff" gives the first column on the screen for this line. | |
447 * "endcol" gives the columns where valid characters are. | |
448 * "clear_width" is the width of the window. It's > 0 if the rest of the line | |
449 * needs to be cleared, negative otherwise. | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
450 * "flags" can have bits: |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
451 * SLF_POPUP popup window |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
452 * SLF_RIGHTLEFT rightleft window: |
7 | 453 * When TRUE and "clear_width" > 0, clear columns 0 to "endcol" |
454 * When FALSE and "clear_width" > 0, clear columns "endcol" to "clear_width" | |
455 */ | |
11670
3b2afa2b77b3
patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents:
11657
diff
changeset
|
456 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
457 screen_line( |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
458 win_T *wp, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
459 int row, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
460 int coloff, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
461 int endcol, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
462 int clear_width, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
463 int flags UNUSED) |
7 | 464 { |
465 unsigned off_from; | |
466 unsigned off_to; | |
1378 | 467 unsigned max_off_from; |
468 unsigned max_off_to; | |
7 | 469 int col = 0; |
470 int hl; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
471 int force = FALSE; // force update rest of the line |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
472 int redraw_this // bool: does character need redraw? |
7 | 473 #ifdef FEAT_GUI |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
474 = TRUE // For GUI when while-loop empty |
7 | 475 #endif |
476 ; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
477 int redraw_next; // redraw_this for next character |
7 | 478 int clear_next = FALSE; |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
479 int char_cells; // 1: normal char |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
480 // 2: occupies two display cells |
7 | 481 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
482 // Check for illegal row and col, just in case. |
3413 | 483 if (row >= Rows) |
484 row = Rows - 1; | |
485 if (endcol > Columns) | |
486 endcol = Columns; | |
487 | |
7 | 488 # ifdef FEAT_CLIPBOARD |
489 clip_may_clear_selection(row, row); | |
490 # endif | |
491 | |
492 off_from = (unsigned)(current_ScreenLine - ScreenLines); | |
493 off_to = LineOffset[row] + coloff; | |
1378 | 494 max_off_from = off_from + screen_Columns; |
495 max_off_to = LineOffset[row] + screen_Columns; | |
7 | 496 |
497 #ifdef FEAT_RIGHTLEFT | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
498 if (flags & SLF_RIGHTLEFT) |
7 | 499 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
500 // Clear rest first, because it's left of the text. |
7 | 501 if (clear_width > 0) |
502 { | |
503 while (col <= endcol && ScreenLines[off_to] == ' ' | |
504 && ScreenAttrs[off_to] == 0 | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
505 && (!enc_utf8 || ScreenLinesUC[off_to] == 0)) |
7 | 506 { |
507 ++off_to; | |
508 ++col; | |
509 } | |
510 if (col <= endcol) | |
511 screen_fill(row, row + 1, col + coloff, | |
512 endcol + coloff + 1, ' ', ' ', 0); | |
513 } | |
514 col = endcol + 1; | |
515 off_to = LineOffset[row] + col + coloff; | |
516 off_from += col; | |
517 endcol = (clear_width > 0 ? clear_width : -clear_width); | |
518 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
519 #endif // FEAT_RIGHTLEFT |
7 | 520 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
521 #ifdef FEAT_PROP_POPUP |
18720
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
522 // First char of a popup window may go on top of the right half of a |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
523 // double-wide character. Clear the left half to avoid it getting the popup |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
524 // window background color. |
22832
8059beb101d0
patch 8.2.1963: crash when using a popup window with "latin1" encoding
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
525 if (coloff > 0 && enc_utf8 |
8059beb101d0
patch 8.2.1963: crash when using a popup window with "latin1" encoding
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
526 && ScreenLines[off_to] == 0 |
21929
771904112b47
patch 8.2.1514: multibyte vertical separator is cleared when dragging popup
Bram Moolenaar <Bram@vim.org>
parents:
21919
diff
changeset
|
527 && ScreenLinesUC[off_to - 1] != 0 |
771904112b47
patch 8.2.1514: multibyte vertical separator is cleared when dragging popup
Bram Moolenaar <Bram@vim.org>
parents:
21919
diff
changeset
|
528 && (*mb_char2cells)(ScreenLinesUC[off_to - 1]) > 1) |
18720
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
529 { |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
530 ScreenLines[off_to - 1] = ' '; |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
531 ScreenLinesUC[off_to - 1] = 0; |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
532 screen_char(off_to - 1, row, col + coloff - 1); |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
533 } |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
534 #endif |
7f066dff9d70
patch 8.1.2351: 'wincolor' not used for > for not fitting double width char
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
535 |
7 | 536 redraw_next = char_needs_redraw(off_from, off_to, endcol - col); |
537 | |
538 while (col < endcol) | |
539 { | |
540 if (has_mbyte && (col + 1 < endcol)) | |
1378 | 541 char_cells = (*mb_off2cells)(off_from, max_off_from); |
7 | 542 else |
543 char_cells = 1; | |
544 | |
545 redraw_this = redraw_next; | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
546 redraw_next = force || char_needs_redraw(off_from + char_cells, |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
547 off_to + char_cells, endcol - col - char_cells); |
7 | 548 |
549 #ifdef FEAT_GUI | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
550 // If the next character was bold, then redraw the current character to |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
551 // remove any pixels that might have spilt over into us. This only |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
552 // happens in the GUI. |
7 | 553 if (redraw_next && gui.in_use) |
554 { | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
555 hl = ScreenAttrs[off_to + char_cells]; |
743 | 556 if (hl > HL_ALL) |
557 hl = syn_attr2attr(hl); | |
558 if (hl & HL_BOLD) | |
7 | 559 redraw_this = TRUE; |
560 } | |
561 #endif | |
30606
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
562 // Do not redraw if under the popup menu. |
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
563 if (redraw_this && skip_for_popup(row, col + coloff)) |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
564 redraw_this = FALSE; |
30606
c5356021a938
patch 9.0.0638: popup menu highlight wrong on top of preview popup
Bram Moolenaar <Bram@vim.org>
parents:
30598
diff
changeset
|
565 |
7 | 566 if (redraw_this) |
567 { | |
568 /* | |
569 * Special handling when 'xs' termcap flag set (hpterm): | |
570 * Attributes for characters are stored at the position where the | |
571 * cursor is when writing the highlighting code. The | |
572 * start-highlighting code must be written with the cursor on the | |
573 * first highlighted character. The stop-highlighting code must | |
574 * be written with the cursor just after the last highlighted | |
575 * character. | |
15034
6e4e0d43b20b
patch 8.1.0528: various typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
14877
diff
changeset
|
576 * Overwriting a character doesn't remove its highlighting. Need |
7 | 577 * to clear the rest of the line, and force redrawing it |
578 * completely. | |
579 */ | |
580 if ( p_wiv | |
581 && !force | |
582 #ifdef FEAT_GUI | |
583 && !gui.in_use | |
584 #endif | |
585 && ScreenAttrs[off_to] != 0 | |
586 && ScreenAttrs[off_from] != ScreenAttrs[off_to]) | |
587 { | |
588 /* | |
589 * Need to remove highlighting attributes here. | |
590 */ | |
591 windgoto(row, col + coloff); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
592 out_str(T_CE); // clear rest of this screen line |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
593 screen_start(); // don't know where cursor is now |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
594 force = TRUE; // force redraw of rest of the line |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
595 redraw_next = TRUE; // or else next char would miss out |
7 | 596 |
597 /* | |
598 * If the previous character was highlighted, need to stop | |
599 * highlighting at this character. | |
600 */ | |
601 if (col + coloff > 0 && ScreenAttrs[off_to - 1] != 0) | |
602 { | |
603 screen_attr = ScreenAttrs[off_to - 1]; | |
604 term_windgoto(row, col + coloff); | |
605 screen_stop_highlight(); | |
606 } | |
607 else | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
608 screen_attr = 0; // highlighting has stopped |
7 | 609 } |
610 if (enc_dbcs != 0) | |
611 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
612 // Check if overwriting a double-byte with a single-byte or |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
613 // the other way around requires another character to be |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
614 // redrawn. For UTF-8 this isn't needed, because comparing |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
615 // ScreenLinesUC[] is sufficient. |
7 | 616 if (char_cells == 1 |
617 && col + 1 < endcol | |
1378 | 618 && (*mb_off2cells)(off_to, max_off_to) > 1) |
7 | 619 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
620 // Writing a single-cell character over a double-cell |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
621 // character: need to redraw the next cell. |
7 | 622 ScreenLines[off_to + 1] = 0; |
623 redraw_next = TRUE; | |
624 } | |
625 else if (char_cells == 2 | |
626 && col + 2 < endcol | |
1378 | 627 && (*mb_off2cells)(off_to, max_off_to) == 1 |
628 && (*mb_off2cells)(off_to + 1, max_off_to) > 1) | |
7 | 629 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
630 // Writing the second half of a double-cell character over |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
631 // a double-cell character: need to redraw the second |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
632 // cell. |
7 | 633 ScreenLines[off_to + 2] = 0; |
634 redraw_next = TRUE; | |
635 } | |
636 | |
637 if (enc_dbcs == DBCS_JPNU) | |
638 ScreenLines2[off_to] = ScreenLines2[off_from]; | |
639 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
640 // When writing a single-width character over a double-width |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
641 // character and at the end of the redrawn text, need to clear out |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
642 // the right half of the old character. |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
643 // Also required when writing the right half of a double-width |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
644 // char over the left half of an existing one. |
7 | 645 if (has_mbyte && col + char_cells == endcol |
646 && ((char_cells == 1 | |
1378 | 647 && (*mb_off2cells)(off_to, max_off_to) > 1) |
7 | 648 || (char_cells == 2 |
1378 | 649 && (*mb_off2cells)(off_to, max_off_to) == 1 |
650 && (*mb_off2cells)(off_to + 1, max_off_to) > 1))) | |
7 | 651 clear_next = TRUE; |
652 | |
653 ScreenLines[off_to] = ScreenLines[off_from]; | |
654 if (enc_utf8) | |
655 { | |
656 ScreenLinesUC[off_to] = ScreenLinesUC[off_from]; | |
657 if (ScreenLinesUC[off_from] != 0) | |
658 { | |
714 | 659 int i; |
660 | |
661 for (i = 0; i < Screen_mco; ++i) | |
662 ScreenLinesC[i][off_to] = ScreenLinesC[i][off_from]; | |
7 | 663 } |
664 } | |
665 if (char_cells == 2) | |
666 ScreenLines[off_to + 1] = ScreenLines[off_from + 1]; | |
667 | |
668 #if defined(FEAT_GUI) || defined(UNIX) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
669 // The bold trick makes a single column of pixels appear in the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
670 // next character. When a bold character is removed, the next |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
671 // character should be redrawn too. This happens for our own GUI |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
672 // and for some xterms. |
7 | 673 if ( |
674 # ifdef FEAT_GUI | |
675 gui.in_use | |
676 # endif | |
677 # if defined(FEAT_GUI) && defined(UNIX) | |
678 || | |
679 # endif | |
680 # ifdef UNIX | |
681 term_is_xterm | |
682 # endif | |
683 ) | |
684 { | |
685 hl = ScreenAttrs[off_to]; | |
743 | 686 if (hl > HL_ALL) |
687 hl = syn_attr2attr(hl); | |
688 if (hl & HL_BOLD) | |
7 | 689 redraw_next = TRUE; |
690 } | |
691 #endif | |
692 ScreenAttrs[off_to] = ScreenAttrs[off_from]; | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
693 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
694 // For simplicity set the attributes of second half of a |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
695 // double-wide character equal to the first half. |
819 | 696 if (char_cells == 2) |
697 ScreenAttrs[off_to + 1] = ScreenAttrs[off_from]; | |
698 | |
7 | 699 if (enc_dbcs != 0 && char_cells == 2) |
700 screen_char_2(off_to, row, col + coloff); | |
701 else | |
702 screen_char(off_to, row, col + coloff); | |
703 } | |
704 else if ( p_wiv | |
705 #ifdef FEAT_GUI | |
706 && !gui.in_use | |
707 #endif | |
708 && col + coloff > 0) | |
709 { | |
710 if (ScreenAttrs[off_to] == ScreenAttrs[off_to - 1]) | |
711 { | |
712 /* | |
713 * Don't output stop-highlight when moving the cursor, it will | |
714 * stop the highlighting when it should continue. | |
715 */ | |
716 screen_attr = 0; | |
717 } | |
718 else if (screen_attr != 0) | |
719 screen_stop_highlight(); | |
720 } | |
721 | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
722 ScreenCols[off_to] = ScreenCols[off_from]; |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
723 if (char_cells == 2) |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
724 ScreenCols[off_to + 1] = ScreenCols[off_from]; |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
725 |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
726 off_to += char_cells; |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
727 off_from += char_cells; |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
728 col += char_cells; |
7 | 729 } |
730 | |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
731 if (clear_next && !skip_for_popup(row, col + coloff)) |
7 | 732 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
733 // Clear the second half of a double-wide character of which the left |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
734 // half was overwritten with a single-wide character. |
7 | 735 ScreenLines[off_to] = ' '; |
736 if (enc_utf8) | |
737 ScreenLinesUC[off_to] = 0; | |
738 screen_char(off_to, row, col + coloff); | |
739 } | |
740 | |
741 if (clear_width > 0 | |
742 #ifdef FEAT_RIGHTLEFT | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
743 && !(flags & SLF_RIGHTLEFT) |
7 | 744 #endif |
745 ) | |
746 { | |
747 #ifdef FEAT_GUI | |
748 int startCol = col; | |
749 #endif | |
750 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
751 // blank out the rest of the line |
7 | 752 while (col < clear_width && ScreenLines[off_to] == ' ' |
753 && ScreenAttrs[off_to] == 0 | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
754 && (!enc_utf8 || ScreenLinesUC[off_to] == 0)) |
7 | 755 { |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
756 ScreenCols[off_to] = MAXCOL; |
7 | 757 ++off_to; |
758 ++col; | |
759 } | |
760 if (col < clear_width) | |
761 { | |
762 #ifdef FEAT_GUI | |
763 /* | |
764 * In the GUI, clearing the rest of the line may leave pixels | |
765 * behind if the first character cleared was bold. Some bold | |
766 * fonts spill over the left. In this case we redraw the previous | |
767 * character too. If we didn't skip any blanks above, then we | |
768 * only redraw if the character wasn't already redrawn anyway. | |
769 */ | |
996 | 770 if (gui.in_use && (col > startCol || !redraw_this)) |
7 | 771 { |
772 hl = ScreenAttrs[off_to]; | |
773 if (hl > HL_ALL || (hl & HL_BOLD)) | |
996 | 774 { |
775 int prev_cells = 1; | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
776 |
996 | 777 if (enc_utf8) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
778 // for utf-8, ScreenLines[char_offset + 1] == 0 means |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
779 // that its width is 2. |
996 | 780 prev_cells = ScreenLines[off_to - 1] == 0 ? 2 : 1; |
781 else if (enc_dbcs != 0) | |
782 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
783 // find previous character by counting from first |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
784 // column and get its width. |
996 | 785 unsigned off = LineOffset[row]; |
1378 | 786 unsigned max_off = LineOffset[row] + screen_Columns; |
996 | 787 |
788 while (off < off_to) | |
789 { | |
1378 | 790 prev_cells = (*mb_off2cells)(off, max_off); |
996 | 791 off += prev_cells; |
792 } | |
793 } | |
794 | |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
795 if (!skip_for_popup(row, col + coloff - prev_cells)) |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
796 { |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
797 if (enc_dbcs != 0 && prev_cells > 1) |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
798 screen_char_2(off_to - prev_cells, row, |
996 | 799 col + coloff - prev_cells); |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
800 else |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
801 screen_char(off_to - prev_cells, row, |
996 | 802 col + coloff - prev_cells); |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
803 } |
996 | 804 } |
7 | 805 } |
806 #endif | |
807 screen_fill(row, row + 1, col + coloff, clear_width + coloff, | |
808 ' ', ' ', 0); | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
809 while (col < clear_width) |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
810 { |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
811 ScreenCols[off_to++] = MAXCOL; |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
812 ++col; |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
813 } |
7 | 814 } |
815 } | |
816 | |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
817 if (clear_width > 0 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
818 #ifdef FEAT_PROP_POPUP |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
819 && !(flags & SLF_POPUP) // no separator for popup window |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
820 #endif |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
821 ) |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
822 { |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
823 // For a window that has a right neighbor, draw the separator char |
16994
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
824 // right of the window contents. But not on top of a popup window. |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
825 if (coloff + col < Columns) |
7 | 826 { |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
827 if (!skip_for_popup(row, col + coloff)) |
16994
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
828 { |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
829 int c; |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
830 |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
831 c = fillchar_vsep(&hl, wp); |
16994
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
832 if (ScreenLines[off_to] != (schar_T)c |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
833 || (enc_utf8 && (int)ScreenLinesUC[off_to] |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
834 != (c >= 0x80 ? c : 0)) |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
835 || ScreenAttrs[off_to] != hl) |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
836 { |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
837 ScreenLines[off_to] = c; |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
838 ScreenAttrs[off_to] = hl; |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
839 if (enc_utf8) |
7 | 840 { |
16994
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
841 if (c >= 0x80) |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
842 { |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
843 ScreenLinesUC[off_to] = c; |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
844 ScreenLinesC[0][off_to] = 0; |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
845 } |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
846 else |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
847 ScreenLinesUC[off_to] = 0; |
7 | 848 } |
16994
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
849 screen_char(off_to, row, col + coloff); |
9c4cf27deb87
patch 8.1.1497: accessing memory beyond allocated space
Bram Moolenaar <Bram@vim.org>
parents:
16990
diff
changeset
|
850 } |
7 | 851 } |
852 } | |
853 else | |
854 LineWraps[row] = FALSE; | |
855 } | |
856 } | |
857 | |
474 | 858 #if defined(FEAT_RIGHTLEFT) || defined(PROTO) |
7 | 859 /* |
474 | 860 * Mirror text "str" for right-left displaying. |
861 * Only works for single-byte characters (e.g., numbers). | |
7 | 862 */ |
474 | 863 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
864 rl_mirror(char_u *str) |
7 | 865 { |
866 char_u *p1, *p2; | |
867 int t; | |
868 | |
869 for (p1 = str, p2 = str + STRLEN(str) - 1; p1 < p2; ++p1, --p2) | |
870 { | |
871 t = *p1; | |
872 *p1 = *p2; | |
873 *p2 = t; | |
874 } | |
875 } | |
876 #endif | |
877 | |
878 /* | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
879 * Draw the verticap separator right of window "wp" starting with line "row". |
7 | 880 */ |
881 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
882 draw_vsep_win(win_T *wp, int row) |
7 | 883 { |
884 int hl; | |
885 int c; | |
886 | |
887 if (wp->w_vsep_width) | |
888 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
889 // draw the vertical separator right of this window |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
890 c = fillchar_vsep(&hl, wp); |
7 | 891 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height, |
892 W_ENDCOL(wp), W_ENDCOL(wp) + 1, | |
893 c, ' ', hl); | |
894 } | |
895 } | |
896 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
897 static int skip_status_match_char(expand_T *xp, char_u *s); |
7 | 898 |
899 /* | |
1378 | 900 * Get the length of an item as it will be shown in the status line. |
7 | 901 */ |
902 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
903 status_match_len(expand_T *xp, char_u *s) |
7 | 904 { |
905 int len = 0; | |
906 | |
907 #ifdef FEAT_MENU | |
908 int emenu = (xp->xp_context == EXPAND_MENUS | |
909 || xp->xp_context == EXPAND_MENUNAMES); | |
910 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
911 // Check for menu separators - replace with '|'. |
7 | 912 if (emenu && menu_is_separator(s)) |
913 return 1; | |
914 #endif | |
915 | |
916 while (*s != NUL) | |
917 { | |
1685 | 918 s += skip_status_match_char(xp, s); |
42 | 919 len += ptr2cells(s); |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
920 MB_PTR_ADV(s); |
7 | 921 } |
922 | |
923 return len; | |
924 } | |
925 | |
926 /* | |
1685 | 927 * Return the number of characters that should be skipped in a status match. |
277 | 928 * These are backslashes used for escaping. Do show backslashes in help tags. |
929 */ | |
930 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
931 skip_status_match_char(expand_T *xp, char_u *s) |
277 | 932 { |
1685 | 933 if ((rem_backslash(s) && xp->xp_context != EXPAND_HELP) |
277 | 934 #ifdef FEAT_MENU |
935 || ((xp->xp_context == EXPAND_MENUS | |
936 || xp->xp_context == EXPAND_MENUNAMES) | |
937 && (s[0] == '\t' || (s[0] == '\\' && s[1] != NUL))) | |
938 #endif | |
1685 | 939 ) |
940 { | |
941 #ifndef BACKSLASH_IN_FILENAME | |
942 if (xp->xp_shell && csh_like_shell() && s[1] == '\\' && s[2] == '!') | |
943 return 2; | |
944 #endif | |
945 return 1; | |
946 } | |
947 return 0; | |
277 | 948 } |
949 | |
950 /* | |
7 | 951 * Show wildchar matches in the status line. |
952 * Show at least the "match" item. | |
953 * We start at item 'first_match' in the list and show all matches that fit. | |
954 * | |
955 * If inversion is possible we use it. Else '=' characters are used. | |
956 */ | |
957 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
958 win_redr_status_matches( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
959 expand_T *xp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
960 int num_matches, |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
961 char_u **matches, // list of matches |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
962 int match, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
963 int showtail) |
7 | 964 { |
965 #define L_MATCH(m) (showtail ? sm_gettail(matches[m]) : matches[m]) | |
966 int row; | |
967 char_u *buf; | |
968 int len; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
969 int clen; // length in screen cells |
7 | 970 int fillchar; |
971 int attr; | |
972 int i; | |
973 int highlight = TRUE; | |
974 char_u *selstart = NULL; | |
975 int selstart_col = 0; | |
976 char_u *selend = NULL; | |
977 static int first_match = 0; | |
978 int add_left = FALSE; | |
979 char_u *s; | |
980 #ifdef FEAT_MENU | |
981 int emenu; | |
982 #endif | |
983 int l; | |
984 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
985 if (matches == NULL) // interrupted completion? |
7 | 986 return; |
987 | |
39 | 988 if (has_mbyte) |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16676
diff
changeset
|
989 buf = alloc(Columns * MB_MAXBYTES + 1); |
39 | 990 else |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16676
diff
changeset
|
991 buf = alloc(Columns + 1); |
7 | 992 if (buf == NULL) |
993 return; | |
994 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
995 if (match == -1) // don't show match but original text |
7 | 996 { |
997 match = 0; | |
998 highlight = FALSE; | |
999 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1000 // count 1 for the ending ">" |
7 | 1001 clen = status_match_len(xp, L_MATCH(match)) + 3; |
1002 if (match == 0) | |
1003 first_match = 0; | |
1004 else if (match < first_match) | |
1005 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1006 // jumping left, as far as we can go |
7 | 1007 first_match = match; |
1008 add_left = TRUE; | |
1009 } | |
1010 else | |
1011 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1012 // check if match fits on the screen |
7 | 1013 for (i = first_match; i < match; ++i) |
1014 clen += status_match_len(xp, L_MATCH(i)) + 2; | |
1015 if (first_match > 0) | |
1016 clen += 2; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1017 // jumping right, put match at the left |
7 | 1018 if ((long)clen > Columns) |
1019 { | |
1020 first_match = match; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1021 // if showing the last match, we can add some on the left |
7 | 1022 clen = 2; |
1023 for (i = match; i < num_matches; ++i) | |
1024 { | |
1025 clen += status_match_len(xp, L_MATCH(i)) + 2; | |
1026 if ((long)clen >= Columns) | |
1027 break; | |
1028 } | |
1029 if (i == num_matches) | |
1030 add_left = TRUE; | |
1031 } | |
1032 } | |
1033 if (add_left) | |
1034 while (first_match > 0) | |
1035 { | |
1036 clen += status_match_len(xp, L_MATCH(first_match - 1)) + 2; | |
1037 if ((long)clen >= Columns) | |
1038 break; | |
1039 --first_match; | |
1040 } | |
1041 | |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
1042 fillchar = fillchar_status(&attr, curwin); |
7 | 1043 |
1044 if (first_match == 0) | |
1045 { | |
1046 *buf = NUL; | |
1047 len = 0; | |
1048 } | |
1049 else | |
1050 { | |
1051 STRCPY(buf, "< "); | |
1052 len = 2; | |
1053 } | |
1054 clen = len; | |
1055 | |
1056 i = first_match; | |
1057 while ((long)(clen + status_match_len(xp, L_MATCH(i)) + 2) < Columns) | |
1058 { | |
1059 if (i == match) | |
1060 { | |
1061 selstart = buf + len; | |
1062 selstart_col = clen; | |
1063 } | |
1064 | |
1065 s = L_MATCH(i); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1066 // Check for menu separators - replace with '|' |
7 | 1067 #ifdef FEAT_MENU |
1068 emenu = (xp->xp_context == EXPAND_MENUS | |
1069 || xp->xp_context == EXPAND_MENUNAMES); | |
1070 if (emenu && menu_is_separator(s)) | |
1071 { | |
1072 STRCPY(buf + len, transchar('|')); | |
1073 l = (int)STRLEN(buf + len); | |
1074 len += l; | |
1075 clen += l; | |
1076 } | |
1077 else | |
1078 #endif | |
1079 for ( ; *s != NUL; ++s) | |
1080 { | |
1685 | 1081 s += skip_status_match_char(xp, s); |
7 | 1082 clen += ptr2cells(s); |
474 | 1083 if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1) |
7 | 1084 { |
1085 STRNCPY(buf + len, s, l); | |
1086 s += l - 1; | |
1087 len += l; | |
1088 } | |
1089 else | |
1090 { | |
1091 STRCPY(buf + len, transchar_byte(*s)); | |
1092 len += (int)STRLEN(buf + len); | |
1093 } | |
1094 } | |
1095 if (i == match) | |
1096 selend = buf + len; | |
1097 | |
1098 *(buf + len++) = ' '; | |
1099 *(buf + len++) = ' '; | |
1100 clen += 2; | |
1101 if (++i == num_matches) | |
1102 break; | |
1103 } | |
1104 | |
1105 if (i != num_matches) | |
1106 { | |
1107 *(buf + len++) = '>'; | |
1108 ++clen; | |
1109 } | |
1110 | |
1111 buf[len] = NUL; | |
1112 | |
1113 row = cmdline_row - 1; | |
1114 if (row >= 0) | |
1115 { | |
1116 if (wild_menu_showing == 0) | |
1117 { | |
1118 if (msg_scrolled > 0) | |
1119 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1120 // Put the wildmenu just above the command line. If there is |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1121 // no room, scroll the screen one line up. |
7 | 1122 if (cmdline_row == Rows - 1) |
1123 { | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
1124 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL); |
7 | 1125 ++msg_scrolled; |
1126 } | |
1127 else | |
1128 { | |
1129 ++cmdline_row; | |
1130 ++row; | |
1131 } | |
1132 wild_menu_showing = WM_SCROLLED; | |
1133 } | |
1134 else | |
1135 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1136 // Create status line if needed by setting 'laststatus' to 2. |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1137 // Set 'winminheight' to zero to avoid that the window is |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1138 // resized. |
7 | 1139 if (lastwin->w_status_height == 0) |
1140 { | |
1141 save_p_ls = p_ls; | |
1142 save_p_wmh = p_wmh; | |
1143 p_ls = 2; | |
1144 p_wmh = 0; | |
1145 last_status(FALSE); | |
1146 } | |
1147 wild_menu_showing = WM_SHOWN; | |
1148 } | |
1149 } | |
1150 | |
1151 screen_puts(buf, row, 0, attr); | |
1152 if (selstart != NULL && highlight) | |
1153 { | |
1154 *selend = NUL; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
1155 screen_puts(selstart, row, selstart_col, HL_ATTR(HLF_WM)); |
7 | 1156 } |
1157 | |
1158 screen_fill(row, row + 1, clen, (int)Columns, fillchar, fillchar, attr); | |
1159 } | |
1160 | |
1161 win_redraw_last_status(topframe); | |
1162 vim_free(buf); | |
1163 } | |
1164 | |
1165 /* | |
1166 * Return TRUE if the status line of window "wp" is connected to the status | |
1167 * line of the window right of it. If not, then it's a vertical separator. | |
1168 * Only call if (wp->w_vsep_width != 0). | |
1169 */ | |
1170 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1171 stl_connected(win_T *wp) |
7 | 1172 { |
1173 frame_T *fr; | |
1174 | |
1175 fr = wp->w_frame; | |
1176 while (fr->fr_parent != NULL) | |
1177 { | |
1178 if (fr->fr_parent->fr_layout == FR_COL) | |
1179 { | |
1180 if (fr->fr_next != NULL) | |
1181 break; | |
1182 } | |
1183 else | |
1184 { | |
1185 if (fr->fr_next != NULL) | |
1186 return TRUE; | |
1187 } | |
1188 fr = fr->fr_parent; | |
1189 } | |
1190 return FALSE; | |
1191 } | |
1192 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
1193 |
7 | 1194 /* |
1195 * Get the value to show for the language mappings, active 'keymap'. | |
1196 */ | |
1197 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1198 get_keymap_str( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1199 win_T *wp, |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1200 char_u *fmt, // format string containing one %s item |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1201 char_u *buf, // buffer for the result |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1202 int len) // length of buffer |
7 | 1203 { |
1204 char_u *p; | |
1205 | |
1206 if (wp->w_buffer->b_p_iminsert != B_IMODE_LMAP) | |
1207 return FALSE; | |
1208 | |
1209 { | |
1210 #ifdef FEAT_EVAL | |
1211 buf_T *old_curbuf = curbuf; | |
1212 win_T *old_curwin = curwin; | |
1213 char_u *s; | |
1214 | |
1215 curbuf = wp->w_buffer; | |
1216 curwin = wp; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1217 STRCPY(buf, "b:keymap_name"); // must be writable |
7 | 1218 ++emsg_skip; |
30598
37aa9fd2ed72
patch 9.0.0634: evaluating "expr" options has more overhead than needed
Bram Moolenaar <Bram@vim.org>
parents:
30513
diff
changeset
|
1219 s = p = eval_to_string(buf, FALSE, FALSE); |
7 | 1220 --emsg_skip; |
1221 curbuf = old_curbuf; | |
1222 curwin = old_curwin; | |
1223 if (p == NULL || *p == NUL) | |
1224 #endif | |
1225 { | |
1226 #ifdef FEAT_KEYMAP | |
1227 if (wp->w_buffer->b_kmap_state & KEYMAP_LOADED) | |
1228 p = wp->w_buffer->b_p_keymap; | |
1229 else | |
1230 #endif | |
1231 p = (char_u *)"lang"; | |
1232 } | |
9645
123d3c102035
commit https://github.com/vim/vim/commit/73ac0c4281a3606651604a3cbcc334bfb3859a87
Christian Brabandt <cb@256bit.org>
parents:
9489
diff
changeset
|
1233 if (vim_snprintf((char *)buf, len, (char *)fmt, p) > len - 1) |
7 | 1234 buf[0] = NUL; |
1235 #ifdef FEAT_EVAL | |
1236 vim_free(s); | |
1237 #endif | |
1238 } | |
1239 return buf[0] != NUL; | |
1240 } | |
1241 | |
1242 #if defined(FEAT_STL_OPT) || defined(PROTO) | |
1243 /* | |
677 | 1244 * Redraw the status line or ruler of window "wp". |
1245 * When "wp" is NULL redraw the tab pages line from 'tabline'. | |
7 | 1246 */ |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1247 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1248 win_redr_custom( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1249 win_T *wp, |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1250 int draw_ruler) // TRUE or FALSE |
7 | 1251 { |
5539 | 1252 static int entered = FALSE; |
7 | 1253 int attr; |
1254 int curattr; | |
1255 int row; | |
1256 int col = 0; | |
1257 int maxwidth; | |
1258 int width; | |
1259 int n; | |
1260 int len; | |
1261 int fillchar; | |
1262 char_u buf[MAXPATHL]; | |
1983 | 1263 char_u *stl; |
7 | 1264 char_u *p; |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
21929
diff
changeset
|
1265 stl_hlrec_T *hltab; |
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
21929
diff
changeset
|
1266 stl_hlrec_T *tabtab; |
677 | 1267 int use_sandbox = FALSE; |
2693 | 1268 win_T *ewp; |
1269 int p_crb_save; | |
7 | 1270 |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1271 // There is a tiny chance that this gets called recursively: When |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1272 // redrawing a status line triggers redrawing the ruler or tabline. |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1273 // Avoid trouble by not allowing recursion. |
5539 | 1274 if (entered) |
1275 return; | |
1276 entered = TRUE; | |
1277 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1278 // setup environment for the task at hand |
677 | 1279 if (wp == NULL) |
1280 { | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1281 // Use 'tabline'. Always at the first line of the screen. |
1983 | 1282 stl = p_tal; |
677 | 1283 row = 0; |
707 | 1284 fillchar = ' '; |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
1285 attr = HL_ATTR(HLF_TPF); |
677 | 1286 maxwidth = Columns; |
1287 # ifdef FEAT_EVAL | |
681 | 1288 use_sandbox = was_set_insecurely((char_u *)"tabline", 0); |
677 | 1289 # endif |
1290 } | |
40 | 1291 else |
677 | 1292 { |
24289
8938c0c98149
patch 8.2.2685: custom statusline not drawn correctly with WinBar
Bram Moolenaar <Bram@vim.org>
parents:
24184
diff
changeset
|
1293 row = statusline_row(wp); |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
1294 fillchar = fillchar_status(&attr, wp); |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1295 maxwidth = wp->w_width; |
677 | 1296 |
1297 if (draw_ruler) | |
1298 { | |
1983 | 1299 stl = p_ruf; |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1300 // advance past any leading group spec - implicit in ru_col |
1983 | 1301 if (*stl == '%') |
1302 { | |
1303 if (*++stl == '-') | |
1304 stl++; | |
1305 if (atoi((char *)stl)) | |
1306 while (VIM_ISDIGIT(*stl)) | |
1307 stl++; | |
1308 if (*stl++ != '(') | |
1309 stl = p_ruf; | |
677 | 1310 } |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1311 col = ru_col - (Columns - wp->w_width); |
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1312 if (col < (wp->w_width + 1) / 2) |
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1313 col = (wp->w_width + 1) / 2; |
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1314 maxwidth = wp->w_width - col; |
677 | 1315 if (!wp->w_status_height) |
1316 { | |
1317 row = Rows - 1; | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1318 --maxwidth; // writing in last column may cause scrolling |
677 | 1319 fillchar = ' '; |
1320 attr = 0; | |
1321 } | |
1322 | |
1323 # ifdef FEAT_EVAL | |
681 | 1324 use_sandbox = was_set_insecurely((char_u *)"rulerformat", 0); |
677 | 1325 # endif |
1326 } | |
1327 else | |
1328 { | |
1329 if (*wp->w_p_stl != NUL) | |
1983 | 1330 stl = wp->w_p_stl; |
677 | 1331 else |
1983 | 1332 stl = p_stl; |
677 | 1333 # ifdef FEAT_EVAL |
681 | 1334 use_sandbox = was_set_insecurely((char_u *)"statusline", |
1335 *wp->w_p_stl == NUL ? 0 : OPT_LOCAL); | |
677 | 1336 # endif |
1337 } | |
1338 | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12510
diff
changeset
|
1339 col += wp->w_wincol; |
677 | 1340 } |
1341 | |
7 | 1342 if (maxwidth <= 0) |
5539 | 1343 goto theend; |
677 | 1344 |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1345 // Temporarily reset 'cursorbind', we don't want a side effect from moving |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1346 // the cursor away and back. |
2693 | 1347 ewp = wp == NULL ? curwin : wp; |
1348 p_crb_save = ewp->w_p_crb; | |
1349 ewp->w_p_crb = FALSE; | |
1350 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1351 // Make a copy, because the statusline may include a function call that |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1352 // might change the option value and free the memory. |
1983 | 1353 stl = vim_strsave(stl); |
2693 | 1354 width = build_stl_str_hl(ewp, buf, sizeof(buf), |
1983 | 1355 stl, use_sandbox, |
22721
92a100fc5e17
patch 8.2.1909: number of status line items is limited to 80
Bram Moolenaar <Bram@vim.org>
parents:
21929
diff
changeset
|
1356 fillchar, maxwidth, &hltab, &tabtab); |
1983 | 1357 vim_free(stl); |
2693 | 1358 ewp->w_p_crb = p_crb_save; |
2661 | 1359 |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1360 // Make all characters printable. |
2661 | 1361 p = transstr(buf); |
1362 if (p != NULL) | |
1363 { | |
1364 vim_strncpy(buf, p, sizeof(buf) - 1); | |
1365 vim_free(p); | |
1366 } | |
1367 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1368 // fill up with "fillchar" |
835 | 1369 len = (int)STRLEN(buf); |
1883 | 1370 while (width < maxwidth && len < (int)sizeof(buf) - 1) |
7 | 1371 { |
1372 len += (*mb_char2bytes)(fillchar, buf + len); | |
1373 ++width; | |
1374 } | |
1375 buf[len] = NUL; | |
1376 | |
681 | 1377 /* |
1378 * Draw each snippet with the specified highlighting. | |
1379 */ | |
7 | 1380 curattr = attr; |
1381 p = buf; | |
681 | 1382 for (n = 0; hltab[n].start != NULL; n++) |
1383 { | |
1384 len = (int)(hltab[n].start - p); | |
7 | 1385 screen_puts_len(p, len, row, col, curattr); |
1386 col += vim_strnsize(p, len); | |
681 | 1387 p = hltab[n].start; |
1388 | |
1389 if (hltab[n].userhl == 0) | |
7 | 1390 curattr = attr; |
681 | 1391 else if (hltab[n].userhl < 0) |
1392 curattr = syn_id2attr(-hltab[n].userhl); | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
1393 #ifdef FEAT_TERMINAL |
12122
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
1394 else if (wp != NULL && wp != curwin && bt_terminal(wp->w_buffer) |
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
1395 && wp->w_status_height != 0) |
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
1396 curattr = highlight_stltermnc[hltab[n].userhl - 1]; |
12114
f306e6decaf9
patch 8.0.0937: user highlight groups not adjusted for terminal
Christian Brabandt <cb@256bit.org>
parents:
11981
diff
changeset
|
1397 else if (wp != NULL && bt_terminal(wp->w_buffer) |
f306e6decaf9
patch 8.0.0937: user highlight groups not adjusted for terminal
Christian Brabandt <cb@256bit.org>
parents:
11981
diff
changeset
|
1398 && wp->w_status_height != 0) |
f306e6decaf9
patch 8.0.0937: user highlight groups not adjusted for terminal
Christian Brabandt <cb@256bit.org>
parents:
11981
diff
changeset
|
1399 curattr = highlight_stlterm[hltab[n].userhl - 1]; |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
1400 #endif |
680 | 1401 else if (wp != NULL && wp != curwin && wp->w_status_height != 0) |
681 | 1402 curattr = highlight_stlnc[hltab[n].userhl - 1]; |
7 | 1403 else |
681 | 1404 curattr = highlight_user[hltab[n].userhl - 1]; |
7 | 1405 } |
1406 screen_puts(p, row, col, curattr); | |
681 | 1407 |
1408 if (wp == NULL) | |
1409 { | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1410 // Fill the TabPageIdxs[] array for clicking in the tab pagesline. |
681 | 1411 col = 0; |
1412 len = 0; | |
1413 p = buf; | |
1414 fillchar = 0; | |
1415 for (n = 0; tabtab[n].start != NULL; n++) | |
1416 { | |
1417 len += vim_strnsize(p, (int)(tabtab[n].start - p)); | |
1418 while (col < len) | |
1419 TabPageIdxs[col++] = fillchar; | |
1420 p = tabtab[n].start; | |
1421 fillchar = tabtab[n].userhl; | |
1422 } | |
1423 while (col < Columns) | |
1424 TabPageIdxs[col++] = fillchar; | |
1425 } | |
5539 | 1426 |
1427 theend: | |
1428 entered = FALSE; | |
7 | 1429 } |
1430 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1431 #endif // FEAT_STL_OPT |
7 | 1432 |
1433 /* | |
1434 * Output a single character directly to the screen and update ScreenLines. | |
1435 */ | |
1436 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1437 screen_putchar(int c, int row, int col, int attr) |
7 | 1438 { |
3549 | 1439 char_u buf[MB_MAXBYTES + 1]; |
1440 | |
1441 if (has_mbyte) | |
1442 buf[(*mb_char2bytes)(c, buf)] = NUL; | |
1443 else | |
1444 { | |
1445 buf[0] = c; | |
1446 buf[1] = NUL; | |
1447 } | |
7 | 1448 screen_puts(buf, row, col, attr); |
1449 } | |
1450 | |
1451 /* | |
1452 * Get a single character directly from ScreenLines into "bytes[]". | |
1453 * Also return its attribute in *attrp; | |
1454 */ | |
1455 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1456 screen_getbytes(int row, int col, char_u *bytes, int *attrp) |
7 | 1457 { |
1458 unsigned off; | |
1459 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1460 // safety check |
7 | 1461 if (ScreenLines != NULL && row < screen_Rows && col < screen_Columns) |
1462 { | |
1463 off = LineOffset[row] + col; | |
1464 *attrp = ScreenAttrs[off]; | |
1465 bytes[0] = ScreenLines[off]; | |
1466 bytes[1] = NUL; | |
1467 | |
1468 if (enc_utf8 && ScreenLinesUC[off] != 0) | |
1469 bytes[utfc_char2bytes(off, bytes)] = NUL; | |
1470 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e) | |
1471 { | |
1472 bytes[0] = ScreenLines[off]; | |
1473 bytes[1] = ScreenLines2[off]; | |
1474 bytes[2] = NUL; | |
1475 } | |
1476 else if (enc_dbcs && MB_BYTE2LEN(bytes[0]) > 1) | |
1477 { | |
1478 bytes[1] = ScreenLines[off + 1]; | |
1479 bytes[2] = NUL; | |
1480 } | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1481 } |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1482 } |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1483 |
714 | 1484 /* |
1485 * Return TRUE if composing characters for screen posn "off" differs from | |
1486 * composing characters in "u8cc". | |
2124
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
1487 * Only to be used when ScreenLinesUC[off] != 0. |
714 | 1488 */ |
1489 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1490 screen_comp_differs(int off, int *u8cc) |
714 | 1491 { |
1492 int i; | |
1493 | |
1494 for (i = 0; i < Screen_mco; ++i) | |
1495 { | |
1496 if (ScreenLinesC[i][off] != (u8char_T)u8cc[i]) | |
1497 return TRUE; | |
1498 if (u8cc[i] == 0) | |
1499 break; | |
1500 } | |
1501 return FALSE; | |
1502 } | |
1503 | |
7 | 1504 /* |
1505 * Put string '*text' on the screen at position 'row' and 'col', with | |
1506 * attributes 'attr', and update ScreenLines[] and ScreenAttrs[]. | |
1507 * Note: only outputs within one row, message is truncated at screen boundary! | |
1508 * Note: if ScreenLines[], row and/or col is invalid, nothing is done. | |
1509 */ | |
1510 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1511 screen_puts( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1512 char_u *text, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1513 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1514 int col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1515 int attr) |
7 | 1516 { |
1517 screen_puts_len(text, -1, row, col, attr); | |
1518 } | |
1519 | |
1520 /* | |
1521 * Like screen_puts(), but output "text[len]". When "len" is -1 output up to | |
1522 * a NUL. | |
1523 */ | |
1524 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1525 screen_puts_len( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1526 char_u *text, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1527 int textlen, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1528 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1529 int col, |
27944
05fa2837e8a1
patch 8.2.4497: wrong color for half of wide character next to pum scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
1530 int attr_arg) |
7 | 1531 { |
27944
05fa2837e8a1
patch 8.2.4497: wrong color for half of wide character next to pum scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
1532 int attr = attr_arg; |
7 | 1533 unsigned off; |
1534 char_u *ptr = text; | |
5923 | 1535 int len = textlen; |
7 | 1536 int c; |
1378 | 1537 unsigned max_off; |
7 | 1538 int mbyte_blen = 1; |
1539 int mbyte_cells = 1; | |
1540 int u8c = 0; | |
714 | 1541 int u8cc[MAX_MCO]; |
7 | 1542 int clear_next_cell = FALSE; |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1543 #ifdef FEAT_ARABIC |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1544 int prev_c = 0; // previous Arabic character |
714 | 1545 int pc, nc, nc1; |
1546 int pcc[MAX_MCO]; | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1547 #endif |
1843 | 1548 int force_redraw_this; |
1549 int force_redraw_next = FALSE; | |
1550 int need_redraw; | |
7 | 1551 |
16914
66a94fd8e37d
patch 8.1.1458: crash when using gtags
Bram Moolenaar <Bram@vim.org>
parents:
16910
diff
changeset
|
1552 // Safety check. The check for negative row and column is to fix issue |
66a94fd8e37d
patch 8.1.1458: crash when using gtags
Bram Moolenaar <Bram@vim.org>
parents:
16910
diff
changeset
|
1553 // #4102. TODO: find out why row/col could be negative. |
66a94fd8e37d
patch 8.1.1458: crash when using gtags
Bram Moolenaar <Bram@vim.org>
parents:
16910
diff
changeset
|
1554 if (ScreenLines == NULL |
66a94fd8e37d
patch 8.1.1458: crash when using gtags
Bram Moolenaar <Bram@vim.org>
parents:
16910
diff
changeset
|
1555 || row >= screen_Rows || row < 0 |
66a94fd8e37d
patch 8.1.1458: crash when using gtags
Bram Moolenaar <Bram@vim.org>
parents:
16910
diff
changeset
|
1556 || col >= screen_Columns || col < 0) |
7 | 1557 return; |
1843 | 1558 off = LineOffset[row] + col; |
7 | 1559 |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
1560 // When drawing over the right half of a double-wide char clear out the |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
1561 // left half. Only needed in a terminal. |
1685 | 1562 if (has_mbyte && col > 0 && col < screen_Columns |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1563 #ifdef FEAT_GUI |
1668 | 1564 && !gui.in_use |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1565 #endif |
1668 | 1566 && mb_fix_col(col, row) != col) |
1843 | 1567 { |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1568 if (!skip_for_popup(row, col - 1)) |
1843 | 1569 { |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1570 ScreenLines[off - 1] = ' '; |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1571 ScreenAttrs[off - 1] = 0; |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1572 if (enc_utf8) |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1573 { |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1574 ScreenLinesUC[off - 1] = 0; |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1575 ScreenLinesC[0][off - 1] = 0; |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1576 } |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1577 // redraw the previous cell, make it empty |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1578 screen_char(off - 1, row, col - 1); |
1843 | 1579 } |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1580 // force the cell at "col" to be redrawn |
1843 | 1581 force_redraw_next = TRUE; |
1582 } | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1583 |
1378 | 1584 max_off = LineOffset[row] + screen_Columns; |
1340 | 1585 while (col < screen_Columns |
1586 && (len < 0 || (int)(ptr - text) < len) | |
1587 && *ptr != NUL) | |
7 | 1588 { |
1589 c = *ptr; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1590 // check if this is the first byte of a multibyte |
7 | 1591 if (has_mbyte) |
1592 { | |
29457
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1593 mbyte_blen = enc_utf8 && len > 0 |
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1594 ? utfc_ptr2len_len(ptr, (int)((text + len) - ptr)) |
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1595 : (*mb_ptr2len)(ptr); |
7 | 1596 if (enc_dbcs == DBCS_JPNU && c == 0x8e) |
1597 mbyte_cells = 1; | |
1598 else if (enc_dbcs != 0) | |
1599 mbyte_cells = mbyte_blen; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1600 else // enc_utf8 |
7 | 1601 { |
29457
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1602 u8c = len >= 0 |
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1603 ? utfc_ptr2char_len(ptr, u8cc, (int)((text + len) - ptr)) |
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1604 : utfc_ptr2char(ptr, u8cc); |
7 | 1605 mbyte_cells = utf_char2cells(u8c); |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1606 #ifdef FEAT_ARABIC |
7 | 1607 if (p_arshape && !p_tbidi && ARABIC_CHAR(u8c)) |
1608 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1609 // Do Arabic shaping. |
7 | 1610 if (len >= 0 && (int)(ptr - text) + mbyte_blen >= len) |
1611 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1612 // Past end of string to be displayed. |
7 | 1613 nc = NUL; |
1614 nc1 = NUL; | |
1615 } | |
1616 else | |
714 | 1617 { |
29457
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1618 nc = len >= 0 |
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1619 ? utfc_ptr2char_len(ptr + mbyte_blen, pcc, |
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1620 (int)((text + len) - ptr - mbyte_blen)) |
53d8ef8442d8
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
Bram Moolenaar <Bram@vim.org>
parents:
29413
diff
changeset
|
1621 : utfc_ptr2char(ptr + mbyte_blen, pcc); |
714 | 1622 nc1 = pcc[0]; |
1623 } | |
7 | 1624 pc = prev_c; |
1625 prev_c = u8c; | |
714 | 1626 u8c = arabic_shape(u8c, &c, &u8cc[0], nc, nc1, pc); |
7 | 1627 } |
1628 else | |
1629 prev_c = u8c; | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1630 #endif |
2055
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2008
diff
changeset
|
1631 if (col + mbyte_cells > screen_Columns) |
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2008
diff
changeset
|
1632 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1633 // Only 1 cell left, but character requires 2 cells: |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1634 // display a '>' in the last column to avoid wrapping. |
2055
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2008
diff
changeset
|
1635 c = '>'; |
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2008
diff
changeset
|
1636 mbyte_cells = 1; |
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2008
diff
changeset
|
1637 } |
7 | 1638 } |
1639 } | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1640 |
1843 | 1641 force_redraw_this = force_redraw_next; |
1642 force_redraw_next = FALSE; | |
1643 | |
1644 need_redraw = ScreenLines[off] != c | |
7 | 1645 || (mbyte_cells == 2 |
1646 && ScreenLines[off + 1] != (enc_dbcs ? ptr[1] : 0)) | |
1647 || (enc_dbcs == DBCS_JPNU | |
1648 && c == 0x8e | |
1649 && ScreenLines2[off] != ptr[1]) | |
1650 || (enc_utf8 | |
2124
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
1651 && (ScreenLinesUC[off] != |
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
1652 (u8char_T)(c < 0x80 && u8cc[0] == 0 ? 0 : u8c) |
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
1653 || (ScreenLinesUC[off] != 0 |
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
1654 && screen_comp_differs(off, u8cc)))) |
7 | 1655 || ScreenAttrs[off] != attr |
1843 | 1656 || exmode_active; |
1657 | |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1658 if ((need_redraw || force_redraw_this) && !skip_for_popup(row, col)) |
7 | 1659 { |
1660 #if defined(FEAT_GUI) || defined(UNIX) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1661 // The bold trick makes a single row of pixels appear in the next |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1662 // character. When a bold character is removed, the next |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1663 // character should be redrawn too. This happens for our own GUI |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1664 // and for some xterms. |
1843 | 1665 if (need_redraw && ScreenLines[off] != ' ' && ( |
7 | 1666 # ifdef FEAT_GUI |
1667 gui.in_use | |
1668 # endif | |
1669 # if defined(FEAT_GUI) && defined(UNIX) | |
1670 || | |
1671 # endif | |
1672 # ifdef UNIX | |
1673 term_is_xterm | |
1674 # endif | |
1843 | 1675 )) |
1676 { | |
1677 int n = ScreenAttrs[off]; | |
1678 | |
1679 if (n > HL_ALL) | |
1680 n = syn_attr2attr(n); | |
1681 if (n & HL_BOLD) | |
1682 force_redraw_next = TRUE; | |
7 | 1683 } |
1684 #endif | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1685 // When at the end of the text and overwriting a two-cell |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1686 // character with a one-cell character, need to clear the next |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
1687 // cell. Also when overwriting the left half of a two-cell char |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
1688 // with the right half of a two-cell char. Do this only once |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
1689 // (mb_off2cells() may return 2 on the right half). |
7 | 1690 if (clear_next_cell) |
1691 clear_next_cell = FALSE; | |
1692 else if (has_mbyte | |
1693 && (len < 0 ? ptr[mbyte_blen] == NUL | |
1694 : ptr + mbyte_blen >= text + len) | |
1378 | 1695 && ((mbyte_cells == 1 && (*mb_off2cells)(off, max_off) > 1) |
7 | 1696 || (mbyte_cells == 2 |
1378 | 1697 && (*mb_off2cells)(off, max_off) == 1 |
1698 && (*mb_off2cells)(off + 1, max_off) > 1))) | |
7 | 1699 clear_next_cell = TRUE; |
1700 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1701 // Make sure we never leave a second byte of a double-byte behind, |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1702 // it confuses mb_off2cells(). |
7 | 1703 if (enc_dbcs |
1378 | 1704 && ((mbyte_cells == 1 && (*mb_off2cells)(off, max_off) > 1) |
7 | 1705 || (mbyte_cells == 2 |
1378 | 1706 && (*mb_off2cells)(off, max_off) == 1 |
1707 && (*mb_off2cells)(off + 1, max_off) > 1))) | |
7 | 1708 ScreenLines[off + mbyte_blen] = 0; |
1709 ScreenLines[off] = c; | |
1710 ScreenAttrs[off] = attr; | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
1711 ScreenCols[off] = -1; |
7 | 1712 if (enc_utf8) |
1713 { | |
714 | 1714 if (c < 0x80 && u8cc[0] == 0) |
7 | 1715 ScreenLinesUC[off] = 0; |
1716 else | |
1717 { | |
714 | 1718 int i; |
1719 | |
7 | 1720 ScreenLinesUC[off] = u8c; |
714 | 1721 for (i = 0; i < Screen_mco; ++i) |
1722 { | |
1723 ScreenLinesC[i][off] = u8cc[i]; | |
1724 if (u8cc[i] == 0) | |
1725 break; | |
1726 } | |
7 | 1727 } |
1728 if (mbyte_cells == 2) | |
1729 { | |
1730 ScreenLines[off + 1] = 0; | |
1731 ScreenAttrs[off + 1] = attr; | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
1732 ScreenCols[off + 1] = -1; |
7 | 1733 } |
1734 screen_char(off, row, col); | |
1735 } | |
1736 else if (mbyte_cells == 2) | |
1737 { | |
1738 ScreenLines[off + 1] = ptr[1]; | |
1739 ScreenAttrs[off + 1] = attr; | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
1740 ScreenCols[off + 1] = -1; |
7 | 1741 screen_char_2(off, row, col); |
1742 } | |
1743 else if (enc_dbcs == DBCS_JPNU && c == 0x8e) | |
1744 { | |
1745 ScreenLines2[off] = ptr[1]; | |
1746 screen_char(off, row, col); | |
1747 } | |
1748 else | |
1749 screen_char(off, row, col); | |
1750 } | |
1751 if (has_mbyte) | |
1752 { | |
1753 off += mbyte_cells; | |
1754 col += mbyte_cells; | |
1755 ptr += mbyte_blen; | |
1756 if (clear_next_cell) | |
5923 | 1757 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1758 // This only happens at the end, display one space next. |
27944
05fa2837e8a1
patch 8.2.4497: wrong color for half of wide character next to pum scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
1759 // Keep the attribute from before. |
7 | 1760 ptr = (char_u *)" "; |
5923 | 1761 len = -1; |
27944
05fa2837e8a1
patch 8.2.4497: wrong color for half of wide character next to pum scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
27730
diff
changeset
|
1762 attr = ScreenAttrs[off]; |
5923 | 1763 } |
7 | 1764 } |
1765 else | |
1766 { | |
1767 ++off; | |
1768 ++col; | |
1769 ++ptr; | |
1770 } | |
1771 } | |
1843 | 1772 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1773 // If we detected the next character needs to be redrawn, but the text |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1774 // doesn't extend up to there, update the character here. |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
1775 if (force_redraw_next && col < screen_Columns && !skip_for_popup(row, col)) |
1843 | 1776 { |
1777 if (enc_dbcs != 0 && dbcs_off2cells(off, max_off) > 1) | |
1778 screen_char_2(off, row, col); | |
1779 else | |
1780 screen_char(off, row, col); | |
1781 } | |
7 | 1782 } |
1783 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1784 #if defined(FEAT_SEARCH_EXTRA) || defined(PROTO) |
7 | 1785 /* |
1326 | 1786 * Prepare for 'hlsearch' highlighting. |
7 | 1787 */ |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1788 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1789 start_search_hl(void) |
7 | 1790 { |
1791 if (p_hls && !no_hlsearch) | |
1792 { | |
20251
9620ab71f4f3
patch 8.2.0681: pattern for 'hlsearch' highlighting may leak
Bram Moolenaar <Bram@vim.org>
parents:
20227
diff
changeset
|
1793 end_search_hl(); // just in case it wasn't called before |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1794 last_pat_prog(&screen_search_hl.rm); |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1795 screen_search_hl.attr = HL_ATTR(HLF_L); |
7 | 1796 } |
1797 } | |
1798 | |
1799 /* | |
1326 | 1800 * Clean up for 'hlsearch' highlighting. |
7 | 1801 */ |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1802 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1803 end_search_hl(void) |
7 | 1804 { |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1805 if (screen_search_hl.rm.regprog != NULL) |
7 | 1806 { |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1807 vim_regfree(screen_search_hl.rm.regprog); |
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
1808 screen_search_hl.rm.regprog = NULL; |
7 | 1809 } |
1810 } | |
5985 | 1811 #endif |
5979 | 1812 |
7 | 1813 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1814 screen_start_highlight(int attr) |
7 | 1815 { |
1816 attrentry_T *aep = NULL; | |
1817 | |
1818 screen_attr = attr; | |
1819 if (full_screen | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1820 #ifdef MSWIN |
7 | 1821 && termcap_active |
1822 #endif | |
1823 ) | |
1824 { | |
1825 #ifdef FEAT_GUI | |
1826 if (gui.in_use) | |
1827 { | |
1828 char buf[20]; | |
1829 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1830 // The GUI handles this internally. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1831 sprintf(buf, "\033|%dh", attr); |
7 | 1832 OUT_STR(buf); |
1833 } | |
1834 else | |
1835 #endif | |
1836 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1837 if (attr > HL_ALL) // special HL attr. |
7 | 1838 { |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
1839 if (IS_CTERM) |
7 | 1840 aep = syn_cterm_attr2entry(attr); |
1841 else | |
1842 aep = syn_term_attr2entry(attr); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1843 if (aep == NULL) // did ":syntax clear" |
7 | 1844 attr = 0; |
1845 else | |
1846 attr = aep->ae_attr; | |
1847 } | |
18786
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1848 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1849 if (use_vtp()) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1850 { |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1851 guicolor_T defguifg, defguibg; |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1852 int defctermfg, defctermbg; |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1853 |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1854 // If FG and BG are unset, the color is undefined when |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1855 // BOLD+INVERSE. Use Normal as the default value. |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1856 get_default_console_color(&defctermfg, &defctermbg, &defguifg, |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1857 &defguibg); |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1858 |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1859 if (p_tgc) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1860 { |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1861 if (aep == NULL || COLOR_INVALID(aep->ae_u.cterm.fg_rgb)) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1862 term_fg_rgb_color(defguifg); |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1863 if (aep == NULL || COLOR_INVALID(aep->ae_u.cterm.bg_rgb)) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1864 term_bg_rgb_color(defguibg); |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1865 } |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1866 else if (t_colors >= 256) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1867 { |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1868 if (aep == NULL || aep->ae_u.cterm.fg_color == 0) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1869 term_fg_color(defctermfg); |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1870 if (aep == NULL || aep->ae_u.cterm.bg_color == 0) |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1871 term_bg_color(defctermbg); |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1872 } |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1873 } |
1756fe125914
patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1874 #endif |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1875 if ((attr & HL_BOLD) && *T_MD != NUL) // bold |
7 | 1876 out_str(T_MD); |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1877 else if (aep != NULL && cterm_normal_fg_bold && ( |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
1878 #ifdef FEAT_TERMGUICOLORS |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1879 p_tgc && aep->ae_u.cterm.fg_rgb != CTERMCOLOR |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1880 ? aep->ae_u.cterm.fg_rgb != INVALCOLOR |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1881 : |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1882 #endif |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1883 t_colors > 1 && aep->ae_u.cterm.fg_color)) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1884 // If the Normal FG color has BOLD attribute and the new HL |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1885 // has a FG color defined, clear BOLD. |
681 | 1886 out_str(T_ME); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1887 if ((attr & HL_STANDOUT) && *T_SO != NUL) // standout |
7 | 1888 out_str(T_SO); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1889 if ((attr & HL_UNDERCURL) && *T_UCS != NUL) // undercurl |
12964
339681756948
patch 8.0.1358: undercurl is not used in the terminal
Christian Brabandt <cb@256bit.org>
parents:
12700
diff
changeset
|
1890 out_str(T_UCS); |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1891 if ((attr & HL_UNDERDOUBLE) && *T_USS != NUL) // double underline |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1892 out_str(T_USS); |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1893 if ((attr & HL_UNDERDOTTED) && *T_DS != NUL) // dotted underline |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1894 out_str(T_DS); |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1895 if ((attr & HL_UNDERDASHED) && *T_CDS != NUL) // dashed underline |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1896 out_str(T_CDS); |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1897 if (((attr & HL_UNDERLINE) // underline or undercurl, etc. |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1898 || ((attr & HL_UNDERCURL) && *T_UCS == NUL) |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1899 || ((attr & HL_UNDERDOUBLE) && *T_USS == NUL) |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1900 || ((attr & HL_UNDERDOTTED) && *T_DS == NUL) |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1901 || ((attr & HL_UNDERDASHED) && *T_CDS == NUL)) |
13094
72366f4e3264
patch 8.0.1422: no fallback to underline when undercurl is not set
Christian Brabandt <cb@256bit.org>
parents:
13024
diff
changeset
|
1902 && *T_US != NUL) |
7 | 1903 out_str(T_US); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1904 if ((attr & HL_ITALIC) && *T_CZH != NUL) // italic |
7 | 1905 out_str(T_CZH); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1906 if ((attr & HL_INVERSE) && *T_MR != NUL) // inverse (reverse) |
7 | 1907 out_str(T_MR); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1908 if ((attr & HL_STRIKETHROUGH) && *T_STS != NUL) // strike |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
1909 out_str(T_STS); |
7 | 1910 |
1911 /* | |
1912 * Output the color or start string after bold etc., in case the | |
1913 * bold etc. override the color setting. | |
1914 */ | |
1915 if (aep != NULL) | |
1916 { | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
1917 #ifdef FEAT_TERMGUICOLORS |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1918 // When 'termguicolors' is set but fg or bg is unset, |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1919 // fall back to the cterm colors. This helps for SpellBad, |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1920 // where the GUI uses a red undercurl. |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1921 if (p_tgc && aep->ae_u.cterm.fg_rgb != CTERMCOLOR) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
1922 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
1923 if (aep->ae_u.cterm.fg_rgb != INVALCOLOR) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
1924 term_fg_rgb_color(aep->ae_u.cterm.fg_rgb); |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1925 } |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1926 else |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1927 #endif |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1928 if (t_colors > 1) |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1929 { |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1930 if (aep->ae_u.cterm.fg_color) |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1931 term_fg_color(aep->ae_u.cterm.fg_color - 1); |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1932 } |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1933 #ifdef FEAT_TERMGUICOLORS |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1934 if (p_tgc && aep->ae_u.cterm.bg_rgb != CTERMCOLOR) |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1935 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
1936 if (aep->ae_u.cterm.bg_rgb != INVALCOLOR) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
1937 term_bg_rgb_color(aep->ae_u.cterm.bg_rgb); |
7 | 1938 } |
1939 else | |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
1940 #endif |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1941 if (t_colors > 1) |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1942 { |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1943 if (aep->ae_u.cterm.bg_color) |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1944 term_bg_color(aep->ae_u.cterm.bg_color - 1); |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1945 } |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1946 #ifdef FEAT_TERMGUICOLORS |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1947 if (p_tgc && aep->ae_u.cterm.ul_rgb != CTERMCOLOR) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1948 { |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1949 if (aep->ae_u.cterm.ul_rgb != INVALCOLOR) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1950 term_ul_rgb_color(aep->ae_u.cterm.ul_rgb); |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1951 } |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1952 else |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1953 #endif |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1954 if (t_colors > 1) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1955 { |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1956 if (aep->ae_u.cterm.ul_color) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1957 term_ul_color(aep->ae_u.cterm.ul_color - 1); |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
1958 } |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1959 |
13452
9b09f6e470e0
patch 8.0.1600: crash when setting t_Co to zero when 'termguicolors' is set
Christian Brabandt <cb@256bit.org>
parents:
13400
diff
changeset
|
1960 if (!IS_CTERM) |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1961 { |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1962 if (aep->ae_u.term.start != NULL) |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
1963 out_str(aep->ae_u.term.start); |
7 | 1964 } |
1965 } | |
1966 } | |
1967 } | |
1968 } | |
1969 | |
1970 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1971 screen_stop_highlight(void) |
7 | 1972 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1973 int do_ME = FALSE; // output T_ME code |
20227
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
1974 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
20569
b6a0237e8478
patch 8.2.0838: MS-Windows: compiler warning for uninitialized variables
Bram Moolenaar <Bram@vim.org>
parents:
20251
diff
changeset
|
1975 int do_ME_fg = FALSE, do_ME_bg = FALSE; |
20227
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
1976 #endif |
7 | 1977 |
1978 if (screen_attr != 0 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1979 #ifdef MSWIN |
7 | 1980 && termcap_active |
1981 #endif | |
1982 ) | |
1983 { | |
1984 #ifdef FEAT_GUI | |
1985 if (gui.in_use) | |
1986 { | |
1987 char buf[20]; | |
1988 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1989 // use internal GUI code |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1990 sprintf(buf, "\033|%dH", screen_attr); |
7 | 1991 OUT_STR(buf); |
1992 } | |
1993 else | |
1994 #endif | |
1995 { | |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1996 int is_under; |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
1997 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
1998 if (screen_attr > HL_ALL) // special HL attr. |
7 | 1999 { |
2000 attrentry_T *aep; | |
2001 | |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2002 if (IS_CTERM) |
7 | 2003 { |
2004 /* | |
2005 * Assume that t_me restores the original colors! | |
2006 */ | |
2007 aep = syn_cterm_attr2entry(screen_attr); | |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2008 if (aep != NULL && (( |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2009 #ifdef FEAT_TERMGUICOLORS |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2010 p_tgc && aep->ae_u.cterm.fg_rgb != CTERMCOLOR |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2011 ? aep->ae_u.cterm.fg_rgb != INVALCOLOR |
20227
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2012 # ifdef FEAT_VTP |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2013 ? !(do_ME_fg = TRUE) : (do_ME_fg = FALSE) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2014 # endif |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2015 : |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2016 #endif |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2017 aep->ae_u.cterm.fg_color) || ( |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2018 #ifdef FEAT_TERMGUICOLORS |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2019 p_tgc && aep->ae_u.cterm.bg_rgb != CTERMCOLOR |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2020 ? aep->ae_u.cterm.bg_rgb != INVALCOLOR |
20227
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2021 # ifdef FEAT_VTP |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2022 ? !(do_ME_bg = TRUE) : (do_ME_bg = FALSE) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2023 # endif |
13339
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2024 : |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2025 #endif |
da2a9e217200
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
2026 aep->ae_u.cterm.bg_color))) |
7 | 2027 do_ME = TRUE; |
20227
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2028 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2029 if (use_vtp()) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2030 { |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2031 if (do_ME_fg && do_ME_bg) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2032 do_ME = TRUE; |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2033 |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2034 // FG and BG cannot be separated in T_ME, which is not |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2035 // efficient. |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2036 if (!do_ME && do_ME_fg) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2037 out_str((char_u *)"\033|39m"); // restore FG |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2038 if (!do_ME && do_ME_bg) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2039 out_str((char_u *)"\033|49m"); // restore BG |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2040 } |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2041 else |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2042 { |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2043 // Process FG and BG at once. |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2044 if (!do_ME) |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2045 do_ME = do_ME_fg | do_ME_bg; |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2046 } |
f2e4c12b24b3
patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20154
diff
changeset
|
2047 #endif |
7 | 2048 } |
2049 else | |
2050 { | |
2051 aep = syn_term_attr2entry(screen_attr); | |
2052 if (aep != NULL && aep->ae_u.term.stop != NULL) | |
2053 { | |
2054 if (STRCMP(aep->ae_u.term.stop, T_ME) == 0) | |
2055 do_ME = TRUE; | |
2056 else | |
2057 out_str(aep->ae_u.term.stop); | |
2058 } | |
2059 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2060 if (aep == NULL) // did ":syntax clear" |
7 | 2061 screen_attr = 0; |
2062 else | |
2063 screen_attr = aep->ae_attr; | |
2064 } | |
2065 | |
2066 /* | |
2067 * Often all ending-codes are equal to T_ME. Avoid outputting the | |
2068 * same sequence several times. | |
2069 */ | |
2070 if (screen_attr & HL_STANDOUT) | |
2071 { | |
2072 if (STRCMP(T_SE, T_ME) == 0) | |
2073 do_ME = TRUE; | |
2074 else | |
2075 out_str(T_SE); | |
2076 } | |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
2077 is_under = (screen_attr & (HL_UNDERCURL |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
2078 | HL_UNDERDOUBLE | HL_UNDERDOTTED | HL_UNDERDASHED)); |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
2079 if (is_under && *T_UCE != NUL) |
12964
339681756948
patch 8.0.1358: undercurl is not used in the terminal
Christian Brabandt <cb@256bit.org>
parents:
12700
diff
changeset
|
2080 { |
339681756948
patch 8.0.1358: undercurl is not used in the terminal
Christian Brabandt <cb@256bit.org>
parents:
12700
diff
changeset
|
2081 if (STRCMP(T_UCE, T_ME) == 0) |
339681756948
patch 8.0.1358: undercurl is not used in the terminal
Christian Brabandt <cb@256bit.org>
parents:
12700
diff
changeset
|
2082 do_ME = TRUE; |
339681756948
patch 8.0.1358: undercurl is not used in the terminal
Christian Brabandt <cb@256bit.org>
parents:
12700
diff
changeset
|
2083 else |
339681756948
patch 8.0.1358: undercurl is not used in the terminal
Christian Brabandt <cb@256bit.org>
parents:
12700
diff
changeset
|
2084 out_str(T_UCE); |
339681756948
patch 8.0.1358: undercurl is not used in the terminal
Christian Brabandt <cb@256bit.org>
parents:
12700
diff
changeset
|
2085 } |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29308
diff
changeset
|
2086 if ((screen_attr & HL_UNDERLINE) || (is_under && *T_UCE == NUL)) |
7 | 2087 { |
2088 if (STRCMP(T_UE, T_ME) == 0) | |
2089 do_ME = TRUE; | |
2090 else | |
2091 out_str(T_UE); | |
2092 } | |
2093 if (screen_attr & HL_ITALIC) | |
2094 { | |
2095 if (STRCMP(T_CZR, T_ME) == 0) | |
2096 do_ME = TRUE; | |
2097 else | |
2098 out_str(T_CZR); | |
2099 } | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
2100 if (screen_attr & HL_STRIKETHROUGH) |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
2101 { |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
2102 if (STRCMP(T_STE, T_ME) == 0) |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
2103 do_ME = TRUE; |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
2104 else |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
2105 out_str(T_STE); |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
2106 } |
7 | 2107 if (do_ME || (screen_attr & (HL_BOLD | HL_INVERSE))) |
2108 out_str(T_ME); | |
2109 | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2110 #ifdef FEAT_TERMGUICOLORS |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2111 if (p_tgc) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2112 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
2113 if (cterm_normal_fg_gui_color != INVALCOLOR) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2114 term_fg_rgb_color(cterm_normal_fg_gui_color); |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
2115 if (cterm_normal_bg_gui_color != INVALCOLOR) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2116 term_bg_rgb_color(cterm_normal_bg_gui_color); |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
2117 if (cterm_normal_ul_gui_color != INVALCOLOR) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
2118 term_ul_rgb_color(cterm_normal_ul_gui_color); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2119 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2120 else |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2121 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2122 { |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2123 if (t_colors > 1) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2124 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2125 // set Normal cterm colors |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2126 if (cterm_normal_fg_color != 0) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2127 term_fg_color(cterm_normal_fg_color - 1); |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2128 if (cterm_normal_bg_color != 0) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2129 term_bg_color(cterm_normal_bg_color - 1); |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
2130 if (cterm_normal_ul_color != 0) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
2131 term_ul_color(cterm_normal_ul_color - 1); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2132 if (cterm_normal_fg_bold) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2133 out_str(T_MD); |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2134 } |
7 | 2135 } |
2136 } | |
2137 } | |
2138 screen_attr = 0; | |
2139 } | |
2140 | |
2141 /* | |
2142 * Reset the colors for a cterm. Used when leaving Vim. | |
2143 * The machine specific code may override this again. | |
2144 */ | |
2145 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2146 reset_cterm_colors(void) |
7 | 2147 { |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2148 if (IS_CTERM) |
7 | 2149 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2150 // set Normal cterm colors |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2151 #ifdef FEAT_TERMGUICOLORS |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
2152 if (p_tgc ? (cterm_normal_fg_gui_color != INVALCOLOR |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
2153 || cterm_normal_bg_gui_color != INVALCOLOR) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
2154 : (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0)) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2155 #else |
7 | 2156 if (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2157 #endif |
7 | 2158 { |
2159 out_str(T_OP); | |
2160 screen_attr = -1; | |
2161 } | |
2162 if (cterm_normal_fg_bold) | |
2163 { | |
2164 out_str(T_ME); | |
2165 screen_attr = -1; | |
2166 } | |
2167 } | |
2168 } | |
2169 | |
2170 /* | |
2171 * Put character ScreenLines["off"] on the screen at position "row" and "col", | |
2172 * using the attributes from ScreenAttrs["off"]. | |
2173 */ | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
2174 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2175 screen_char(unsigned off, int row, int col) |
7 | 2176 { |
2177 int attr; | |
2178 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2179 // Check for illegal values, just in case (could happen just after |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2180 // resizing). |
7 | 2181 if (row >= screen_Rows || col >= screen_Columns) |
2182 return; | |
2183 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2184 // Outputting a character in the last cell on the screen may scroll the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2185 // screen up. Only do it when the "xn" termcap property is set, otherwise |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2186 // mark the character invalid (update it when scrolled up). |
6602 | 2187 if (*T_XN == NUL |
2188 && row == screen_Rows - 1 && col == screen_Columns - 1 | |
7 | 2189 #ifdef FEAT_RIGHTLEFT |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2190 // account for first command-line character in rightleft mode |
7 | 2191 && !cmdmsg_rl |
2192 #endif | |
2193 ) | |
2194 { | |
2195 ScreenAttrs[off] = (sattr_T)-1; | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2196 ScreenCols[off] = -1; |
7 | 2197 return; |
2198 } | |
2199 | |
2200 /* | |
2201 * Stop highlighting first, so it's easier to move the cursor. | |
2202 */ | |
2203 if (screen_char_attr != 0) | |
2204 attr = screen_char_attr; | |
2205 else | |
2206 attr = ScreenAttrs[off]; | |
2207 if (screen_attr != attr) | |
2208 screen_stop_highlight(); | |
2209 | |
2210 windgoto(row, col); | |
2211 | |
2212 if (screen_attr != attr) | |
2213 screen_start_highlight(attr); | |
2214 | |
2215 if (enc_utf8 && ScreenLinesUC[off] != 0) | |
2216 { | |
2217 char_u buf[MB_MAXBYTES + 1]; | |
2218 | |
8819
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
2219 if (utf_ambiguous_width(ScreenLinesUC[off])) |
13024
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2220 { |
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2221 if (*p_ambw == 'd' |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2222 #ifdef FEAT_GUI |
13024
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2223 && !gui.in_use |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2224 #endif |
13024
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2225 ) |
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2226 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2227 // Clear the two screen cells. If the character is actually |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2228 // single width it won't change the second cell. |
13024
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2229 out_str((char_u *)" "); |
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2230 term_windgoto(row, col); |
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2231 } |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2232 // not sure where the cursor is after drawing the ambiguous width |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2233 // character |
8819
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
2234 screen_cur_col = 9999; |
13024
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2235 } |
8819
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
2236 else if (utf_char2cells(ScreenLinesUC[off]) > 1) |
7 | 2237 ++screen_cur_col; |
13024
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2238 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2239 // Convert the UTF-8 character to bytes and write it. |
13024
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2240 buf[utfc_char2bytes(off, buf)] = NUL; |
27934188d7b5
patch 8.0.1388: char not overwritten with ambiguous width char
Christian Brabandt <cb@256bit.org>
parents:
12998
diff
changeset
|
2241 out_str(buf); |
7 | 2242 } |
2243 else | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2244 { |
7 | 2245 out_flush_check(); |
2246 out_char(ScreenLines[off]); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2247 // double-byte character in single-width cell |
7 | 2248 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e) |
2249 out_char(ScreenLines2[off]); | |
2250 } | |
2251 | |
2252 screen_cur_col++; | |
2253 } | |
2254 | |
2255 /* | |
2256 * Used for enc_dbcs only: Put one double-wide character at ScreenLines["off"] | |
2257 * on the screen at position 'row' and 'col'. | |
2258 * The attributes of the first byte is used for all. This is required to | |
2259 * output the two bytes of a double-byte character with nothing in between. | |
2260 */ | |
2261 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2262 screen_char_2(unsigned off, int row, int col) |
7 | 2263 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2264 // Check for illegal values (could be wrong when screen was resized). |
7 | 2265 if (off + 1 >= (unsigned)(screen_Rows * screen_Columns)) |
2266 return; | |
2267 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2268 // Outputting the last character on the screen may scrollup the screen. |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2269 // Don't to it! Mark the character invalid (update it when scrolled up) |
7 | 2270 if (row == screen_Rows - 1 && col >= screen_Columns - 2) |
2271 { | |
2272 ScreenAttrs[off] = (sattr_T)-1; | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2273 ScreenCols[off] = -1; |
7 | 2274 return; |
2275 } | |
2276 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2277 // Output the first byte normally (positions the cursor), then write the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2278 // second byte directly. |
7 | 2279 screen_char(off, row, col); |
2280 out_char(ScreenLines[off + 1]); | |
2281 ++screen_cur_col; | |
2282 } | |
2283 | |
2284 /* | |
2285 * Draw a rectangle of the screen, inverted when "invert" is TRUE. | |
2286 * This uses the contents of ScreenLines[] and doesn't change it. | |
2287 */ | |
2288 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2289 screen_draw_rectangle( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2290 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2291 int col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2292 int height, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2293 int width, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2294 int invert) |
7 | 2295 { |
2296 int r, c; | |
2297 int off; | |
1378 | 2298 int max_off; |
7 | 2299 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2300 // Can't use ScreenLines unless initialized |
534 | 2301 if (ScreenLines == NULL) |
2302 return; | |
2303 | |
7 | 2304 if (invert) |
2305 screen_char_attr = HL_INVERSE; | |
2306 for (r = row; r < row + height; ++r) | |
2307 { | |
2308 off = LineOffset[r]; | |
1378 | 2309 max_off = off + screen_Columns; |
7 | 2310 for (c = col; c < col + width; ++c) |
2311 { | |
1378 | 2312 if (enc_dbcs != 0 && dbcs_off2cells(off + c, max_off) > 1) |
7 | 2313 { |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
2314 if (!skip_for_popup(r, c)) |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
2315 screen_char_2(off + c, r, c); |
7 | 2316 ++c; |
2317 } | |
2318 else | |
2319 { | |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
2320 if (!skip_for_popup(r, c)) |
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
2321 screen_char(off + c, r, c); |
1378 | 2322 if (utf_off2cells(off + c, max_off) > 1) |
7 | 2323 ++c; |
2324 } | |
2325 } | |
2326 } | |
2327 screen_char_attr = 0; | |
2328 } | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
2329 |
7 | 2330 /* |
2331 * Redraw the characters for a vertically split window. | |
2332 */ | |
2333 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2334 redraw_block(int row, int end, win_T *wp) |
7 | 2335 { |
2336 int col; | |
2337 int width; | |
2338 | |
2339 # ifdef FEAT_CLIPBOARD | |
2340 clip_may_clear_selection(row, end - 1); | |
2341 # endif | |
2342 | |
2343 if (wp == NULL) | |
2344 { | |
2345 col = 0; | |
2346 width = Columns; | |
2347 } | |
2348 else | |
2349 { | |
2350 col = wp->w_wincol; | |
2351 width = wp->w_width; | |
2352 } | |
2353 screen_draw_rectangle(row, col, end - row, width, FALSE); | |
2354 } | |
2355 | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
2356 void |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2357 space_to_screenline(int off, int attr) |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2358 { |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2359 ScreenLines[off] = ' '; |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2360 ScreenAttrs[off] = attr; |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2361 ScreenCols[off] = -1; |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2362 if (enc_utf8) |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2363 ScreenLinesUC[off] = 0; |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2364 } |
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2365 |
7 | 2366 /* |
28386
cf41a1f469f6
patch 8.2.4718: @@@ in the last line sometimes drawn in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
28295
diff
changeset
|
2367 * Fill the screen from "start_row" to "end_row" (exclusive), from "start_col" |
cf41a1f469f6
patch 8.2.4718: @@@ in the last line sometimes drawn in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
28295
diff
changeset
|
2368 * to "end_col" (exclusive) with character "c1" in first column followed by |
cf41a1f469f6
patch 8.2.4718: @@@ in the last line sometimes drawn in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
28295
diff
changeset
|
2369 * "c2" in the other columns. Use attributes "attr". |
7 | 2370 */ |
2371 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2372 screen_fill( |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2373 int start_row, |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2374 int end_row, |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2375 int start_col, |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2376 int end_col, |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2377 int c1, |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2378 int c2, |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2379 int attr) |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2380 { |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2381 int row; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2382 int col; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2383 int off; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2384 int end_off; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2385 int did_delete; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2386 int c; |
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2387 int norm_term; |
7 | 2388 #if defined(FEAT_GUI) || defined(UNIX) |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2389 int force_next = FALSE; |
7 | 2390 #endif |
2391 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2392 if (end_row > screen_Rows) // safety check |
7 | 2393 end_row = screen_Rows; |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2394 if (end_col > screen_Columns) // safety check |
7 | 2395 end_col = screen_Columns; |
2396 if (ScreenLines == NULL | |
2397 || start_row >= end_row | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2398 || start_col >= end_col) // nothing to do |
7 | 2399 return; |
2400 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2401 // it's a "normal" terminal when not in a GUI or cterm |
7 | 2402 norm_term = ( |
2403 #ifdef FEAT_GUI | |
2404 !gui.in_use && | |
2405 #endif | |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
2406 !IS_CTERM); |
7 | 2407 for (row = start_row; row < end_row; ++row) |
2408 { | |
1668 | 2409 if (has_mbyte |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2410 #ifdef FEAT_GUI |
1668 | 2411 && !gui.in_use |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2412 #endif |
1668 | 2413 ) |
2414 { | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
2415 // When drawing over the right half of a double-wide char clear |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
2416 // out the left half. When drawing over the left half of a |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26634
diff
changeset
|
2417 // double wide-char clear out the right half. Only needed in a |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2418 // terminal. |
1685 | 2419 if (start_col > 0 && mb_fix_col(start_col, row) != start_col) |
1670 | 2420 screen_puts_len((char_u *)" ", 1, row, start_col - 1, 0); |
1677 | 2421 if (end_col < screen_Columns && mb_fix_col(end_col, row) != end_col) |
1670 | 2422 screen_puts_len((char_u *)" ", 1, row, end_col, 0); |
1668 | 2423 } |
7 | 2424 /* |
2425 * Try to use delete-line termcap code, when no attributes or in a | |
2426 * "normal" terminal, where a bold/italic space is just a | |
2427 * space. | |
2428 */ | |
2429 did_delete = FALSE; | |
2430 if (c2 == ' ' | |
2431 && end_col == Columns | |
2432 && can_clear(T_CE) | |
2433 && (attr == 0 | |
2434 || (norm_term | |
2435 && attr <= HL_ALL | |
2436 && ((attr & ~(HL_BOLD | HL_ITALIC)) == 0)))) | |
2437 { | |
2438 /* | |
2439 * check if we really need to clear something | |
2440 */ | |
2441 col = start_col; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2442 if (c1 != ' ') // don't clear first char |
7 | 2443 ++col; |
2444 | |
2445 off = LineOffset[row] + col; | |
2446 end_off = LineOffset[row] + end_col; | |
2447 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2448 // skip blanks (used often, keep it fast!) |
7 | 2449 if (enc_utf8) |
2450 while (off < end_off && ScreenLines[off] == ' ' | |
2451 && ScreenAttrs[off] == 0 && ScreenLinesUC[off] == 0) | |
2452 ++off; | |
2453 else | |
2454 while (off < end_off && ScreenLines[off] == ' ' | |
2455 && ScreenAttrs[off] == 0) | |
2456 ++off; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2457 if (off < end_off) // something to be cleared |
7 | 2458 { |
2459 col = off - LineOffset[row]; | |
2460 screen_stop_highlight(); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2461 term_windgoto(row, col);// clear rest of this screen line |
7 | 2462 out_str(T_CE); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2463 screen_start(); // don't know where cursor is now |
7 | 2464 col = end_col - col; |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2465 while (col--) // clear chars in ScreenLines |
7 | 2466 { |
12487
3f16cf18386c
patch 8.0.1123: cannot define a toolbar for a window
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2467 space_to_screenline(off, 0); |
7 | 2468 ++off; |
2469 } | |
2470 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2471 did_delete = TRUE; // the chars are cleared now |
7 | 2472 } |
2473 | |
2474 off = LineOffset[row] + start_col; | |
2475 c = c1; | |
2476 for (col = start_col; col < end_col; ++col) | |
2477 { | |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2478 if ((ScreenLines[off] != c |
714 | 2479 || (enc_utf8 && (int)ScreenLinesUC[off] |
2480 != (c >= 0x80 ? c : 0)) | |
7 | 2481 || ScreenAttrs[off] != attr |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
2482 || must_redraw == UPD_CLEAR // screen clear pending |
7 | 2483 #if defined(FEAT_GUI) || defined(UNIX) |
2484 || force_next | |
2485 #endif | |
2486 ) | |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2487 // Skip if under a(nother) popup. |
30608
c3398c601bfa
patch 9.0.0639: checking for popup in screen_char() is too late
Bram Moolenaar <Bram@vim.org>
parents:
30606
diff
changeset
|
2488 && !skip_for_popup(row, col)) |
7 | 2489 { |
2490 #if defined(FEAT_GUI) || defined(UNIX) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2491 // The bold trick may make a single row of pixels appear in |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2492 // the next character. When a bold character is removed, the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2493 // next character should be redrawn too. This happens for our |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2494 // own GUI and for some xterms. |
7 | 2495 if ( |
2496 # ifdef FEAT_GUI | |
2497 gui.in_use | |
2498 # endif | |
2499 # if defined(FEAT_GUI) && defined(UNIX) | |
2500 || | |
2501 # endif | |
2502 # ifdef UNIX | |
2503 term_is_xterm | |
2504 # endif | |
2505 ) | |
2506 { | |
2507 if (ScreenLines[off] != ' ' | |
2508 && (ScreenAttrs[off] > HL_ALL | |
2509 || ScreenAttrs[off] & HL_BOLD)) | |
2510 force_next = TRUE; | |
2511 else | |
2512 force_next = FALSE; | |
2513 } | |
30643
dfb02f9dcbe8
patch 9.0.0656: cannot specify another character to use instead of '@'
Bram Moolenaar <Bram@vim.org>
parents:
30608
diff
changeset
|
2514 #endif // FEAT_GUI || defined(UNIX) |
7 | 2515 ScreenLines[off] = c; |
2516 if (enc_utf8) | |
2517 { | |
2518 if (c >= 0x80) | |
2519 { | |
2520 ScreenLinesUC[off] = c; | |
714 | 2521 ScreenLinesC[0][off] = 0; |
7 | 2522 } |
2523 else | |
2524 ScreenLinesUC[off] = 0; | |
2525 } | |
2526 ScreenAttrs[off] = attr; | |
2527 if (!did_delete || c != ' ') | |
2528 screen_char(off, row, col); | |
2529 } | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2530 ScreenCols[off] = -1; |
7 | 2531 ++off; |
2532 if (col == start_col) | |
2533 { | |
2534 if (did_delete) | |
2535 break; | |
2536 c = c2; | |
2537 } | |
2538 } | |
2539 if (end_col == Columns) | |
2540 LineWraps[row] = FALSE; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2541 if (row == Rows - 1) // overwritten the command line |
7 | 2542 { |
2543 redraw_cmdline = TRUE; | |
13666
57da3d873f20
patch 8.0.1705: when making a vertical split the mode message isn't updated
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
2544 if (start_col == 0 && end_col == Columns |
57da3d873f20
patch 8.0.1705: when making a vertical split the mode message isn't updated
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
2545 && c1 == ' ' && c2 == ' ' && attr == 0) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2546 clear_cmdline = FALSE; // command line has been cleared |
644 | 2547 if (start_col == 0) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2548 mode_displayed = FALSE; // mode cleared or overwritten |
7 | 2549 } |
2550 } | |
2551 } | |
2552 | |
2553 /* | |
2554 * Check if there should be a delay. Used before clearing or redrawing the | |
2555 * screen or the command line. | |
2556 */ | |
2557 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2558 check_for_delay(int check_msg_scroll) |
7 | 2559 { |
2560 if ((emsg_on_display || (check_msg_scroll && msg_scroll)) | |
2561 && !did_wait_return | |
22742
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22721
diff
changeset
|
2562 && emsg_silent == 0 |
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22721
diff
changeset
|
2563 && !in_assert_fails) |
7 | 2564 { |
2565 out_flush(); | |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18603
diff
changeset
|
2566 ui_delay(1006L, TRUE); |
7 | 2567 emsg_on_display = FALSE; |
2568 if (check_msg_scroll) | |
2569 msg_scroll = FALSE; | |
2570 } | |
2571 } | |
2572 | |
2573 /* | |
16320
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2574 * Init TabPageIdxs[] to zero: Clicking outside of tabs has no effect. |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2575 */ |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2576 static void |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2577 clear_TabPageIdxs(void) |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2578 { |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2579 int scol; |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2580 |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2581 for (scol = 0; scol < Columns; ++scol) |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2582 TabPageIdxs[scol] = 0; |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2583 } |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2584 |
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2585 /* |
7 | 2586 * screen_valid - allocate screen buffers if size changed |
3263 | 2587 * If "doclear" is TRUE: clear screen if it has been resized. |
7 | 2588 * Returns TRUE if there is a valid screen to write to. |
2589 * Returns FALSE when starting up and screen not initialized yet. | |
2590 */ | |
2591 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2592 screen_valid(int doclear) |
7 | 2593 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2594 screenalloc(doclear); // allocate screen buffers if size changed |
7 | 2595 return (ScreenLines != NULL); |
2596 } | |
2597 | |
2598 /* | |
2599 * Resize the shell to Rows and Columns. | |
2600 * Allocate ScreenLines[] and associated items. | |
2601 * | |
2602 * There may be some time between setting Rows and Columns and (re)allocating | |
2603 * ScreenLines[]. This happens when starting up and when (manually) changing | |
2604 * the shell size. Always use screen_Rows and screen_Columns to access items | |
2605 * in ScreenLines[]. Use Rows and Columns for positioning text etc. where the | |
2606 * final size of the shell is needed. | |
2607 */ | |
2608 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2609 screenalloc(int doclear) |
7 | 2610 { |
2611 int new_row, old_row; | |
2612 #ifdef FEAT_GUI | |
2613 int old_Rows; | |
2614 #endif | |
2615 win_T *wp; | |
2616 int outofmem = FALSE; | |
2617 int len; | |
2618 schar_T *new_ScreenLines; | |
2619 u8char_T *new_ScreenLinesUC = NULL; | |
714 | 2620 u8char_T *new_ScreenLinesC[MAX_MCO]; |
7 | 2621 schar_T *new_ScreenLines2 = NULL; |
714 | 2622 int i; |
7 | 2623 sattr_T *new_ScreenAttrs; |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2624 colnr_T *new_ScreenCols; |
7 | 2625 unsigned *new_LineOffset; |
2626 char_u *new_LineWraps; | |
681 | 2627 short *new_TabPageIdxs; |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2628 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2629 short *new_popup_mask; |
17034
d4a7c690c8e6
patch 8.1.1517: when a popup changes all windows are redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17022
diff
changeset
|
2630 short *new_popup_mask_next; |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2631 char *new_popup_transparent; |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2632 #endif |
671 | 2633 tabpage_T *tp; |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2634 static int entered = FALSE; // avoid recursiveness |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2635 static int done_outofmem_msg = FALSE; // did outofmem message |
1824 | 2636 int retry_count = 0; |
2637 | |
2638 retry: | |
7 | 2639 /* |
2640 * Allocation of the screen buffers is done only when the size changes and | |
2641 * when Rows and Columns have been set and we have started doing full | |
2642 * screen stuff. | |
2643 */ | |
2644 if ((ScreenLines != NULL | |
2645 && Rows == screen_Rows | |
2646 && Columns == screen_Columns | |
2647 && enc_utf8 == (ScreenLinesUC != NULL) | |
2648 && (enc_dbcs == DBCS_JPNU) == (ScreenLines2 != NULL) | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2649 && p_mco == Screen_mco) |
7 | 2650 || Rows == 0 |
2651 || Columns == 0 | |
2652 || (!full_screen && ScreenLines == NULL)) | |
2653 return; | |
2654 | |
2655 /* | |
2656 * It's possible that we produce an out-of-memory message below, which | |
2657 * will cause this function to be called again. To break the loop, just | |
2658 * return here. | |
2659 */ | |
2660 if (entered) | |
2661 return; | |
2662 entered = TRUE; | |
2663 | |
911 | 2664 /* |
2665 * Note that the window sizes are updated before reallocating the arrays, | |
2666 * thus we must not redraw here! | |
2667 */ | |
2668 ++RedrawingDisabled; | |
2669 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2670 win_new_shellsize(); // fit the windows in the new sized shell |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2671 |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2672 #ifdef FEAT_GUI_HAIKU |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2673 vim_lock_screen(); // be safe, put it here |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2674 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2675 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2676 comp_col(); // recompute columns for shown command and ruler |
7 | 2677 |
2678 /* | |
2679 * We're changing the size of the screen. | |
2680 * - Allocate new arrays for ScreenLines and ScreenAttrs. | |
2681 * - Move lines from the old arrays into the new arrays, clear extra | |
2682 * lines (unless the screen is going to be cleared). | |
2683 * - Free the old arrays. | |
2684 * | |
2685 * If anything fails, make ScreenLines NULL, so we don't do anything! | |
2686 * Continuing with the old ScreenLines may result in a crash, because the | |
2687 * size is wrong. | |
2688 */ | |
671 | 2689 FOR_ALL_TAB_WINDOWS(tp, wp) |
7 | 2690 win_free_lsize(wp); |
1946 | 2691 if (aucmd_win != NULL) |
2692 win_free_lsize(aucmd_win); | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2693 #ifdef FEAT_PROP_POPUP |
16882
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2694 // global popup windows |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19824
diff
changeset
|
2695 FOR_ALL_POPUPWINS(wp) |
16882
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2696 win_free_lsize(wp); |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2697 // tab-local popup windows |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2698 FOR_ALL_TABPAGES(tp) |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19824
diff
changeset
|
2699 FOR_ALL_POPUPWINS_IN_TAB(tp, wp) |
16882
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2700 win_free_lsize(wp); |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2701 #endif |
7 | 2702 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2703 new_ScreenLines = LALLOC_MULT(schar_T, (Rows + 1) * Columns); |
2122
476336a5ae95
updated for version 7.2.404
Bram Moolenaar <bram@zimbu.org>
parents:
2069
diff
changeset
|
2704 vim_memset(new_ScreenLinesC, 0, sizeof(u8char_T *) * MAX_MCO); |
7 | 2705 if (enc_utf8) |
2706 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2707 new_ScreenLinesUC = LALLOC_MULT(u8char_T, (Rows + 1) * Columns); |
714 | 2708 for (i = 0; i < p_mco; ++i) |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2709 new_ScreenLinesC[i] = LALLOC_CLEAR_MULT(u8char_T, |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2710 (Rows + 1) * Columns); |
7 | 2711 } |
2712 if (enc_dbcs == DBCS_JPNU) | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2713 new_ScreenLines2 = LALLOC_MULT(schar_T, (Rows + 1) * Columns); |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2714 new_ScreenAttrs = LALLOC_MULT(sattr_T, (Rows + 1) * Columns); |
30331
ddbac2551dac
patch 9.0.0501: warning for using uninitialized value in mouse test
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
2715 // Clear ScreenCols to avoid a warning for unitialized memory in |
ddbac2551dac
patch 9.0.0501: warning for using uninitialized value in mouse test
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
2716 // jump_to_mouse(). |
ddbac2551dac
patch 9.0.0501: warning for using uninitialized value in mouse test
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
2717 new_ScreenCols = LALLOC_CLEAR_MULT(colnr_T, (Rows + 1) * Columns); |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2718 new_LineOffset = LALLOC_MULT(unsigned, Rows); |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2719 new_LineWraps = LALLOC_MULT(char_u, Rows); |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16817
diff
changeset
|
2720 new_TabPageIdxs = LALLOC_MULT(short, Columns); |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2721 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2722 new_popup_mask = LALLOC_MULT(short, Rows * Columns); |
17034
d4a7c690c8e6
patch 8.1.1517: when a popup changes all windows are redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17022
diff
changeset
|
2723 new_popup_mask_next = LALLOC_MULT(short, Rows * Columns); |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2724 new_popup_transparent = LALLOC_MULT(char, Rows * Columns); |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2725 #endif |
7 | 2726 |
677 | 2727 FOR_ALL_TAB_WINDOWS(tp, wp) |
7 | 2728 { |
2729 if (win_alloc_lines(wp) == FAIL) | |
2730 { | |
2731 outofmem = TRUE; | |
1819 | 2732 goto give_up; |
2733 } | |
2734 } | |
1946 | 2735 if (aucmd_win != NULL && aucmd_win->w_lines == NULL |
2736 && win_alloc_lines(aucmd_win) == FAIL) | |
1906 | 2737 outofmem = TRUE; |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2738 #ifdef FEAT_PROP_POPUP |
16882
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2739 // global popup windows |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19824
diff
changeset
|
2740 FOR_ALL_POPUPWINS(wp) |
16882
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2741 if (win_alloc_lines(wp) == FAIL) |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2742 { |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2743 outofmem = TRUE; |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2744 goto give_up; |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2745 } |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2746 // tab-local popup windows |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2747 FOR_ALL_TABPAGES(tp) |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19824
diff
changeset
|
2748 FOR_ALL_POPUPWINS_IN_TAB(tp, wp) |
16882
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2749 if (win_alloc_lines(wp) == FAIL) |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2750 { |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2751 outofmem = TRUE; |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2752 goto give_up; |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2753 } |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2754 #endif |
473e76401434
patch 8.1.1442: popup windows not considered when the Vim window is resized
Bram Moolenaar <Bram@vim.org>
parents:
16880
diff
changeset
|
2755 |
1819 | 2756 give_up: |
7 | 2757 |
714 | 2758 for (i = 0; i < p_mco; ++i) |
2759 if (new_ScreenLinesC[i] == NULL) | |
2760 break; | |
7 | 2761 if (new_ScreenLines == NULL |
714 | 2762 || (enc_utf8 && (new_ScreenLinesUC == NULL || i != p_mco)) |
7 | 2763 || (enc_dbcs == DBCS_JPNU && new_ScreenLines2 == NULL) |
2764 || new_ScreenAttrs == NULL | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2765 || new_ScreenCols == NULL |
7 | 2766 || new_LineOffset == NULL |
2767 || new_LineWraps == NULL | |
671 | 2768 || new_TabPageIdxs == NULL |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2769 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2770 || new_popup_mask == NULL |
17034
d4a7c690c8e6
patch 8.1.1517: when a popup changes all windows are redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17022
diff
changeset
|
2771 || new_popup_mask_next == NULL |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2772 || new_popup_transparent == NULL |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2773 #endif |
7 | 2774 || outofmem) |
2775 { | |
944 | 2776 if (ScreenLines != NULL || !done_outofmem_msg) |
534 | 2777 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2778 // guess the size |
534 | 2779 do_outofmem_msg((long_u)((Rows + 1) * Columns)); |
2780 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2781 // Remember we did this to avoid getting outofmem messages over |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2782 // and over again. |
944 | 2783 done_outofmem_msg = TRUE; |
534 | 2784 } |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2785 VIM_CLEAR(new_ScreenLines); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2786 VIM_CLEAR(new_ScreenLinesUC); |
714 | 2787 for (i = 0; i < p_mco; ++i) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2788 VIM_CLEAR(new_ScreenLinesC[i]); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2789 VIM_CLEAR(new_ScreenLines2); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2790 VIM_CLEAR(new_ScreenAttrs); |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2791 VIM_CLEAR(new_ScreenCols); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2792 VIM_CLEAR(new_LineOffset); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2793 VIM_CLEAR(new_LineWraps); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13204
diff
changeset
|
2794 VIM_CLEAR(new_TabPageIdxs); |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2795 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2796 VIM_CLEAR(new_popup_mask); |
17034
d4a7c690c8e6
patch 8.1.1517: when a popup changes all windows are redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17022
diff
changeset
|
2797 VIM_CLEAR(new_popup_mask_next); |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2798 VIM_CLEAR(new_popup_transparent); |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2799 #endif |
7 | 2800 } |
2801 else | |
2802 { | |
944 | 2803 done_outofmem_msg = FALSE; |
534 | 2804 |
7 | 2805 for (new_row = 0; new_row < Rows; ++new_row) |
2806 { | |
2807 new_LineOffset[new_row] = new_row * Columns; | |
2808 new_LineWraps[new_row] = FALSE; | |
2809 | |
2810 /* | |
2811 * If the screen is not going to be cleared, copy as much as | |
2812 * possible from the old screen to the new one and clear the rest | |
2813 * (used when resizing the window at the "--more--" prompt or when | |
2814 * executing an external command, for the GUI). | |
2815 */ | |
3263 | 2816 if (!doclear) |
7 | 2817 { |
2818 (void)vim_memset(new_ScreenLines + new_row * Columns, | |
2819 ' ', (size_t)Columns * sizeof(schar_T)); | |
2820 if (enc_utf8) | |
2821 { | |
2822 (void)vim_memset(new_ScreenLinesUC + new_row * Columns, | |
2823 0, (size_t)Columns * sizeof(u8char_T)); | |
714 | 2824 for (i = 0; i < p_mco; ++i) |
2825 (void)vim_memset(new_ScreenLinesC[i] | |
2826 + new_row * Columns, | |
7 | 2827 0, (size_t)Columns * sizeof(u8char_T)); |
2828 } | |
2829 if (enc_dbcs == DBCS_JPNU) | |
2830 (void)vim_memset(new_ScreenLines2 + new_row * Columns, | |
2831 0, (size_t)Columns * sizeof(schar_T)); | |
2832 (void)vim_memset(new_ScreenAttrs + new_row * Columns, | |
2833 0, (size_t)Columns * sizeof(sattr_T)); | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2834 (void)vim_memset(new_ScreenCols + new_row * Columns, |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2835 0, (size_t)Columns * sizeof(colnr_T)); |
7 | 2836 old_row = new_row + (screen_Rows - Rows); |
534 | 2837 if (old_row >= 0 && ScreenLines != NULL) |
7 | 2838 { |
2839 if (screen_Columns < Columns) | |
2840 len = screen_Columns; | |
2841 else | |
2842 len = Columns; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2843 // When switching to utf-8 don't copy characters, they |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2844 // may be invalid now. Also when p_mco changes. |
714 | 2845 if (!(enc_utf8 && ScreenLinesUC == NULL) |
2846 && p_mco == Screen_mco) | |
26 | 2847 mch_memmove(new_ScreenLines + new_LineOffset[new_row], |
2848 ScreenLines + LineOffset[old_row], | |
2849 (size_t)len * sizeof(schar_T)); | |
714 | 2850 if (enc_utf8 && ScreenLinesUC != NULL |
2851 && p_mco == Screen_mco) | |
7 | 2852 { |
2853 mch_memmove(new_ScreenLinesUC + new_LineOffset[new_row], | |
2854 ScreenLinesUC + LineOffset[old_row], | |
2855 (size_t)len * sizeof(u8char_T)); | |
714 | 2856 for (i = 0; i < p_mco; ++i) |
2857 mch_memmove(new_ScreenLinesC[i] | |
2858 + new_LineOffset[new_row], | |
2859 ScreenLinesC[i] + LineOffset[old_row], | |
7 | 2860 (size_t)len * sizeof(u8char_T)); |
2861 } | |
2862 if (enc_dbcs == DBCS_JPNU && ScreenLines2 != NULL) | |
2863 mch_memmove(new_ScreenLines2 + new_LineOffset[new_row], | |
2864 ScreenLines2 + LineOffset[old_row], | |
2865 (size_t)len * sizeof(schar_T)); | |
2866 mch_memmove(new_ScreenAttrs + new_LineOffset[new_row], | |
2867 ScreenAttrs + LineOffset[old_row], | |
2868 (size_t)len * sizeof(sattr_T)); | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2869 mch_memmove(new_ScreenCols + new_LineOffset[new_row], |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2870 ScreenAttrs + LineOffset[old_row], |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2871 (size_t)len * sizeof(colnr_T)); |
7 | 2872 } |
2873 } | |
2874 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2875 // Use the last line of the screen for the current line. |
7 | 2876 current_ScreenLine = new_ScreenLines + Rows * Columns; |
17696
03dcb660c4e8
patch 8.1.1845: may use NULL pointer when running out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17628
diff
changeset
|
2877 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2878 #ifdef FEAT_PROP_POPUP |
17696
03dcb660c4e8
patch 8.1.1845: may use NULL pointer when running out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17628
diff
changeset
|
2879 vim_memset(new_popup_mask, 0, Rows * Columns * sizeof(short)); |
03dcb660c4e8
patch 8.1.1845: may use NULL pointer when running out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17628
diff
changeset
|
2880 vim_memset(new_popup_transparent, 0, Rows * Columns * sizeof(char)); |
03dcb660c4e8
patch 8.1.1845: may use NULL pointer when running out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17628
diff
changeset
|
2881 #endif |
7 | 2882 } |
2883 | |
356 | 2884 free_screenlines(); |
2885 | |
17696
03dcb660c4e8
patch 8.1.1845: may use NULL pointer when running out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17628
diff
changeset
|
2886 // NOTE: this may result in all pointers to become NULL. |
7 | 2887 ScreenLines = new_ScreenLines; |
2888 ScreenLinesUC = new_ScreenLinesUC; | |
714 | 2889 for (i = 0; i < p_mco; ++i) |
2890 ScreenLinesC[i] = new_ScreenLinesC[i]; | |
2891 Screen_mco = p_mco; | |
7 | 2892 ScreenLines2 = new_ScreenLines2; |
2893 ScreenAttrs = new_ScreenAttrs; | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2894 ScreenCols = new_ScreenCols; |
7 | 2895 LineOffset = new_LineOffset; |
2896 LineWraps = new_LineWraps; | |
671 | 2897 TabPageIdxs = new_TabPageIdxs; |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2898 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2899 popup_mask = new_popup_mask; |
17034
d4a7c690c8e6
patch 8.1.1517: when a popup changes all windows are redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17022
diff
changeset
|
2900 popup_mask_next = new_popup_mask_next; |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2901 popup_transparent = new_popup_transparent; |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2902 popup_mask_refresh = TRUE; |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2903 #endif |
7 | 2904 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2905 // It's important that screen_Rows and screen_Columns reflect the actual |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2906 // size of ScreenLines[]. Set them before calling anything. |
7 | 2907 #ifdef FEAT_GUI |
2908 old_Rows = screen_Rows; | |
2909 #endif | |
2910 screen_Rows = Rows; | |
2911 screen_Columns = Columns; | |
2912 | |
29812
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
2913 set_must_redraw(UPD_CLEAR); // need to clear the screen later |
3263 | 2914 if (doclear) |
29958
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2915 screenclear2(TRUE); |
7 | 2916 #ifdef FEAT_GUI |
2917 else if (gui.in_use | |
2918 && !gui.starting | |
2919 && ScreenLines != NULL | |
2920 && old_Rows != Rows) | |
2921 { | |
19824
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
2922 gui_redraw_block(0, 0, (int)Rows - 1, (int)Columns - 1, 0); |
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
2923 |
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
2924 // Adjust the position of the cursor, for when executing an external |
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
2925 // command. |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2926 if (msg_row >= Rows) // Rows got smaller |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2927 msg_row = Rows - 1; // put cursor at last row |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2928 else if (Rows > old_Rows) // Rows got bigger |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2929 msg_row += Rows - old_Rows; // put cursor in same place |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2930 if (msg_col >= Columns) // Columns got smaller |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2931 msg_col = Columns - 1; // put cursor at last column |
7 | 2932 } |
2933 #endif | |
16320
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
2934 clear_TabPageIdxs(); |
7 | 2935 |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2936 #ifdef FEAT_GUI_HAIKU |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2937 vim_unlock_screen(); |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2938 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
2939 |
7 | 2940 entered = FALSE; |
911 | 2941 --RedrawingDisabled; |
766 | 2942 |
1824 | 2943 /* |
2944 * Do not apply autocommands more than 3 times to avoid an endless loop | |
2945 * in case applying autocommands always changes Rows or Columns. | |
2946 */ | |
2947 if (starting == 0 && ++retry_count <= 3) | |
2948 { | |
766 | 2949 apply_autocmds(EVENT_VIMRESIZED, NULL, NULL, FALSE, curbuf); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2950 // In rare cases, autocommands may have altered Rows or Columns, |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
2951 // jump back to check if we need to allocate the screen again. |
1824 | 2952 goto retry; |
2953 } | |
7 | 2954 } |
2955 | |
2956 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2957 free_screenlines(void) |
356 | 2958 { |
714 | 2959 int i; |
2960 | |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2961 VIM_CLEAR(ScreenLinesUC); |
714 | 2962 for (i = 0; i < Screen_mco; ++i) |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2963 VIM_CLEAR(ScreenLinesC[i]); |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2964 VIM_CLEAR(ScreenLines2); |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2965 VIM_CLEAR(ScreenLines); |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2966 VIM_CLEAR(ScreenAttrs); |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
2967 VIM_CLEAR(ScreenCols); |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2968 VIM_CLEAR(LineOffset); |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2969 VIM_CLEAR(LineWraps); |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2970 VIM_CLEAR(TabPageIdxs); |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
2971 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2972 VIM_CLEAR(popup_mask); |
17034
d4a7c690c8e6
patch 8.1.1517: when a popup changes all windows are redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17022
diff
changeset
|
2973 VIM_CLEAR(popup_mask_next); |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17145
diff
changeset
|
2974 VIM_CLEAR(popup_transparent); |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
2975 #endif |
356 | 2976 } |
2977 | |
29958
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2978 /* |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2979 * Clear the screen. |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2980 * May delay if there is something the user should read. |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2981 * Allocated the screen for resizing if needed. |
30598
37aa9fd2ed72
patch 9.0.0634: evaluating "expr" options has more overhead than needed
Bram Moolenaar <Bram@vim.org>
parents:
30513
diff
changeset
|
2982 * Returns TRUE when the screen was actually cleared, FALSE if all display |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
2983 * cells were marked for updating. |
29958
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2984 */ |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
2985 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2986 screenclear(void) |
7 | 2987 { |
2988 check_for_delay(FALSE); | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
2989 screenalloc(FALSE); // allocate screen buffers if size changed |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
2990 return screenclear2(TRUE); // clear the screen |
29958
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2991 } |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2992 |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2993 /* |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2994 * Do not clear the screen but mark everything for redraw. |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2995 */ |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2996 void |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2997 redraw_as_cleared(void) |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2998 { |
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2999 screenclear2(FALSE); |
7 | 3000 } |
3001 | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
3002 static int |
29958
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
3003 screenclear2(int doclear) |
7 | 3004 { |
3005 int i; | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
3006 int did_clear = FALSE; |
7 | 3007 |
3008 if (starting == NO_SCREEN || ScreenLines == NULL | |
3009 #ifdef FEAT_GUI | |
3010 || (gui.in_use && gui.starting) | |
3011 #endif | |
3012 ) | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
3013 return FALSE; |
7 | 3014 |
3015 #ifdef FEAT_GUI | |
3016 if (!gui.in_use) | |
3017 #endif | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3018 screen_attr = -1; // force setting the Normal colors |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3019 screen_stop_highlight(); // don't want highlighting here |
7 | 3020 |
3021 #ifdef FEAT_CLIPBOARD | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3022 // disable selection without redrawing it |
7 | 3023 clip_scroll_selection(9999); |
3024 #endif | |
3025 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3026 // blank out ScreenLines |
7 | 3027 for (i = 0; i < Rows; ++i) |
3028 { | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3029 lineclear(LineOffset[i], (int)Columns, 0); |
7 | 3030 LineWraps[i] = FALSE; |
3031 } | |
3032 | |
29958
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
3033 if (doclear && can_clear(T_CL)) |
7 | 3034 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3035 out_str(T_CL); // clear the display |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
3036 did_clear = TRUE; |
7 | 3037 clear_cmdline = FALSE; |
644 | 3038 mode_displayed = FALSE; |
7 | 3039 } |
3040 else | |
3041 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3042 // can't clear the screen, mark all chars with invalid attributes |
7 | 3043 for (i = 0; i < Rows; ++i) |
3044 lineinvalid(LineOffset[i], (int)Columns); | |
3045 clear_cmdline = TRUE; | |
3046 } | |
3047 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3048 screen_cleared = TRUE; // can use contents of ScreenLines now |
7 | 3049 |
29958
549994614a5a
patch 9.0.0317: when updating the whole screen a popup may not be redrawn
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
3050 win_rest_invalid(firstwin); // redraw all regular windows |
7 | 3051 redraw_cmdline = TRUE; |
673 | 3052 redraw_tabline = TRUE; |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29672
diff
changeset
|
3053 if (must_redraw == UPD_CLEAR) // no need to clear again |
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29672
diff
changeset
|
3054 must_redraw = UPD_NOT_VALID; |
30222
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3055 msg_scrolled = 0; // compute_cmdrow() uses this |
7 | 3056 compute_cmdrow(); |
30222
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3057 #ifdef FEAT_PROP_POPUP |
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3058 popup_redraw_all(); // redraw all popup windows |
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3059 #endif |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3060 msg_row = cmdline_row; // put cursor on last line for messages |
7 | 3061 msg_col = 0; |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3062 screen_start(); // don't know where cursor is now |
7 | 3063 msg_didany = FALSE; |
3064 msg_didout = FALSE; | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
3065 |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30331
diff
changeset
|
3066 return did_clear; |
7 | 3067 } |
3068 | |
3069 /* | |
3070 * Clear one line in ScreenLines. | |
3071 */ | |
3072 static void | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3073 lineclear(unsigned off, int width, int attr) |
7 | 3074 { |
3075 (void)vim_memset(ScreenLines + off, ' ', (size_t)width * sizeof(schar_T)); | |
3076 if (enc_utf8) | |
3077 (void)vim_memset(ScreenLinesUC + off, 0, | |
3078 (size_t)width * sizeof(u8char_T)); | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3079 (void)vim_memset(ScreenAttrs + off, attr, (size_t)width * sizeof(sattr_T)); |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
3080 (void)vim_memset(ScreenCols + off, -1, (size_t)width * sizeof(colnr_T)); |
7 | 3081 } |
3082 | |
3083 /* | |
3084 * Mark one line in ScreenLines invalid by setting the attributes to an | |
3085 * invalid value. | |
3086 */ | |
3087 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3088 lineinvalid(unsigned off, int width) |
7 | 3089 { |
3090 (void)vim_memset(ScreenAttrs + off, -1, (size_t)width * sizeof(sattr_T)); | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
3091 (void)vim_memset(ScreenCols + off, -1, (size_t)width * sizeof(colnr_T)); |
7 | 3092 } |
3093 | |
3094 /* | |
21226
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3095 * To be called when characters were sent to the terminal directly, outputting |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3096 * test on "screen_lnum". |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3097 */ |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3098 void |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3099 line_was_clobbered(int screen_lnum) |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3100 { |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3101 lineinvalid(LineOffset[screen_lnum], (int)Columns); |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3102 } |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3103 |
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20996
diff
changeset
|
3104 /* |
7 | 3105 * Copy part of a Screenline for vertically split window "wp". |
3106 */ | |
3107 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3108 linecopy(int to, int from, win_T *wp) |
7 | 3109 { |
3110 unsigned off_to = LineOffset[to] + wp->w_wincol; | |
3111 unsigned off_from = LineOffset[from] + wp->w_wincol; | |
3112 | |
3113 mch_memmove(ScreenLines + off_to, ScreenLines + off_from, | |
3114 wp->w_width * sizeof(schar_T)); | |
3115 if (enc_utf8) | |
3116 { | |
714 | 3117 int i; |
3118 | |
7 | 3119 mch_memmove(ScreenLinesUC + off_to, ScreenLinesUC + off_from, |
3120 wp->w_width * sizeof(u8char_T)); | |
714 | 3121 for (i = 0; i < p_mco; ++i) |
3122 mch_memmove(ScreenLinesC[i] + off_to, ScreenLinesC[i] + off_from, | |
3123 wp->w_width * sizeof(u8char_T)); | |
7 | 3124 } |
3125 if (enc_dbcs == DBCS_JPNU) | |
3126 mch_memmove(ScreenLines2 + off_to, ScreenLines2 + off_from, | |
3127 wp->w_width * sizeof(schar_T)); | |
3128 mch_memmove(ScreenAttrs + off_to, ScreenAttrs + off_from, | |
3129 wp->w_width * sizeof(sattr_T)); | |
29413
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
3130 mch_memmove(ScreenCols + off_to, ScreenCols + off_from, |
34e93e046526
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
Bram Moolenaar <Bram@vim.org>
parents:
29395
diff
changeset
|
3131 wp->w_width * sizeof(colnr_T)); |
7 | 3132 } |
3133 | |
3134 /* | |
3135 * Return TRUE if clearing with term string "p" would work. | |
3136 * It can't work when the string is empty or it won't set the right background. | |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3137 * Don't clear to end-of-line when there are popups, it may cause flicker. |
7 | 3138 */ |
3139 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3140 can_clear(char_u *p) |
7 | 3141 { |
3142 return (*p != NUL && (t_colors <= 1 | |
3143 #ifdef FEAT_GUI | |
3144 || gui.in_use | |
3145 #endif | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
3146 #ifdef FEAT_TERMGUICOLORS |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9885
diff
changeset
|
3147 || (p_tgc && cterm_normal_bg_gui_color == INVALCOLOR) |
9320
b6472fd9f5ba
commit https://github.com/vim/vim/commit/d18f672fc9477f3c0cb7cc4ce8d9237ed825c612
Christian Brabandt <cb@256bit.org>
parents:
9282
diff
changeset
|
3148 || (!p_tgc && cterm_normal_bg_color == 0) |
b6472fd9f5ba
commit https://github.com/vim/vim/commit/d18f672fc9477f3c0cb7cc4ce8d9237ed825c612
Christian Brabandt <cb@256bit.org>
parents:
9282
diff
changeset
|
3149 #else |
b6472fd9f5ba
commit https://github.com/vim/vim/commit/d18f672fc9477f3c0cb7cc4ce8d9237ed825c612
Christian Brabandt <cb@256bit.org>
parents:
9282
diff
changeset
|
3150 || cterm_normal_bg_color == 0 |
b6472fd9f5ba
commit https://github.com/vim/vim/commit/d18f672fc9477f3c0cb7cc4ce8d9237ed825c612
Christian Brabandt <cb@256bit.org>
parents:
9282
diff
changeset
|
3151 #endif |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3152 || *T_UT != NUL) |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
3153 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3154 && !(p == T_CE && popup_visible) |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3155 #endif |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3156 ); |
7 | 3157 } |
3158 | |
3159 /* | |
3160 * Reset cursor position. Use whenever cursor was moved because of outputting | |
3161 * something directly to the screen (shell commands) or a terminal control | |
3162 * code. | |
3163 */ | |
3164 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3165 screen_start(void) |
7 | 3166 { |
3167 screen_cur_row = screen_cur_col = 9999; | |
3168 } | |
3169 | |
3170 /* | |
3171 * Move the cursor to position "row","col" in the screen. | |
3172 * This tries to find the most efficient way to move, minimizing the number of | |
3173 * characters sent to the terminal. | |
3174 */ | |
3175 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3176 windgoto(int row, int col) |
7 | 3177 { |
205 | 3178 sattr_T *p; |
7 | 3179 int i; |
3180 int plan; | |
3181 int cost; | |
3182 int wouldbe_col; | |
3183 int noinvcurs; | |
3184 char_u *bs; | |
3185 int goto_cost; | |
3186 int attr; | |
3187 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3188 #define GOTO_COST 7 // assume a term_windgoto() takes about 7 chars |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3189 #define HIGHL_COST 5 // assume unhighlight takes 5 chars |
7 | 3190 |
3191 #define PLAN_LE 1 | |
3192 #define PLAN_CR 2 | |
3193 #define PLAN_NL 3 | |
3194 #define PLAN_WRITE 4 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3195 // Can't use ScreenLines unless initialized |
7 | 3196 if (ScreenLines == NULL) |
3197 return; | |
3198 if (col != screen_cur_col || row != screen_cur_row) | |
3199 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3200 // Check for valid position. |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3201 if (row < 0) // window without text lines? |
7 | 3202 row = 0; |
3203 if (row >= screen_Rows) | |
3204 row = screen_Rows - 1; | |
3205 if (col >= screen_Columns) | |
3206 col = screen_Columns - 1; | |
3207 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3208 // check if no cursor movement is allowed in highlight mode |
7 | 3209 if (screen_attr && *T_MS == NUL) |
3210 noinvcurs = HIGHL_COST; | |
3211 else | |
3212 noinvcurs = 0; | |
3213 goto_cost = GOTO_COST + noinvcurs; | |
3214 | |
3215 /* | |
3216 * Plan how to do the positioning: | |
3217 * 1. Use CR to move it to column 0, same row. | |
3218 * 2. Use T_LE to move it a few columns to the left. | |
3219 * 3. Use NL to move a few lines down, column 0. | |
3220 * 4. Move a few columns to the right with T_ND or by writing chars. | |
3221 * | |
3222 * Don't do this if the cursor went beyond the last column, the cursor | |
3223 * position is unknown then (some terminals wrap, some don't ) | |
3224 * | |
1213 | 3225 * First check if the highlighting attributes allow us to write |
7 | 3226 * characters to move the cursor to the right. |
3227 */ | |
3228 if (row >= screen_cur_row && screen_cur_col < Columns) | |
3229 { | |
3230 /* | |
3231 * If the cursor is in the same row, bigger col, we can use CR | |
3232 * or T_LE. | |
3233 */ | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3234 bs = NULL; // init for GCC |
7 | 3235 attr = screen_attr; |
3236 if (row == screen_cur_row && col < screen_cur_col) | |
3237 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3238 // "le" is preferred over "bc", because "bc" is obsolete |
7 | 3239 if (*T_LE) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3240 bs = T_LE; // "cursor left" |
7 | 3241 else |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3242 bs = T_BC; // "backspace character (old) |
7 | 3243 if (*bs) |
3244 cost = (screen_cur_col - col) * (int)STRLEN(bs); | |
3245 else | |
3246 cost = 999; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3247 if (col + 1 < cost) // using CR is less characters |
7 | 3248 { |
3249 plan = PLAN_CR; | |
3250 wouldbe_col = 0; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3251 cost = 1; // CR is just one character |
7 | 3252 } |
3253 else | |
3254 { | |
3255 plan = PLAN_LE; | |
3256 wouldbe_col = col; | |
3257 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3258 if (noinvcurs) // will stop highlighting |
7 | 3259 { |
3260 cost += noinvcurs; | |
3261 attr = 0; | |
3262 } | |
3263 } | |
3264 | |
3265 /* | |
3266 * If the cursor is above where we want to be, we can use CR LF. | |
3267 */ | |
3268 else if (row > screen_cur_row) | |
3269 { | |
3270 plan = PLAN_NL; | |
3271 wouldbe_col = 0; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3272 cost = (row - screen_cur_row) * 2; // CR LF |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3273 if (noinvcurs) // will stop highlighting |
7 | 3274 { |
3275 cost += noinvcurs; | |
3276 attr = 0; | |
3277 } | |
3278 } | |
3279 | |
3280 /* | |
3281 * If the cursor is in the same row, smaller col, just use write. | |
3282 */ | |
3283 else | |
3284 { | |
3285 plan = PLAN_WRITE; | |
3286 wouldbe_col = screen_cur_col; | |
3287 cost = 0; | |
3288 } | |
3289 | |
3290 /* | |
3291 * Check if any characters that need to be written have the | |
3292 * correct attributes. Also avoid UTF-8 characters. | |
3293 */ | |
3294 i = col - wouldbe_col; | |
3295 if (i > 0) | |
3296 cost += i; | |
3297 if (cost < goto_cost && i > 0) | |
3298 { | |
3299 /* | |
3300 * Check if the attributes are correct without additionally | |
3301 * stopping highlighting. | |
3302 */ | |
3303 p = ScreenAttrs + LineOffset[row] + wouldbe_col; | |
3304 while (i && *p++ == attr) | |
3305 --i; | |
3306 if (i != 0) | |
3307 { | |
3308 /* | |
3309 * Try if it works when highlighting is stopped here. | |
3310 */ | |
3311 if (*--p == 0) | |
3312 { | |
3313 cost += noinvcurs; | |
3314 while (i && *p++ == 0) | |
3315 --i; | |
3316 } | |
3317 if (i != 0) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3318 cost = 999; // different attributes, don't do it |
7 | 3319 } |
3320 if (enc_utf8) | |
3321 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3322 // Don't use an UTF-8 char for positioning, it's slow. |
7 | 3323 for (i = wouldbe_col; i < col; ++i) |
3324 if (ScreenLinesUC[LineOffset[row] + i] != 0) | |
3325 { | |
3326 cost = 999; | |
3327 break; | |
3328 } | |
3329 } | |
3330 } | |
3331 | |
3332 /* | |
3333 * We can do it without term_windgoto()! | |
3334 */ | |
3335 if (cost < goto_cost) | |
3336 { | |
3337 if (plan == PLAN_LE) | |
3338 { | |
3339 if (noinvcurs) | |
3340 screen_stop_highlight(); | |
3341 while (screen_cur_col > col) | |
3342 { | |
3343 out_str(bs); | |
3344 --screen_cur_col; | |
3345 } | |
3346 } | |
3347 else if (plan == PLAN_CR) | |
3348 { | |
3349 if (noinvcurs) | |
3350 screen_stop_highlight(); | |
3351 out_char('\r'); | |
3352 screen_cur_col = 0; | |
3353 } | |
3354 else if (plan == PLAN_NL) | |
3355 { | |
3356 if (noinvcurs) | |
3357 screen_stop_highlight(); | |
3358 while (screen_cur_row < row) | |
3359 { | |
3360 out_char('\n'); | |
3361 ++screen_cur_row; | |
3362 } | |
3363 screen_cur_col = 0; | |
3364 } | |
3365 | |
3366 i = col - screen_cur_col; | |
3367 if (i > 0) | |
3368 { | |
3369 /* | |
3370 * Use cursor-right if it's one character only. Avoids | |
3371 * removing a line of pixels from the last bold char, when | |
3372 * using the bold trick in the GUI. | |
3373 */ | |
3374 if (T_ND[0] != NUL && T_ND[1] == NUL) | |
3375 { | |
3376 while (i-- > 0) | |
3377 out_char(*T_ND); | |
3378 } | |
3379 else | |
3380 { | |
3381 int off; | |
3382 | |
3383 off = LineOffset[row] + screen_cur_col; | |
3384 while (i-- > 0) | |
3385 { | |
3386 if (ScreenAttrs[off] != screen_attr) | |
3387 screen_stop_highlight(); | |
3388 out_flush_check(); | |
3389 out_char(ScreenLines[off]); | |
3390 if (enc_dbcs == DBCS_JPNU | |
3391 && ScreenLines[off] == 0x8e) | |
3392 out_char(ScreenLines2[off]); | |
3393 ++off; | |
3394 } | |
3395 } | |
3396 } | |
3397 } | |
3398 } | |
3399 else | |
3400 cost = 999; | |
3401 | |
3402 if (cost >= goto_cost) | |
3403 { | |
3404 if (noinvcurs) | |
3405 screen_stop_highlight(); | |
5995 | 3406 if (row == screen_cur_row && (col > screen_cur_col) |
3407 && *T_CRI != NUL) | |
7 | 3408 term_cursor_right(col - screen_cur_col); |
3409 else | |
3410 term_windgoto(row, col); | |
3411 } | |
3412 screen_cur_row = row; | |
3413 screen_cur_col = col; | |
3414 } | |
3415 } | |
3416 | |
3417 /* | |
3418 * Set cursor to its position in the current window. | |
3419 */ | |
3420 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3421 setcursor(void) |
7 | 3422 { |
13400
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3423 setcursor_mayforce(FALSE); |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3424 } |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3425 |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3426 /* |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3427 * Set cursor to its position in the current window. |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3428 * When "force" is TRUE also when not redrawing. |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3429 */ |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3430 void |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3431 setcursor_mayforce(int force) |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3432 { |
c415cdd49ea4
patch 8.0.1574: show cursor in wrong place when using popup menu
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
3433 if (force || redrawing()) |
7 | 3434 { |
3435 validate_cursor(); | |
3436 windgoto(W_WINROW(curwin) + curwin->w_wrow, | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12510
diff
changeset
|
3437 curwin->w_wincol + ( |
7 | 3438 #ifdef FEAT_RIGHTLEFT |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3439 // With 'rightleft' set and the cursor on a double-wide |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3440 // character, position it on the leftmost column. |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3441 curwin->w_p_rl ? ((int)curwin->w_width - curwin->w_wcol |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3442 - ((has_mbyte |
1545 | 3443 && (*mb_ptr2cells)(ml_get_cursor()) == 2 |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3444 && vim_isprintc(gchar_cursor())) ? 2 : 1)) : |
7 | 3445 #endif |
3446 curwin->w_wcol)); | |
3447 } | |
3448 } | |
3449 | |
3450 | |
3451 /* | |
11655
8014350fe51a
patch 8.0.0710: a job that writes to a buffer clears completion
Christian Brabandt <cb@256bit.org>
parents:
11607
diff
changeset
|
3452 * Insert 'line_count' lines at 'row' in window 'wp'. |
8014350fe51a
patch 8.0.0710: a job that writes to a buffer clears completion
Christian Brabandt <cb@256bit.org>
parents:
11607
diff
changeset
|
3453 * If 'invalid' is TRUE the wp->w_lines[].wl_lnum is invalidated. |
8014350fe51a
patch 8.0.0710: a job that writes to a buffer clears completion
Christian Brabandt <cb@256bit.org>
parents:
11607
diff
changeset
|
3454 * If 'mayclear' is TRUE the screen will be cleared if it is faster than |
7 | 3455 * scrolling. |
3456 * Returns FAIL if the lines are not inserted, OK for success. | |
3457 */ | |
3458 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3459 win_ins_lines( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3460 win_T *wp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3461 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3462 int line_count, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3463 int invalid, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3464 int mayclear) |
7 | 3465 { |
3466 int did_delete; | |
3467 int nextrow; | |
3468 int lastrow; | |
3469 int retval; | |
3470 | |
3471 if (invalid) | |
3472 wp->w_lines_valid = 0; | |
3473 | |
29251
aea330cb546f
patch 8.2.5144: with 'lazyredraw' set completion menu may be wrong
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
3474 // with only a few lines it's not worth the effort |
7 | 3475 if (wp->w_height < 5) |
3476 return FAIL; | |
3477 | |
29251
aea330cb546f
patch 8.2.5144: with 'lazyredraw' set completion menu may be wrong
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
3478 // with the popup menu visible this might not work correctly |
aea330cb546f
patch 8.2.5144: with 'lazyredraw' set completion menu may be wrong
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
3479 if (pum_visible()) |
aea330cb546f
patch 8.2.5144: with 'lazyredraw' set completion menu may be wrong
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
3480 return FAIL; |
aea330cb546f
patch 8.2.5144: with 'lazyredraw' set completion menu may be wrong
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
3481 |
7 | 3482 if (line_count > wp->w_height - row) |
3483 line_count = wp->w_height - row; | |
3484 | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3485 retval = win_do_lines(wp, row, line_count, mayclear, FALSE, 0); |
7 | 3486 if (retval != MAYBE) |
3487 return retval; | |
3488 | |
3489 /* | |
3490 * If there is a next window or a status line, we first try to delete the | |
3491 * lines at the bottom to avoid messing what is after the window. | |
17628
6146b10714de
patch 8.1.1811: popup window color cannot be set to "Normal"
Bram Moolenaar <Bram@vim.org>
parents:
17551
diff
changeset
|
3492 * If this fails and there are following windows, don't do anything to |
6146b10714de
patch 8.1.1811: popup window color cannot be set to "Normal"
Bram Moolenaar <Bram@vim.org>
parents:
17551
diff
changeset
|
3493 * avoid messing up those windows, better just redraw. |
7 | 3494 */ |
3495 did_delete = FALSE; | |
3496 if (wp->w_next != NULL || wp->w_status_height) | |
3497 { | |
3498 if (screen_del_lines(0, W_WINROW(wp) + wp->w_height - line_count, | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3499 line_count, (int)Rows, FALSE, 0, NULL) == OK) |
7 | 3500 did_delete = TRUE; |
3501 else if (wp->w_next) | |
3502 return FAIL; | |
3503 } | |
3504 /* | |
3505 * if no lines deleted, blank the lines that will end up below the window | |
3506 */ | |
3507 if (!did_delete) | |
3508 { | |
3509 wp->w_redr_status = TRUE; | |
3510 redraw_cmdline = TRUE; | |
12529
158917d728b4
patch 8.0.1143: macros always expand to the same thing
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
3511 nextrow = W_WINROW(wp) + wp->w_height + wp->w_status_height; |
7 | 3512 lastrow = nextrow + line_count; |
3513 if (lastrow > Rows) | |
3514 lastrow = Rows; | |
3515 screen_fill(nextrow - line_count, lastrow - line_count, | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12510
diff
changeset
|
3516 wp->w_wincol, (int)W_ENDCOL(wp), |
7 | 3517 ' ', ' ', 0); |
3518 } | |
3519 | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3520 if (screen_ins_lines(0, W_WINROW(wp) + row, line_count, (int)Rows, 0, NULL) |
7 | 3521 == FAIL) |
3522 { | |
17628
6146b10714de
patch 8.1.1811: popup window color cannot be set to "Normal"
Bram Moolenaar <Bram@vim.org>
parents:
17551
diff
changeset
|
3523 // deletion will have messed up other windows |
7 | 3524 if (did_delete) |
3525 { | |
3526 wp->w_redr_status = TRUE; | |
3527 win_rest_invalid(W_NEXT(wp)); | |
3528 } | |
3529 return FAIL; | |
3530 } | |
3531 | |
3532 return OK; | |
3533 } | |
3534 | |
3535 /* | |
11655
8014350fe51a
patch 8.0.0710: a job that writes to a buffer clears completion
Christian Brabandt <cb@256bit.org>
parents:
11607
diff
changeset
|
3536 * Delete "line_count" window lines at "row" in window "wp". |
7 | 3537 * If "invalid" is TRUE curwin->w_lines[] is invalidated. |
3538 * If "mayclear" is TRUE the screen will be cleared if it is faster than | |
3539 * scrolling | |
3540 * Return OK for success, FAIL if the lines are not deleted. | |
3541 */ | |
3542 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3543 win_del_lines( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3544 win_T *wp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3545 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3546 int line_count, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3547 int invalid, |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3548 int mayclear, |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3549 int clear_attr) // for clearing lines |
7 | 3550 { |
3551 int retval; | |
3552 | |
3553 if (invalid) | |
3554 wp->w_lines_valid = 0; | |
3555 | |
3556 if (line_count > wp->w_height - row) | |
3557 line_count = wp->w_height - row; | |
3558 | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3559 retval = win_do_lines(wp, row, line_count, mayclear, TRUE, clear_attr); |
7 | 3560 if (retval != MAYBE) |
3561 return retval; | |
3562 | |
3563 if (screen_del_lines(0, W_WINROW(wp) + row, line_count, | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3564 (int)Rows, FALSE, clear_attr, NULL) == FAIL) |
7 | 3565 return FAIL; |
3566 | |
3567 /* | |
3568 * If there are windows or status lines below, try to put them at the | |
3569 * correct place. If we can't do that, they have to be redrawn. | |
3570 */ | |
3571 if (wp->w_next || wp->w_status_height || cmdline_row < Rows - 1) | |
3572 { | |
3573 if (screen_ins_lines(0, W_WINROW(wp) + wp->w_height - line_count, | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3574 line_count, (int)Rows, clear_attr, NULL) == FAIL) |
7 | 3575 { |
3576 wp->w_redr_status = TRUE; | |
3577 win_rest_invalid(wp->w_next); | |
3578 } | |
3579 } | |
3580 /* | |
3581 * If this is the last window and there is no status line, redraw the | |
3582 * command line later. | |
3583 */ | |
3584 else | |
3585 redraw_cmdline = TRUE; | |
3586 return OK; | |
3587 } | |
3588 | |
3589 /* | |
3590 * Common code for win_ins_lines() and win_del_lines(). | |
3591 * Returns OK or FAIL when the work has been done. | |
3592 * Returns MAYBE when not finished yet. | |
3593 */ | |
3594 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3595 win_do_lines( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3596 win_T *wp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3597 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3598 int line_count, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3599 int mayclear, |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3600 int del, |
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3601 int clear_attr) |
7 | 3602 { |
3603 int retval; | |
3604 | |
3605 if (!redrawing() || line_count <= 0) | |
3606 return FAIL; | |
3607 | |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3608 // When inserting lines would result in loss of command output, just redraw |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3609 // the lines. |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3610 if (no_win_do_lines_ins && !del) |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3611 return FAIL; |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3612 |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3613 // only a few lines left: redraw is faster |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
3614 if (mayclear && Rows - line_count < 5 && wp->w_width == Columns) |
7 | 3615 { |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3616 if (!no_win_do_lines_ins) |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3617 screenclear(); // will set wp->w_lines_valid to 0 |
7 | 3618 return FAIL; |
3619 } | |
3620 | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
3621 #ifdef FEAT_PROP_POPUP |
17034
d4a7c690c8e6
patch 8.1.1517: when a popup changes all windows are redrawn
Bram Moolenaar <Bram@vim.org>
parents:
17022
diff
changeset
|
3622 // this doesn't work when there are popups visible |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3623 if (popup_visible) |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3624 return FAIL; |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3625 #endif |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3626 |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3627 // Delete all remaining lines |
7 | 3628 if (row + line_count >= wp->w_height) |
3629 { | |
3630 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height, | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12510
diff
changeset
|
3631 wp->w_wincol, (int)W_ENDCOL(wp), |
7 | 3632 ' ', ' ', 0); |
3633 return OK; | |
3634 } | |
3635 | |
3636 /* | |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3637 * When scrolling, the message on the command line should be cleared, |
7 | 3638 * otherwise it will stay there forever. |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3639 * Don't do this when avoiding to insert lines. |
7 | 3640 */ |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3641 if (!no_win_do_lines_ins) |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11277
diff
changeset
|
3642 clear_cmdline = TRUE; |
7 | 3643 |
3644 /* | |
3645 * If the terminal can set a scroll region, use that. | |
3646 * Always do this in a vertically split window. This will redraw from | |
3647 * ScreenLines[] when t_CV isn't defined. That's faster than using | |
3648 * win_line(). | |
3649 * Don't use a scroll region when we are going to redraw the text, writing | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
3650 * a character in the lower right corner of the scroll region may cause a |
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
3651 * scroll-up . |
7 | 3652 */ |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
3653 if (scroll_region || wp->w_width != Columns) |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
3654 { |
7 | 3655 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL)) |
3656 scroll_region_set(wp, row); | |
3657 if (del) | |
3658 retval = screen_del_lines(W_WINROW(wp) + row, 0, line_count, | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3659 wp->w_height - row, FALSE, clear_attr, wp); |
7 | 3660 else |
3661 retval = screen_ins_lines(W_WINROW(wp) + row, 0, line_count, | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3662 wp->w_height - row, clear_attr, wp); |
7 | 3663 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL)) |
3664 scroll_region_reset(); | |
3665 return retval; | |
3666 } | |
3667 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3668 if (wp->w_next != NULL && p_tf) // don't delete/insert on fast terminal |
7 | 3669 return FAIL; |
3670 | |
3671 return MAYBE; | |
3672 } | |
3673 | |
3674 /* | |
3675 * window 'wp' and everything after it is messed up, mark it for redraw | |
3676 */ | |
3677 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3678 win_rest_invalid(win_T *wp) |
7 | 3679 { |
3680 while (wp != NULL) | |
3681 { | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29672
diff
changeset
|
3682 redraw_win_later(wp, UPD_NOT_VALID); |
7 | 3683 wp->w_redr_status = TRUE; |
3684 wp = wp->w_next; | |
3685 } | |
3686 redraw_cmdline = TRUE; | |
3687 } | |
3688 | |
3689 /* | |
3690 * The rest of the routines in this file perform screen manipulations. The | |
3691 * given operation is performed physically on the screen. The corresponding | |
3692 * change is also made to the internal screen image. In this way, the editor | |
3693 * anticipates the effect of editing changes on the appearance of the screen. | |
3694 * That way, when we call screenupdate a complete redraw isn't usually | |
3695 * necessary. Another advantage is that we can keep adding code to anticipate | |
3696 * screen changes, and in the meantime, everything still works. | |
3697 */ | |
3698 | |
3699 /* | |
3700 * types for inserting or deleting lines | |
3701 */ | |
3702 #define USE_T_CAL 1 | |
3703 #define USE_T_CDL 2 | |
3704 #define USE_T_AL 3 | |
3705 #define USE_T_CE 4 | |
3706 #define USE_T_DL 5 | |
3707 #define USE_T_SR 6 | |
3708 #define USE_NL 7 | |
3709 #define USE_T_CD 8 | |
3710 #define USE_REDRAW 9 | |
3711 | |
3712 /* | |
3713 * insert lines on the screen and update ScreenLines[] | |
28275
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3714 * "end" is the line after the scrolled part. Normally it is Rows. |
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3715 * When scrolling region used "off" is the offset from the top for the region. |
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3716 * "row" and "end" are relative to the start of the region. |
7 | 3717 * |
3718 * return FAIL for failure, OK for success. | |
3719 */ | |
446 | 3720 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3721 screen_ins_lines( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3722 int off, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3723 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3724 int line_count, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3725 int end, |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3726 int clear_attr, |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3727 win_T *wp) // NULL or window to use width from |
7 | 3728 { |
3729 int i; | |
3730 int j; | |
3731 unsigned temp; | |
3732 int cursor_row; | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3733 int cursor_col = 0; |
7 | 3734 int type; |
3735 int result_empty; | |
3736 int can_ce = can_clear(T_CE); | |
3737 | |
3738 /* | |
3739 * FAIL if | |
3740 * - there is no valid screen | |
3741 * - the line count is less than one | |
3742 * - the line count is more than 'ttyscroll' | |
28275
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3743 * - "end" is more than "Rows" (safety check, should not happen) |
11698
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3744 * - redrawing for a callback and there is a modeless selection |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3745 * - there is a popup window |
7 | 3746 */ |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3747 if (!screen_valid(TRUE) |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3748 || line_count <= 0 || line_count > p_ttyscroll |
28275
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3749 || end > Rows |
11698
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3750 #ifdef FEAT_CLIPBOARD |
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3751 || (clip_star.state != SELECT_CLEARED |
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3752 && redrawing_for_callback > 0) |
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3753 #endif |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18720
diff
changeset
|
3754 #ifdef FEAT_PROP_POPUP |
16986
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3755 || popup_visible |
03f3a9ca2770
patch 8.1.1493: redrawing with popups is slow and causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
16918
diff
changeset
|
3756 #endif |
11698
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3757 ) |
7 | 3758 return FAIL; |
3759 | |
3760 /* | |
3761 * There are seven ways to insert lines: | |
3762 * 0. When in a vertically split window and t_CV isn't set, redraw the | |
3763 * characters from ScreenLines[]. | |
3764 * 1. Use T_CD (clear to end of display) if it exists and the result of | |
3765 * the insert is just empty lines | |
3766 * 2. Use T_CAL (insert multiple lines) if it exists and T_AL is not | |
3767 * present or line_count > 1. It looks better if we do all the inserts | |
3768 * at once. | |
3769 * 3. Use T_CDL (delete multiple lines) if it exists and the result of the | |
3770 * insert is just empty lines and T_CE is not present or line_count > | |
3771 * 1. | |
3772 * 4. Use T_AL (insert line) if it exists. | |
3773 * 5. Use T_CE (erase line) if it exists and the result of the insert is | |
3774 * just empty lines. | |
3775 * 6. Use T_DL (delete line) if it exists and the result of the insert is | |
3776 * just empty lines. | |
3777 * 7. Use T_SR (scroll reverse) if it exists and inserting at row 0 and | |
3778 * the 'da' flag is not set or we have clear line capability. | |
3779 * 8. redraw the characters from ScreenLines[]. | |
3780 * | |
3781 * Careful: In a hpterm scroll reverse doesn't work as expected, it moves | |
3782 * the scrollbar for the window. It does have insert line, use that if it | |
3783 * exists. | |
3784 */ | |
3785 result_empty = (row + line_count >= end); | |
3786 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL) | |
28295
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3787 { |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3788 // Avoid that lines are first cleared here and then redrawn, which |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3789 // results in many characters updated twice. This happens with CTRL-F |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3790 // in a vertically split window. With line-by-line scrolling |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3791 // USE_REDRAW should be faster. |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3792 if (line_count > 3) |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3793 return FAIL; |
7 | 3794 type = USE_REDRAW; |
28295
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3795 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
3796 else if (can_clear(T_CD) && result_empty) |
7 | 3797 type = USE_T_CD; |
3798 else if (*T_CAL != NUL && (line_count > 1 || *T_AL == NUL)) | |
3799 type = USE_T_CAL; | |
3800 else if (*T_CDL != NUL && result_empty && (line_count > 1 || !can_ce)) | |
3801 type = USE_T_CDL; | |
3802 else if (*T_AL != NUL) | |
3803 type = USE_T_AL; | |
3804 else if (can_ce && result_empty) | |
3805 type = USE_T_CE; | |
3806 else if (*T_DL != NUL && result_empty) | |
3807 type = USE_T_DL; | |
3808 else if (*T_SR != NUL && row == 0 && (*T_DA == NUL || can_ce)) | |
3809 type = USE_T_SR; | |
3810 else | |
3811 return FAIL; | |
3812 | |
3813 /* | |
3814 * For clearing the lines screen_del_lines() is used. This will also take | |
3815 * care of t_db if necessary. | |
3816 */ | |
3817 if (type == USE_T_CD || type == USE_T_CDL || | |
3818 type == USE_T_CE || type == USE_T_DL) | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3819 return screen_del_lines(off, row, line_count, end, FALSE, 0, wp); |
7 | 3820 |
3821 /* | |
3822 * If text is retained below the screen, first clear or delete as many | |
3823 * lines at the bottom of the window as are about to be inserted so that | |
3824 * the deleted lines won't later surface during a screen_del_lines. | |
3825 */ | |
3826 if (*T_DB) | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3827 screen_del_lines(off, end - line_count, line_count, end, FALSE, 0, wp); |
7 | 3828 |
3829 #ifdef FEAT_CLIPBOARD | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3830 // Remove a modeless selection when inserting lines halfway the screen |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3831 // or not the full width of the screen. |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
3832 if (off + row > 0 || (wp != NULL && wp->w_width != Columns)) |
3674 | 3833 clip_clear_selection(&clip_star); |
7 | 3834 else |
3835 clip_scroll_selection(-line_count); | |
3836 #endif | |
3837 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3838 #ifdef FEAT_GUI_HAIKU |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3839 vim_lock_screen(); |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3840 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3841 |
7 | 3842 #ifdef FEAT_GUI |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3843 // Don't update the GUI cursor here, ScreenLines[] is invalid until the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3844 // scrolling is actually carried out. |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
3845 gui_dont_update_cursor(row + off <= gui.cursor_row); |
7 | 3846 #endif |
3847 | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3848 if (wp != NULL && wp->w_wincol != 0 && *T_CSV != NUL && *T_CCS == NUL) |
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3849 cursor_col = wp->w_wincol; |
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3850 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3851 if (*T_CCS != NUL) // cursor relative to region |
7 | 3852 cursor_row = row; |
3853 else | |
3854 cursor_row = row + off; | |
3855 | |
3856 /* | |
3857 * Shift LineOffset[] line_count down to reflect the inserted lines. | |
3858 * Clear the inserted lines in ScreenLines[]. | |
3859 */ | |
3860 row += off; | |
3861 end += off; | |
3862 for (i = 0; i < line_count; ++i) | |
3863 { | |
3864 if (wp != NULL && wp->w_width != Columns) | |
3865 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3866 // need to copy part of a line |
7 | 3867 j = end - 1 - i; |
3868 while ((j -= line_count) >= row) | |
3869 linecopy(j + line_count, j, wp); | |
3870 j += line_count; | |
3871 if (can_clear((char_u *)" ")) | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3872 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width, |
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3873 clear_attr); |
7 | 3874 else |
3875 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width); | |
3876 LineWraps[j] = FALSE; | |
3877 } | |
3878 else | |
3879 { | |
3880 j = end - 1 - i; | |
3881 temp = LineOffset[j]; | |
3882 while ((j -= line_count) >= row) | |
3883 { | |
3884 LineOffset[j + line_count] = LineOffset[j]; | |
3885 LineWraps[j + line_count] = LineWraps[j]; | |
3886 } | |
3887 LineOffset[j + line_count] = temp; | |
3888 LineWraps[j + line_count] = FALSE; | |
3889 if (can_clear((char_u *)" ")) | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3890 lineclear(temp, (int)Columns, clear_attr); |
7 | 3891 else |
3892 lineinvalid(temp, (int)Columns); | |
3893 } | |
3894 } | |
3895 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3896 #ifdef FEAT_GUI_HAIKU |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3897 vim_unlock_screen(); |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3898 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
3899 |
7 | 3900 screen_stop_highlight(); |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3901 windgoto(cursor_row, cursor_col); |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3902 if (clear_attr != 0) |
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
3903 screen_start_highlight(clear_attr); |
7 | 3904 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3905 // redraw the characters |
7 | 3906 if (type == USE_REDRAW) |
3907 redraw_block(row, end, wp); | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
3908 else if (type == USE_T_CAL) |
7 | 3909 { |
3910 term_append_lines(line_count); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3911 screen_start(); // don't know where cursor is now |
7 | 3912 } |
3913 else | |
3914 { | |
3915 for (i = 0; i < line_count; i++) | |
3916 { | |
3917 if (type == USE_T_AL) | |
3918 { | |
3919 if (i && cursor_row != 0) | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3920 windgoto(cursor_row, cursor_col); |
7 | 3921 out_str(T_AL); |
3922 } | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3923 else // type == USE_T_SR |
7 | 3924 out_str(T_SR); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3925 screen_start(); // don't know where cursor is now |
7 | 3926 } |
3927 } | |
3928 | |
3929 /* | |
3930 * With scroll-reverse and 'da' flag set we need to clear the lines that | |
3931 * have been scrolled down into the region. | |
3932 */ | |
3933 if (type == USE_T_SR && *T_DA) | |
3934 { | |
3935 for (i = 0; i < line_count; ++i) | |
3936 { | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3937 windgoto(off + i, cursor_col); |
7 | 3938 out_str(T_CE); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3939 screen_start(); // don't know where cursor is now |
7 | 3940 } |
3941 } | |
3942 | |
3943 #ifdef FEAT_GUI | |
3944 gui_can_update_cursor(); | |
3945 if (gui.in_use) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3946 out_flush(); // always flush after a scroll |
7 | 3947 #endif |
3948 return OK; | |
3949 } | |
3950 | |
3951 /* | |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
3952 * Delete lines on the screen and update ScreenLines[]. |
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
3953 * "end" is the line after the scrolled part. Normally it is Rows. |
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
3954 * When scrolling region used "off" is the offset from the top for the region. |
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
3955 * "row" and "end" are relative to the start of the region. |
7 | 3956 * |
3957 * Return OK for success, FAIL if the lines are not deleted. | |
3958 */ | |
3959 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3960 screen_del_lines( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3961 int off, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3962 int row, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3963 int line_count, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3964 int end, |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3965 int force, // even when line_count > p_ttyscroll |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3966 int clear_attr, // used for clearing lines |
28295
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
3967 win_T *wp) // NULL or window to use width from |
7 | 3968 { |
3969 int j; | |
3970 int i; | |
3971 unsigned temp; | |
3972 int cursor_row; | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
3973 int cursor_col = 0; |
7 | 3974 int cursor_end; |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3975 int result_empty; // result is empty until end of region |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
3976 int can_delete; // deleting line codes can be used |
7 | 3977 int type; |
3978 | |
3979 /* | |
3980 * FAIL if | |
3981 * - there is no valid screen | |
3982 * - the screen has to be redrawn completely | |
3983 * - the line count is less than one | |
3984 * - the line count is more than 'ttyscroll' | |
28275
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3985 * - "end" is more than "Rows" (safety check, should not happen) |
11698
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3986 * - redrawing for a callback and there is a modeless selection |
7 | 3987 */ |
28275
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3988 if (!screen_valid(TRUE) |
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3989 || line_count <= 0 |
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3990 || (!force && line_count > p_ttyscroll) |
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3991 || end > Rows |
11698
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3992 #ifdef FEAT_CLIPBOARD |
28275
f0e46f5bb2e7
patch 8.2.4663: occasional crash when running the GUI tests
Bram Moolenaar <Bram@vim.org>
parents:
27944
diff
changeset
|
3993 || (clip_star.state != SELECT_CLEARED && redrawing_for_callback > 0) |
11698
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3994 #endif |
4f59d2a66bf7
patch 8.0.0732: when updating a buffer modeless selection is lost
Christian Brabandt <cb@256bit.org>
parents:
11672
diff
changeset
|
3995 ) |
7 | 3996 return FAIL; |
3997 | |
3998 /* | |
3999 * Check if the rest of the current region will become empty. | |
4000 */ | |
4001 result_empty = row + line_count >= end; | |
4002 | |
4003 /* | |
4004 * We can delete lines only when 'db' flag not set or when 'ce' option | |
4005 * available. | |
4006 */ | |
4007 can_delete = (*T_DB == NUL || can_clear(T_CE)); | |
4008 | |
4009 /* | |
4010 * There are six ways to delete lines: | |
4011 * 0. When in a vertically split window and t_CV isn't set, redraw the | |
4012 * characters from ScreenLines[]. | |
4013 * 1. Use T_CD if it exists and the result is empty. | |
4014 * 2. Use newlines if row == 0 and count == 1 or T_CDL does not exist. | |
4015 * 3. Use T_CDL (delete multiple lines) if it exists and line_count > 1 or | |
4016 * none of the other ways work. | |
4017 * 4. Use T_CE (erase line) if the result is empty. | |
4018 * 5. Use T_DL (delete line) if it exists. | |
4019 * 6. redraw the characters from ScreenLines[]. | |
4020 */ | |
4021 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL) | |
28295
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4022 { |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4023 // Avoid that lines are first cleared here and then redrawn, which |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4024 // results in many characters updated twice. This happens with CTRL-F |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4025 // in a vertically split window. With line-by-line scrolling |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4026 // USE_REDRAW should be faster. |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4027 if (line_count > 3) |
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4028 return FAIL; |
7 | 4029 type = USE_REDRAW; |
28295
8f92524d4556
patch 8.2.4673: redrawing a split window is slow when using CTRL-F and CTRL-B
Bram Moolenaar <Bram@vim.org>
parents:
28275
diff
changeset
|
4030 } |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
4031 else if (can_clear(T_CD) && result_empty) |
7 | 4032 type = USE_T_CD; |
4033 else if (row == 0 && ( | |
4034 #ifndef AMIGA | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4035 // On the Amiga, somehow '\n' on the last line doesn't always scroll |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4036 // up, so use delete-line command |
7 | 4037 line_count == 1 || |
4038 #endif | |
4039 *T_CDL == NUL)) | |
4040 type = USE_NL; | |
4041 else if (*T_CDL != NUL && line_count > 1 && can_delete) | |
4042 type = USE_T_CDL; | |
4043 else if (can_clear(T_CE) && result_empty | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
4044 && (wp == NULL || wp->w_width == Columns)) |
7 | 4045 type = USE_T_CE; |
4046 else if (*T_DL != NUL && can_delete) | |
4047 type = USE_T_DL; | |
4048 else if (*T_CDL != NUL && can_delete) | |
4049 type = USE_T_CDL; | |
4050 else | |
4051 return FAIL; | |
4052 | |
4053 #ifdef FEAT_CLIPBOARD | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4054 // Remove a modeless selection when deleting lines halfway the screen or |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4055 // not the full width of the screen. |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
4056 if (off + row > 0 || (wp != NULL && wp->w_width != Columns)) |
3674 | 4057 clip_clear_selection(&clip_star); |
7 | 4058 else |
4059 clip_scroll_selection(line_count); | |
4060 #endif | |
4061 | |
20154
5dc9b96e3c5a
patch 8.2.0632: crash when using Haiku
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
4062 #ifdef FEAT_GUI_HAIKU |
5dc9b96e3c5a
patch 8.2.0632: crash when using Haiku
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
4063 vim_lock_screen(); |
5dc9b96e3c5a
patch 8.2.0632: crash when using Haiku
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
4064 #endif |
5dc9b96e3c5a
patch 8.2.0632: crash when using Haiku
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
4065 |
7 | 4066 #ifdef FEAT_GUI |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4067 // Don't update the GUI cursor here, ScreenLines[] is invalid until the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4068 // scrolling is actually carried out. |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
4069 gui_dont_update_cursor(gui.cursor_row >= row + off |
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
4070 && gui.cursor_row < end + off); |
7 | 4071 #endif |
4072 | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4073 if (wp != NULL && wp->w_wincol != 0 && *T_CSV != NUL && *T_CCS == NUL) |
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4074 cursor_col = wp->w_wincol; |
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4075 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4076 if (*T_CCS != NUL) // cursor relative to region |
7 | 4077 { |
4078 cursor_row = row; | |
4079 cursor_end = end; | |
4080 } | |
4081 else | |
4082 { | |
4083 cursor_row = row + off; | |
4084 cursor_end = end + off; | |
4085 } | |
4086 | |
4087 /* | |
4088 * Now shift LineOffset[] line_count up to reflect the deleted lines. | |
4089 * Clear the inserted lines in ScreenLines[]. | |
4090 */ | |
4091 row += off; | |
4092 end += off; | |
4093 for (i = 0; i < line_count; ++i) | |
4094 { | |
4095 if (wp != NULL && wp->w_width != Columns) | |
4096 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4097 // need to copy part of a line |
7 | 4098 j = row + i; |
4099 while ((j += line_count) <= end - 1) | |
4100 linecopy(j - line_count, j, wp); | |
4101 j -= line_count; | |
4102 if (can_clear((char_u *)" ")) | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
4103 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width, |
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
4104 clear_attr); |
7 | 4105 else |
4106 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width); | |
4107 LineWraps[j] = FALSE; | |
4108 } | |
4109 else | |
4110 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4111 // whole width, moving the line pointers is faster |
7 | 4112 j = row + i; |
4113 temp = LineOffset[j]; | |
4114 while ((j += line_count) <= end - 1) | |
4115 { | |
4116 LineOffset[j - line_count] = LineOffset[j]; | |
4117 LineWraps[j - line_count] = LineWraps[j]; | |
4118 } | |
4119 LineOffset[j - line_count] = temp; | |
4120 LineWraps[j - line_count] = FALSE; | |
4121 if (can_clear((char_u *)" ")) | |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
4122 lineclear(temp, (int)Columns, clear_attr); |
7 | 4123 else |
4124 lineinvalid(temp, (int)Columns); | |
4125 } | |
4126 } | |
4127 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
4128 #ifdef FEAT_GUI_HAIKU |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
4129 vim_unlock_screen(); |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
4130 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18812
diff
changeset
|
4131 |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
4132 if (screen_attr != clear_attr) |
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
4133 screen_stop_highlight(); |
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
4134 if (clear_attr != 0) |
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12122
diff
changeset
|
4135 screen_start_highlight(clear_attr); |
7 | 4136 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4137 // redraw the characters |
7 | 4138 if (type == USE_REDRAW) |
4139 redraw_block(row, end, wp); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4140 else if (type == USE_T_CD) // delete the lines |
7 | 4141 { |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4142 windgoto(cursor_row, cursor_col); |
7 | 4143 out_str(T_CD); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4144 screen_start(); // don't know where cursor is now |
7 | 4145 } |
4146 else if (type == USE_T_CDL) | |
4147 { | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4148 windgoto(cursor_row, cursor_col); |
7 | 4149 term_delete_lines(line_count); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4150 screen_start(); // don't know where cursor is now |
7 | 4151 } |
4152 /* | |
4153 * Deleting lines at top of the screen or scroll region: Just scroll | |
4154 * the whole screen (scroll region) up by outputting newlines on the | |
4155 * last line. | |
4156 */ | |
4157 else if (type == USE_NL) | |
4158 { | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4159 windgoto(cursor_end - 1, cursor_col); |
7 | 4160 for (i = line_count; --i >= 0; ) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4161 out_char('\n'); // cursor will remain on same line |
7 | 4162 } |
4163 else | |
4164 { | |
4165 for (i = line_count; --i >= 0; ) | |
4166 { | |
4167 if (type == USE_T_DL) | |
4168 { | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4169 windgoto(cursor_row, cursor_col); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4170 out_str(T_DL); // delete a line |
7 | 4171 } |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4172 else // type == USE_T_CE |
7 | 4173 { |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4174 windgoto(cursor_row + i, cursor_col); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4175 out_str(T_CE); // erase a line |
7 | 4176 } |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4177 screen_start(); // don't know where cursor is now |
7 | 4178 } |
4179 } | |
4180 | |
4181 /* | |
4182 * If the 'db' flag is set, we need to clear the lines that have been | |
4183 * scrolled up at the bottom of the region. | |
4184 */ | |
4185 if (*T_DB && (type == USE_T_DL || type == USE_T_CDL)) | |
4186 { | |
4187 for (i = line_count; i > 0; --i) | |
4188 { | |
14081
45c595c0ddaf
patch 8.1.0058: display problem with margins and scrolling
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
4189 windgoto(cursor_end - i, cursor_col); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4190 out_str(T_CE); // erase a line |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4191 screen_start(); // don't know where cursor is now |
7 | 4192 } |
4193 } | |
4194 | |
4195 #ifdef FEAT_GUI | |
4196 gui_can_update_cursor(); | |
4197 if (gui.in_use) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4198 out_flush(); // always flush after a scroll |
7 | 4199 #endif |
4200 | |
4201 return OK; | |
4202 } | |
4203 | |
4204 /* | |
15629
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4205 * Return TRUE when postponing displaying the mode message: when not redrawing |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4206 * or inside a mapping. |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4207 */ |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4208 int |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4209 skip_showmode() |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4210 { |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4211 // Call char_avail() only when we are going to show something, because it |
29308
b1304512c036
patch 8.2.5170: tiny issues
Bram Moolenaar <Bram@vim.org>
parents:
29251
diff
changeset
|
4212 // takes a bit of time. redrawing() may also call char_avail(). |
15629
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4213 if (global_busy |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4214 || msg_silent != 0 |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4215 || !redrawing() |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4216 || (char_avail() && !KeyTyped)) |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4217 { |
16374
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4218 redraw_mode = TRUE; // show mode later |
15629
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4219 return TRUE; |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4220 } |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4221 return FALSE; |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4222 } |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4223 |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4224 /* |
13308
ae312df8d0ab
patch 8.0.1528: dead code found
Christian Brabandt <cb@256bit.org>
parents:
13292
diff
changeset
|
4225 * Show the current mode and ruler. |
7 | 4226 * |
4227 * If clear_cmdline is TRUE, clear the rest of the cmdline. | |
4228 * If clear_cmdline is FALSE there may be a message there that needs to be | |
4229 * cleared only if a mode is shown. | |
16374
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4230 * If redraw_mode is TRUE show or clear the mode. |
7 | 4231 * Return the length of the message (0 if no message). |
4232 */ | |
4233 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4234 showmode(void) |
7 | 4235 { |
4236 int need_clear; | |
4237 int length = 0; | |
4238 int do_mode; | |
4239 int attr; | |
4240 int nwr_save; | |
4241 int sub_attr; | |
4242 | |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29958
diff
changeset
|
4243 do_mode = p_smd && msg_silent == 0 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
4244 && ((State & MODE_INSERT) |
14093
a9d94f10ecef
patch 8.1.0064: typing CTRL-W in a prompt buffer shows mode "-- --"
Christian Brabandt <cb@256bit.org>
parents:
14089
diff
changeset
|
4245 || restart_edit != NUL |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29881
diff
changeset
|
4246 || VIsual_active); |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13968
diff
changeset
|
4247 if (do_mode || reg_recording != 0) |
7 | 4248 { |
15629
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4249 if (skip_showmode()) |
dd2e0b83a660
patch 8.1.0822: peeking and flushing output slows down execution
Bram Moolenaar <Bram@vim.org>
parents:
15609
diff
changeset
|
4250 return 0; // show mode later |
7 | 4251 |
4252 nwr_save = need_wait_return; | |
4253 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4254 // wait a bit before overwriting an important message |
7 | 4255 check_for_delay(FALSE); |
4256 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4257 // if the cmdline is more than one line high, erase top lines |
7 | 4258 need_clear = clear_cmdline; |
4259 if (clear_cmdline && cmdline_row < Rows - 1) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4260 msg_clr_cmdline(); // will reset clear_cmdline |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4261 |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4262 // Position on the last line in the window, column 0 |
7 | 4263 msg_pos_mode(); |
4264 cursor_off(); | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4265 attr = HL_ATTR(HLF_CM); // Highlight mode |
7 | 4266 if (do_mode) |
4267 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4268 msg_puts_attr("--", attr); |
7 | 4269 #if defined(FEAT_XIM) |
2520 | 4270 if ( |
4271 # ifdef FEAT_GUI_GTK | |
4272 preedit_get_status() | |
1668 | 4273 # else |
4274 im_get_status() | |
2520 | 4275 # endif |
1668 | 4276 ) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4277 # ifdef FEAT_GUI_GTK // most of the time, it's not XIM being used |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4278 msg_puts_attr(" IM", attr); |
7 | 4279 # else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4280 msg_puts_attr(" XIM", attr); |
7 | 4281 # endif |
4282 #endif | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4283 // CTRL-X in Insert mode |
5946 | 4284 if (edit_submode != NULL && !shortmess(SHM_COMPLETIONMENU)) |
7 | 4285 { |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4286 // These messages can get long, avoid a wrap in a narrow |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4287 // window. Prefer showing edit_submode_extra. |
7 | 4288 length = (Rows - msg_row) * Columns - 3; |
4289 if (edit_submode_extra != NULL) | |
4290 length -= vim_strsize(edit_submode_extra); | |
4291 if (length > 0) | |
4292 { | |
4293 if (edit_submode_pre != NULL) | |
4294 length -= vim_strsize(edit_submode_pre); | |
4295 if (length - vim_strsize(edit_submode) > 0) | |
4296 { | |
4297 if (edit_submode_pre != NULL) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4298 msg_puts_attr((char *)edit_submode_pre, attr); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4299 msg_puts_attr((char *)edit_submode, attr); |
7 | 4300 } |
4301 if (edit_submode_extra != NULL) | |
4302 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4303 msg_puts_attr(" ", attr); // add a space in between |
7 | 4304 if ((int)edit_submode_highl < (int)HLF_COUNT) |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4305 sub_attr = HL_ATTR(edit_submode_highl); |
7 | 4306 else |
4307 sub_attr = attr; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4308 msg_puts_attr((char *)edit_submode_extra, sub_attr); |
7 | 4309 } |
4310 } | |
4311 } | |
4312 else | |
4313 { | |
4314 if (State & VREPLACE_FLAG) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4315 msg_puts_attr(_(" VREPLACE"), attr); |
14424
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14218
diff
changeset
|
4316 else if (State & REPLACE_FLAG) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4317 msg_puts_attr(_(" REPLACE"), attr); |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
4318 else if (State & MODE_INSERT) |
7 | 4319 { |
4320 #ifdef FEAT_RIGHTLEFT | |
4321 if (p_ri) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4322 msg_puts_attr(_(" REVERSE"), attr); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4323 #endif |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4324 msg_puts_attr(_(" INSERT"), attr); |
7 | 4325 } |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22832
diff
changeset
|
4326 else if (restart_edit == 'I' || restart_edit == 'i' || |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22832
diff
changeset
|
4327 restart_edit == 'a' || restart_edit == 'A') |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4328 msg_puts_attr(_(" (insert)"), attr); |
7 | 4329 else if (restart_edit == 'R') |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4330 msg_puts_attr(_(" (replace)"), attr); |
7 | 4331 else if (restart_edit == 'V') |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4332 msg_puts_attr(_(" (vreplace)"), attr); |
7 | 4333 #ifdef FEAT_RIGHTLEFT |
4334 if (p_hkmap) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4335 msg_puts_attr(_(" Hebrew"), attr); |
7 | 4336 #endif |
4337 #ifdef FEAT_KEYMAP | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
4338 if (State & MODE_LANGMAP) |
7 | 4339 { |
4340 # ifdef FEAT_ARABIC | |
4341 if (curwin->w_p_arab) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4342 msg_puts_attr(_(" Arabic"), attr); |
7 | 4343 else |
4344 # endif | |
9645
123d3c102035
commit https://github.com/vim/vim/commit/73ac0c4281a3606651604a3cbcc334bfb3859a87
Christian Brabandt <cb@256bit.org>
parents:
9489
diff
changeset
|
4345 if (get_keymap_str(curwin, (char_u *)" (%s)", |
123d3c102035
commit https://github.com/vim/vim/commit/73ac0c4281a3606651604a3cbcc334bfb3859a87
Christian Brabandt <cb@256bit.org>
parents:
9489
diff
changeset
|
4346 NameBuff, MAXPATHL)) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4347 msg_puts_attr((char *)NameBuff, attr); |
7 | 4348 } |
4349 #endif | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28386
diff
changeset
|
4350 if ((State & MODE_INSERT) && p_paste) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4351 msg_puts_attr(_(" (paste)"), attr); |
7 | 4352 |
4353 if (VIsual_active) | |
4354 { | |
4355 char *p; | |
4356 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4357 // Don't concatenate separate words to avoid translation |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4358 // problems. |
7 | 4359 switch ((VIsual_select ? 4 : 0) |
4360 + (VIsual_mode == Ctrl_V) * 2 | |
4361 + (VIsual_mode == 'V')) | |
4362 { | |
4363 case 0: p = N_(" VISUAL"); break; | |
4364 case 1: p = N_(" VISUAL LINE"); break; | |
4365 case 2: p = N_(" VISUAL BLOCK"); break; | |
4366 case 4: p = N_(" SELECT"); break; | |
4367 case 5: p = N_(" SELECT LINE"); break; | |
4368 default: p = N_(" SELECT BLOCK"); break; | |
4369 } | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4370 msg_puts_attr(_(p), attr); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4371 } |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4372 msg_puts_attr(" --", attr); |
7 | 4373 } |
644 | 4374 |
7 | 4375 need_clear = TRUE; |
4376 } | |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13968
diff
changeset
|
4377 if (reg_recording != 0 |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17771
diff
changeset
|
4378 && edit_submode == NULL) // otherwise it gets too long |
7 | 4379 { |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4380 recording_mode(attr); |
7 | 4381 need_clear = TRUE; |
4382 } | |
644 | 4383 |
4384 mode_displayed = TRUE; | |
16374
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4385 if (need_clear || clear_cmdline || redraw_mode) |
7 | 4386 msg_clr_eos(); |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4387 msg_didout = FALSE; // overwrite this message |
7 | 4388 length = msg_col; |
4389 msg_col = 0; | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4390 need_wait_return = nwr_save; // never ask for hit-return for this |
7 | 4391 } |
4392 else if (clear_cmdline && msg_silent == 0) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4393 // Clear the whole command line. Will reset "clear_cmdline". |
7 | 4394 msg_clr_cmdline(); |
16374
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4395 else if (redraw_mode) |
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4396 { |
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4397 msg_pos_mode(); |
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4398 msg_clr_eos(); |
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4399 } |
7 | 4400 |
4401 #ifdef FEAT_CMDL_INFO | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4402 // In Visual mode the size of the selected area must be redrawn. |
7 | 4403 if (VIsual_active) |
4404 clear_showcmd(); | |
4405 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4406 // If the last window has no status line, the ruler is after the mode |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4407 // message and must be redrawn |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
4408 if (redrawing() && lastwin->w_status_height == 0) |
14089
ae53a9274f50
patch 8.1.0062: popup menu broken if a callback changes the window layout
Christian Brabandt <cb@256bit.org>
parents:
14081
diff
changeset
|
4409 win_redr_ruler(lastwin, TRUE, FALSE); |
7 | 4410 #endif |
4411 redraw_cmdline = FALSE; | |
16374
57c37c17ff9d
patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Esc
Bram Moolenaar <Bram@vim.org>
parents:
16320
diff
changeset
|
4412 redraw_mode = FALSE; |
7 | 4413 clear_cmdline = FALSE; |
4414 | |
4415 return length; | |
4416 } | |
4417 | |
4418 /* | |
4419 * Position for a mode message. | |
4420 */ | |
4421 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4422 msg_pos_mode(void) |
7 | 4423 { |
4424 msg_col = 0; | |
4425 msg_row = Rows - 1; | |
4426 } | |
4427 | |
4428 /* | |
4429 * Delete mode message. Used when ESC is typed which is expected to end | |
4430 * Insert mode (but Insert mode didn't end yet!). | |
644 | 4431 * Caller should check "mode_displayed". |
7 | 4432 */ |
4433 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4434 unshowmode(int force) |
7 | 4435 { |
4436 /* | |
2055
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2008
diff
changeset
|
4437 * Don't delete it right now, when not redrawing or inside a mapping. |
7 | 4438 */ |
4439 if (!redrawing() || (!force && char_avail() && !KeyTyped)) | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4440 redraw_cmdline = TRUE; // delete mode later |
7 | 4441 else |
8817
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4442 clearmode(); |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4443 } |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4444 |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4445 /* |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4446 * Clear the mode message. |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4447 */ |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4448 void |
9282
9f97a6290c63
commit https://github.com/vim/vim/commit/cf089463492fab53b2a5d81517829d22f882f82e
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
4449 clearmode(void) |
8817
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4450 { |
13968
d111462e0173
patch 8.1.0002: :stopinsert changes the message position
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
4451 int save_msg_row = msg_row; |
d111462e0173
patch 8.1.0002: :stopinsert changes the message position
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
4452 int save_msg_col = msg_col; |
d111462e0173
patch 8.1.0002: :stopinsert changes the message position
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
4453 |
8817
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4454 msg_pos_mode(); |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13968
diff
changeset
|
4455 if (reg_recording != 0) |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4456 recording_mode(HL_ATTR(HLF_CM)); |
8817
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4457 msg_clr_eos(); |
13968
d111462e0173
patch 8.1.0002: :stopinsert changes the message position
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
4458 |
d111462e0173
patch 8.1.0002: :stopinsert changes the message position
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
4459 msg_col = save_msg_col; |
d111462e0173
patch 8.1.0002: :stopinsert changes the message position
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
4460 msg_row = save_msg_row; |
7 | 4461 } |
4462 | |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4463 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4464 recording_mode(int attr) |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4465 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4466 msg_puts_attr(_("recording"), attr); |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4467 if (!shortmess(SHM_RECORDING)) |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4468 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4469 char s[4]; |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4470 |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4471 sprintf(s, " @%c", reg_recording); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
4472 msg_puts_attr(s, attr); |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4473 } |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4474 } |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
4475 |
667 | 4476 /* |
4477 * Draw the tab pages line at the top of the Vim window. | |
4478 */ | |
15396
325e4a8ba1b6
patch 8.1.0706: tabline is not always redrawn
Bram Moolenaar <Bram@vim.org>
parents:
15384
diff
changeset
|
4479 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4480 draw_tabline(void) |
667 | 4481 { |
4482 int tabcount = 0; | |
4483 tabpage_T *tp; | |
4484 int tabwidth; | |
4485 int col = 0; | |
673 | 4486 int scol = 0; |
667 | 4487 int attr; |
4488 win_T *wp; | |
671 | 4489 win_T *cwp; |
4490 int wincount; | |
4491 int modified; | |
667 | 4492 int c; |
4493 int len; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4494 int attr_sel = HL_ATTR(HLF_TPS); |
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4495 int attr_nosel = HL_ATTR(HLF_TP); |
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4496 int attr_fill = HL_ATTR(HLF_TPF); |
673 | 4497 char_u *p; |
677 | 4498 int room; |
4499 int use_sep_chars = (t_colors < 8 | |
4500 #ifdef FEAT_GUI | |
4501 && !gui.in_use | |
4502 #endif | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
4503 #ifdef FEAT_TERMGUICOLORS |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
4504 && !p_tgc |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
4505 #endif |
677 | 4506 ); |
673 | 4507 |
10538
c7f671dfd735
patch 8.0.0159: crash on startup when updating tabline
Christian Brabandt <cb@256bit.org>
parents:
10466
diff
changeset
|
4508 if (ScreenLines == NULL) |
c7f671dfd735
patch 8.0.0159: crash on startup when updating tabline
Christian Brabandt <cb@256bit.org>
parents:
10466
diff
changeset
|
4509 return; |
673 | 4510 redraw_tabline = FALSE; |
667 | 4511 |
685 | 4512 #ifdef FEAT_GUI_TABLINE |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4513 // Take care of a GUI tabline. |
685 | 4514 if (gui_use_tabline()) |
4515 { | |
4516 gui_update_tabline(); | |
4517 return; | |
4518 } | |
4519 #endif | |
4520 | |
4521 if (tabline_height() < 1) | |
667 | 4522 return; |
4523 | |
677 | 4524 #if defined(FEAT_STL_OPT) |
16320
57e0f6b4a87d
patch 8.1.1165: no test for mouse clicks in the terminal tabpage line
Bram Moolenaar <Bram@vim.org>
parents:
16211
diff
changeset
|
4525 clear_TabPageIdxs(); |
681 | 4526 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4527 // Use the 'tabline' option if it's set. |
677 | 4528 if (*p_tal != NUL) |
4529 { | |
8872
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
4530 int saved_did_emsg = did_emsg; |
680 | 4531 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4532 // Check for an error. If there is one we would loop in redrawing the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4533 // screen. Avoid that by making 'tabline' empty. |
8872
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
4534 did_emsg = FALSE; |
677 | 4535 win_redr_custom(NULL, FALSE); |
8872
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
4536 if (did_emsg) |
680 | 4537 set_string_option_direct((char_u *)"tabline", -1, |
694 | 4538 (char_u *)"", OPT_FREE, SID_ERROR); |
8872
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
4539 did_emsg |= saved_did_emsg; |
680 | 4540 } |
4541 else | |
4542 #endif | |
4543 { | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9645
diff
changeset
|
4544 FOR_ALL_TABPAGES(tp) |
680 | 4545 ++tabcount; |
4546 | |
4547 tabwidth = (Columns - 1 + tabcount / 2) / tabcount; | |
4548 if (tabwidth < 6) | |
4549 tabwidth = 6; | |
4550 | |
4551 attr = attr_nosel; | |
4552 tabcount = 0; | |
699 | 4553 for (tp = first_tabpage; tp != NULL && col < Columns - 4; |
4554 tp = tp->tp_next) | |
680 | 4555 { |
4556 scol = col; | |
4557 | |
4558 if (tp->tp_topframe == topframe) | |
4559 attr = attr_sel; | |
4560 if (use_sep_chars && col > 0) | |
4561 screen_putchar('|', 0, col++, attr); | |
4562 | |
4563 if (tp->tp_topframe != topframe) | |
4564 attr = attr_nosel; | |
4565 | |
4566 screen_putchar(' ', 0, col++, attr); | |
4567 | |
4568 if (tp == curtab) | |
4569 { | |
4570 cwp = curwin; | |
4571 wp = firstwin; | |
4572 } | |
4573 else | |
4574 { | |
4575 cwp = tp->tp_curwin; | |
4576 wp = tp->tp_firstwin; | |
4577 } | |
4578 | |
4579 modified = FALSE; | |
4580 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount) | |
4581 if (bufIsChanged(wp->w_buffer)) | |
4582 modified = TRUE; | |
4583 if (modified || wincount > 1) | |
4584 { | |
4585 if (wincount > 1) | |
4586 { | |
4587 vim_snprintf((char *)NameBuff, MAXPATHL, "%d", wincount); | |
835 | 4588 len = (int)STRLEN(NameBuff); |
699 | 4589 if (col + len >= Columns - 3) |
4590 break; | |
680 | 4591 screen_puts_len(NameBuff, len, 0, col, |
677 | 4592 #if defined(FEAT_SYN_HL) |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4593 hl_combine_attr(attr, HL_ATTR(HLF_T)) |
677 | 4594 #else |
6106 | 4595 attr |
680 | 4596 #endif |
4597 ); | |
4598 col += len; | |
4599 } | |
4600 if (modified) | |
4601 screen_puts_len((char_u *)"+", 1, 0, col++, attr); | |
4602 screen_putchar(' ', 0, col++, attr); | |
4603 } | |
4604 | |
4605 room = scol - col + tabwidth - 1; | |
4606 if (room > 0) | |
4607 { | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4608 // Get buffer name in NameBuff[] |
685 | 4609 get_trans_bufname(cwp->w_buffer); |
819 | 4610 shorten_dir(NameBuff); |
680 | 4611 len = vim_strsize(NameBuff); |
4612 p = NameBuff; | |
4613 if (has_mbyte) | |
4614 while (len > room) | |
4615 { | |
4616 len -= ptr2cells(p); | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4617 MB_PTR_ADV(p); |
680 | 4618 } |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4619 else if (len > room) |
677 | 4620 { |
680 | 4621 p += len - room; |
4622 len = room; | |
677 | 4623 } |
699 | 4624 if (len > Columns - col - 1) |
4625 len = Columns - col - 1; | |
680 | 4626 |
835 | 4627 screen_puts_len(p, (int)STRLEN(p), 0, col, attr); |
680 | 4628 col += len; |
4629 } | |
4630 screen_putchar(' ', 0, col++, attr); | |
4631 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4632 // Store the tab page number in TabPageIdxs[], so that |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4633 // jump_to_mouse() knows where each one is. |
680 | 4634 ++tabcount; |
4635 while (scol < col) | |
4636 TabPageIdxs[scol++] = tabcount; | |
4637 } | |
4638 | |
4639 if (use_sep_chars) | |
4640 c = '_'; | |
4641 else | |
4642 c = ' '; | |
4643 screen_fill(0, 1, col, (int)Columns, c, c, attr_fill); | |
681 | 4644 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4645 // Put an "X" for closing the current tab if there are several. |
681 | 4646 if (first_tabpage->tp_next != NULL) |
4647 { | |
4648 screen_putchar('X', 0, (int)Columns - 1, attr_nosel); | |
4649 TabPageIdxs[Columns - 1] = -999; | |
4650 } | |
4651 } | |
834 | 4652 |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4653 // Reset the flag here again, in case evaluating 'tabline' causes it to be |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4654 // set. |
834 | 4655 redraw_tabline = FALSE; |
667 | 4656 } |
685 | 4657 |
4658 /* | |
4659 * Get buffer name for "buf" into NameBuff[]. | |
4660 * Takes care of special buffer names and translates special characters. | |
4661 */ | |
4662 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4663 get_trans_bufname(buf_T *buf) |
685 | 4664 { |
4665 if (buf_spname(buf) != NULL) | |
3839 | 4666 vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1); |
685 | 4667 else |
4668 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE); | |
4669 trans_characters(NameBuff, MAXPATHL); | |
4670 } | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
4671 |
7 | 4672 /* |
4673 * Get the character to use in a status line. Get its attributes in "*attr". | |
4674 */ | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
4675 int |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4676 fillchar_status(int *attr, win_T *wp) |
7 | 4677 { |
4678 int fill; | |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4679 |
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4680 #ifdef FEAT_TERMINAL |
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4681 if (bt_terminal(wp->w_buffer)) |
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4682 { |
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4683 if (wp == curwin) |
12122
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
4684 { |
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
4685 *attr = HL_ATTR(HLF_ST); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4686 fill = wp->w_fill_chars.stl; |
12122
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
4687 } |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4688 else |
12122
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
4689 { |
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
4690 *attr = HL_ATTR(HLF_STNC); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4691 fill = wp->w_fill_chars.stlnc; |
12122
68c593f649d1
patch 8.0.0941: existing color schemes don't like StatusLineTerm
Christian Brabandt <cb@256bit.org>
parents:
12114
diff
changeset
|
4692 } |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4693 } |
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4694 else |
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4695 #endif |
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4696 if (wp == curwin) |
7 | 4697 { |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4698 *attr = HL_ATTR(HLF_S); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4699 fill = wp->w_fill_chars.stl; |
7 | 4700 } |
4701 else | |
4702 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4703 *attr = HL_ATTR(HLF_SNC); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4704 fill = wp->w_fill_chars.stlnc; |
7 | 4705 } |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4706 // Use fill when there is highlighting, and highlighting of current |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4707 // window differs, or the fillchars differ, or this is not the |
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4708 // current window |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4709 if (*attr != 0 && ((HL_ATTR(HLF_S) != HL_ATTR(HLF_SNC) |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4710 || wp != curwin || ONE_WINDOW) |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4711 || (wp->w_fill_chars.stl != wp->w_fill_chars.stlnc))) |
7 | 4712 return fill; |
11890
318ae82d8ba4
patch 8.0.0825: not easy to see that a window is a terminal window
Christian Brabandt <cb@256bit.org>
parents:
11866
diff
changeset
|
4713 if (wp == curwin) |
7 | 4714 return '^'; |
4715 return '='; | |
4716 } | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12441
diff
changeset
|
4717 |
7 | 4718 /* |
4719 * Get the character to use in a separator between vertically split windows. | |
4720 * Get its attributes in "*attr". | |
4721 */ | |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
4722 int |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4723 fillchar_vsep(int *attr, win_T *wp) |
7 | 4724 { |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
4725 *attr = HL_ATTR(HLF_C); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4726 if (*attr == 0 && wp->w_fill_chars.vert == ' ') |
7 | 4727 return '|'; |
4728 else | |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4729 return wp->w_fill_chars.vert; |
7 | 4730 } |
4731 | |
4732 /* | |
4733 * Return TRUE if redrawing should currently be done. | |
4734 */ | |
4735 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4736 redrawing(void) |
7 | 4737 { |
11105
7c7e496e625d
patch 8.0.0440: not enough test coverage in Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11010
diff
changeset
|
4738 #ifdef FEAT_EVAL |
7c7e496e625d
patch 8.0.0440: not enough test coverage in Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11010
diff
changeset
|
4739 if (disable_redraw_for_testing) |
7c7e496e625d
patch 8.0.0440: not enough test coverage in Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11010
diff
changeset
|
4740 return 0; |
7c7e496e625d
patch 8.0.0440: not enough test coverage in Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11010
diff
changeset
|
4741 else |
7c7e496e625d
patch 8.0.0440: not enough test coverage in Insert mode
Christian Brabandt <cb@256bit.org>
parents:
11010
diff
changeset
|
4742 #endif |
14673
f1b7d308de2f
patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents:
14662
diff
changeset
|
4743 return ((!RedrawingDisabled |
f1b7d308de2f
patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents:
14662
diff
changeset
|
4744 #ifdef FEAT_EVAL |
f1b7d308de2f
patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents:
14662
diff
changeset
|
4745 || ignore_redraw_flag_for_testing |
f1b7d308de2f
patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents:
14662
diff
changeset
|
4746 #endif |
f1b7d308de2f
patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents:
14662
diff
changeset
|
4747 ) && !(p_lz && char_avail() && !KeyTyped && !do_redraw)); |
7 | 4748 } |
4749 | |
4750 /* | |
4751 * Return TRUE if printing messages should currently be done. | |
4752 */ | |
4753 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4754 messaging(void) |
7 | 4755 { |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29958
diff
changeset
|
4756 return (!(p_lz && char_avail() && !KeyTyped)); |
7 | 4757 } |
4758 | |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4759 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4760 * Compute columns for ruler and shown command. 'sc_col' is also used to |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4761 * decide what the maximum length of a message on the status line can be. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4762 * If there is a status line for the last window, 'sc_col' is independent |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4763 * of 'ru_col'. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4764 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4765 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4766 #define COL_RULER 17 // columns needed by standard ruler |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4767 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4768 void |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4769 comp_col(void) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4770 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4771 #if defined(FEAT_CMDL_INFO) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4772 int last_has_status = (p_ls == 2 || (p_ls == 1 && !ONE_WINDOW)); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4773 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4774 sc_col = 0; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4775 ru_col = 0; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4776 if (p_ru) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4777 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4778 # ifdef FEAT_STL_OPT |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4779 ru_col = (ru_wid ? ru_wid : COL_RULER) + 1; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4780 # else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4781 ru_col = COL_RULER + 1; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4782 # endif |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4783 // no last status line, adjust sc_col |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4784 if (!last_has_status) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4785 sc_col = ru_col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4786 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4787 if (p_sc) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4788 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4789 sc_col += SHOWCMD_COLS; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4790 if (!p_ru || last_has_status) // no need for separating space |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4791 ++sc_col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4792 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4793 sc_col = Columns - sc_col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4794 ru_col = Columns - ru_col; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4795 if (sc_col <= 0) // screen too narrow, will become a mess |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4796 sc_col = 1; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4797 if (ru_col <= 0) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4798 ru_col = 1; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4799 #else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4800 sc_col = Columns; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4801 ru_col = Columns; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4802 #endif |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4803 #ifdef FEAT_EVAL |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4804 set_vim_var_nr(VV_ECHOSPACE, sc_col - 1); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4805 #endif |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4806 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4807 |
13 | 4808 #if defined(FEAT_LINEBREAK) || defined(PROTO) |
4809 /* | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2124
diff
changeset
|
4810 * Return the width of the 'number' and 'relativenumber' column. |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2124
diff
changeset
|
4811 * Caller may need to check if 'number' or 'relativenumber' is set. |
13 | 4812 * Otherwise it depends on 'numberwidth' and the line count. |
4813 */ | |
4814 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4815 number_width(win_T *wp) |
13 | 4816 { |
4817 int n; | |
4818 linenr_T lnum; | |
4819 | |
4736
3f2319a953b3
updated for version 7.3.1115
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
4820 if (wp->w_p_rnu && !wp->w_p_nu) |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4821 // cursor line shows "0" |
4736
3f2319a953b3
updated for version 7.3.1115
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
4822 lnum = wp->w_height; |
3f2319a953b3
updated for version 7.3.1115
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
4823 else |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4824 // cursor line shows absolute line number |
4736
3f2319a953b3
updated for version 7.3.1115
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
4825 lnum = wp->w_buffer->b_ml.ml_line_count; |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
2124
diff
changeset
|
4826 |
6679 | 4827 if (lnum == wp->w_nrwidth_line_count && wp->w_nuw_cached == wp->w_p_nuw) |
13 | 4828 return wp->w_nrwidth_width; |
4829 wp->w_nrwidth_line_count = lnum; | |
4830 | |
4831 n = 0; | |
4832 do | |
4833 { | |
856 | 4834 lnum /= 10; |
4835 ++n; | |
13 | 4836 } while (lnum > 0); |
4837 | |
18812
d34ec6fe207d
patch 8.1.2394: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18786
diff
changeset
|
4838 // 'numberwidth' gives the minimal width plus one |
13 | 4839 if (n < wp->w_p_nuw - 1) |
4840 n = wp->w_p_nuw - 1; | |
4841 | |
17247
cbd0432cf8ff
patch 8.1.1623: display wrong with signs in narrow number column
Bram Moolenaar <Bram@vim.org>
parents:
17229
diff
changeset
|
4842 # ifdef FEAT_SIGNS |
cbd0432cf8ff
patch 8.1.1623: display wrong with signs in narrow number column
Bram Moolenaar <Bram@vim.org>
parents:
17229
diff
changeset
|
4843 // If 'signcolumn' is set to 'number' and there is a sign to display, then |
cbd0432cf8ff
patch 8.1.1623: display wrong with signs in narrow number column
Bram Moolenaar <Bram@vim.org>
parents:
17229
diff
changeset
|
4844 // the minimal width for the number column is 2. |
18603
f249b44039e0
patch 8.1.2295: if buffer of popup is in another window cursorline sign shows
Bram Moolenaar <Bram@vim.org>
parents:
18124
diff
changeset
|
4845 if (n < 2 && get_first_valid_sign(wp) != NULL |
17247
cbd0432cf8ff
patch 8.1.1623: display wrong with signs in narrow number column
Bram Moolenaar <Bram@vim.org>
parents:
17229
diff
changeset
|
4846 && (*wp->w_p_scl == 'n' && *(wp->w_p_scl + 1) == 'u')) |
cbd0432cf8ff
patch 8.1.1623: display wrong with signs in narrow number column
Bram Moolenaar <Bram@vim.org>
parents:
17229
diff
changeset
|
4847 n = 2; |
cbd0432cf8ff
patch 8.1.1623: display wrong with signs in narrow number column
Bram Moolenaar <Bram@vim.org>
parents:
17229
diff
changeset
|
4848 # endif |
cbd0432cf8ff
patch 8.1.1623: display wrong with signs in narrow number column
Bram Moolenaar <Bram@vim.org>
parents:
17229
diff
changeset
|
4849 |
13 | 4850 wp->w_nrwidth_width = n; |
6679 | 4851 wp->w_nuw_cached = wp->w_p_nuw; |
13 | 4852 return n; |
4853 } | |
4854 #endif | |
3986 | 4855 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
4856 #if defined(FEAT_EVAL) || defined(PROTO) |
3986 | 4857 /* |
4858 * Return the current cursor column. This is the actual position on the | |
4859 * screen. First column is 0. | |
4860 */ | |
4861 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4862 screen_screencol(void) |
3986 | 4863 { |
4864 return screen_cur_col; | |
4865 } | |
4866 | |
4867 /* | |
4868 * Return the current cursor row. This is the actual position on the screen. | |
4869 * First row is 0. | |
4870 */ | |
4871 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4872 screen_screenrow(void) |
3986 | 4873 { |
4874 return screen_cur_row; | |
4875 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
4876 #endif |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4877 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4878 /* |
25978
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4879 * Calls mb_ptr2char_adv(p) and returns the character. |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4880 * If "p" starts with "\x", "\u" or "\U" the hex or unicode value is used. |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4881 */ |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4882 static int |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4883 get_encoded_char_adv(char_u **p) |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4884 { |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4885 char_u *s = *p; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4886 |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4887 if (s[0] == '\\' && (s[1] == 'x' || s[1] == 'u' || s[1] == 'U')) |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4888 { |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4889 varnumber_T num = 0; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4890 int bytes; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4891 int n; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4892 |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4893 for (bytes = s[1] == 'x' ? 1 : s[1] == 'u' ? 2 : 4; bytes > 0; --bytes) |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4894 { |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4895 *p += 2; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4896 n = hexhex2nr(*p); |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4897 if (n < 0) |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4898 return 0; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4899 num = num * 256 + n; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4900 } |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4901 *p += 2; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4902 return num; |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4903 } |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4904 return mb_ptr2char_adv(p); |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4905 } |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4906 |
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
4907 /* |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4908 * Handle setting 'listchars' or 'fillchars'. |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4909 * "varp" points to either the global or the window-local value. |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4910 * When "apply" is FALSE do not store the flags, only check for errors. |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23932
diff
changeset
|
4911 * Assume monocell characters. |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4912 * Returns error message, NULL if it's OK. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4913 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4914 char * |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4915 set_chars_option(win_T *wp, char_u **varp, int apply) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4916 { |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4917 int round, i, len, len2, entries; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4918 char_u *p, *s; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4919 int c1 = 0, c2 = 0, c3 = 0; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4920 char_u *last_multispace = NULL; // Last occurrence of "multispace:" |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4921 char_u *last_lmultispace = NULL; // Last occurrence of "leadmultispace:" |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4922 int multispace_len = 0; // Length of lcs-multispace string |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4923 int lead_multispace_len = 0; // Length of lcs-leadmultispace string |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4924 int is_listchars = (varp == &p_lcs || varp == &wp->w_p_lcs); |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4925 char_u *value = *varp; |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4926 |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4927 struct charstab |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4928 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4929 int *cp; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4930 char *name; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4931 }; |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4932 struct charstab *tab; |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4933 |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4934 static fill_chars_T fill_chars; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4935 static struct charstab filltab[] = |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4936 { |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4937 {&fill_chars.stl, "stl"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4938 {&fill_chars.stlnc, "stlnc"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4939 {&fill_chars.vert, "vert"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4940 {&fill_chars.fold, "fold"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4941 {&fill_chars.foldopen, "foldopen"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4942 {&fill_chars.foldclosed, "foldclose"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4943 {&fill_chars.foldsep, "foldsep"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4944 {&fill_chars.diff, "diff"}, |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4945 {&fill_chars.eob, "eob"}, |
30643
dfb02f9dcbe8
patch 9.0.0656: cannot specify another character to use instead of '@'
Bram Moolenaar <Bram@vim.org>
parents:
30608
diff
changeset
|
4946 {&fill_chars.lastline, "lastline"}, |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4947 }; |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4948 |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4949 static lcs_chars_T lcs_chars; |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23932
diff
changeset
|
4950 struct charstab lcstab[] = |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4951 { |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4952 {&lcs_chars.eol, "eol"}, |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4953 {&lcs_chars.ext, "extends"}, |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4954 {&lcs_chars.nbsp, "nbsp"}, |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4955 {&lcs_chars.prec, "precedes"}, |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4956 {&lcs_chars.space, "space"}, |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4957 {&lcs_chars.tab2, "tab"}, |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4958 {&lcs_chars.trail, "trail"}, |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4959 {&lcs_chars.lead, "lead"}, |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4960 #ifdef FEAT_CONCEAL |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4961 {&lcs_chars.conceal, "conceal"}, |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4962 #else |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4963 {NULL, "conceal"}, |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4964 #endif |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4965 }; |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4966 |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4967 if (is_listchars) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4968 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4969 tab = lcstab; |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4970 CLEAR_FIELD(lcs_chars); |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24289
diff
changeset
|
4971 entries = ARRAY_LENGTH(lcstab); |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23932
diff
changeset
|
4972 if (varp == &wp->w_p_lcs && wp->w_p_lcs[0] == NUL) |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4973 value = p_lcs; // local value is empty, us the global value |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4974 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4975 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4976 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4977 tab = filltab; |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24289
diff
changeset
|
4978 entries = ARRAY_LENGTH(filltab); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4979 if (varp == &wp->w_p_fcs && wp->w_p_fcs[0] == NUL) |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4980 value = p_fcs; // local value is empty, us the global value |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4981 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4982 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4983 // first round: check for valid value, second round: assign values |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4984 for (round = 0; round <= 1; ++round) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4985 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4986 if (round > 0) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4987 { |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4988 // After checking that the value is valid: set defaults. |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
4989 if (is_listchars) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
4990 { |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4991 for (i = 0; i < entries; ++i) |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4992 if (tab[i].cp != NULL) |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
4993 *(tab[i].cp) = NUL; |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4994 lcs_chars.tab1 = NUL; |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
4995 lcs_chars.tab3 = NUL; |
29098
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
4996 |
25804
bf09d07f098e
patch 8.2.3437: compiler warnings for 32/64 bit usage
Bram Moolenaar <Bram@vim.org>
parents:
25780
diff
changeset
|
4997 if (multispace_len > 0) |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
4998 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
4999 lcs_chars.multispace = ALLOC_MULT(int, multispace_len + 1); |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5000 if (lcs_chars.multispace != NULL) |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5001 lcs_chars.multispace[multispace_len] = NUL; |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5002 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5003 else |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5004 lcs_chars.multispace = NULL; |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5005 |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5006 if (lead_multispace_len > 0) |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5007 { |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5008 lcs_chars.leadmultispace = |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5009 ALLOC_MULT(int, lead_multispace_len + 1); |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5010 lcs_chars.leadmultispace[lead_multispace_len] = NUL; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5011 } |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5012 else |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5013 lcs_chars.leadmultispace = NULL; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5014 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5015 else |
23932
4549133c1e77
patch 8.2.2508: cannot change the character displayed in non existing lines
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
5016 { |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5017 fill_chars.stl = ' '; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5018 fill_chars.stlnc = ' '; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5019 fill_chars.vert = ' '; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5020 fill_chars.fold = '-'; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5021 fill_chars.foldopen = '-'; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5022 fill_chars.foldclosed = '+'; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5023 fill_chars.foldsep = '|'; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5024 fill_chars.diff = '-'; |
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5025 fill_chars.eob = '~'; |
30643
dfb02f9dcbe8
patch 9.0.0656: cannot specify another character to use instead of '@'
Bram Moolenaar <Bram@vim.org>
parents:
30608
diff
changeset
|
5026 fill_chars.lastline = '@'; |
23932
4549133c1e77
patch 8.2.2508: cannot change the character displayed in non existing lines
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
5027 } |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5028 } |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5029 p = value; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5030 while (*p) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5031 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5032 for (i = 0; i < entries; ++i) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5033 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5034 len = (int)STRLEN(tab[i].name); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5035 if (STRNCMP(p, tab[i].name, len) == 0 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5036 && p[len] == ':' |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5037 && p[len + 1] != NUL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5038 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5039 c2 = c3 = 0; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5040 s = p + len + 1; |
25978
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
5041 c1 = get_encoded_char_adv(&s); |
26634
c75f70257cf5
patch 8.2.3846: no error when using control character for 'lcs' or 'fcs'
Bram Moolenaar <Bram@vim.org>
parents:
26165
diff
changeset
|
5042 if (char2cells(c1) > 1) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5043 return e_invalid_argument; |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5044 if (tab[i].cp == &lcs_chars.tab2) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5045 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5046 if (*s == NUL) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5047 return e_invalid_argument; |
25978
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
5048 c2 = get_encoded_char_adv(&s); |
26634
c75f70257cf5
patch 8.2.3846: no error when using control character for 'lcs' or 'fcs'
Bram Moolenaar <Bram@vim.org>
parents:
26165
diff
changeset
|
5049 if (char2cells(c2) > 1) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5050 return e_invalid_argument; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5051 if (!(*s == ',' || *s == NUL)) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5052 { |
25978
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
5053 c3 = get_encoded_char_adv(&s); |
26634
c75f70257cf5
patch 8.2.3846: no error when using control character for 'lcs' or 'fcs'
Bram Moolenaar <Bram@vim.org>
parents:
26165
diff
changeset
|
5054 if (char2cells(c3) > 1) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5055 return e_invalid_argument; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5056 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5057 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5058 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5059 if (*s == ',' || *s == NUL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5060 { |
25804
bf09d07f098e
patch 8.2.3437: compiler warnings for 32/64 bit usage
Bram Moolenaar <Bram@vim.org>
parents:
25780
diff
changeset
|
5061 if (round > 0) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5062 { |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5063 if (tab[i].cp == &lcs_chars.tab2) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5064 { |
23958
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5065 lcs_chars.tab1 = c1; |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5066 lcs_chars.tab2 = c2; |
41cf615ab57f
patch 8.2.2521: some compilers can't handle pointer initialization
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
5067 lcs_chars.tab3 = c3; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5068 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5069 else if (tab[i].cp != NULL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5070 *(tab[i].cp) = c1; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5071 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5072 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5073 p = s; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5074 break; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5075 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5076 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5077 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5078 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5079 if (i == entries) |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5080 { |
25804
bf09d07f098e
patch 8.2.3437: compiler warnings for 32/64 bit usage
Bram Moolenaar <Bram@vim.org>
parents:
25780
diff
changeset
|
5081 len = (int)STRLEN("multispace"); |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5082 len2 = (int)STRLEN("leadmultispace"); |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5083 if (is_listchars |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5084 && STRNCMP(p, "multispace", len) == 0 |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5085 && p[len] == ':' |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5086 && p[len + 1] != NUL) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5087 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5088 s = p + len + 1; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5089 if (round == 0) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5090 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5091 // Get length of lcs-multispace string in first round |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5092 last_multispace = p; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5093 multispace_len = 0; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5094 while (*s != NUL && *s != ',') |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5095 { |
25978
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
5096 c1 = get_encoded_char_adv(&s); |
26634
c75f70257cf5
patch 8.2.3846: no error when using control character for 'lcs' or 'fcs'
Bram Moolenaar <Bram@vim.org>
parents:
26165
diff
changeset
|
5097 if (char2cells(c1) > 1) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5098 return e_invalid_argument; |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5099 ++multispace_len; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5100 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5101 if (multispace_len == 0) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5102 // lcs-multispace cannot be an empty string |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5103 return e_invalid_argument; |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5104 p = s; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5105 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5106 else |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5107 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5108 int multispace_pos = 0; |
25804
bf09d07f098e
patch 8.2.3437: compiler warnings for 32/64 bit usage
Bram Moolenaar <Bram@vim.org>
parents:
25780
diff
changeset
|
5109 |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5110 while (*s != NUL && *s != ',') |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5111 { |
25978
40b17deb294f
patch 8.2.3522: cannot use x and u when setting 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
25804
diff
changeset
|
5112 c1 = get_encoded_char_adv(&s); |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5113 if (p == last_multispace) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5114 lcs_chars.multispace[multispace_pos++] = c1; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5115 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5116 p = s; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5117 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5118 } |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5119 |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5120 else if (is_listchars |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5121 && STRNCMP(p, "leadmultispace", len2) == 0 |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5122 && p[len2] == ':' |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5123 && p[len2 + 1] != NUL) |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5124 { |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5125 s = p + len2 + 1; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5126 if (round == 0) |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5127 { |
29098
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
5128 // get length of lcs-leadmultispace string in first |
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
5129 // round |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5130 last_lmultispace = p; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5131 lead_multispace_len = 0; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5132 while (*s != NUL && *s != ',') |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5133 { |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5134 c1 = get_encoded_char_adv(&s); |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5135 if (char2cells(c1) > 1) |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5136 return e_invalid_argument; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5137 ++lead_multispace_len; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5138 } |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5139 if (lead_multispace_len == 0) |
29098
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
5140 // lcs-leadmultispace cannot be an empty string |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5141 return e_invalid_argument; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5142 p = s; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5143 } |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5144 else |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5145 { |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5146 int multispace_pos = 0; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5147 |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5148 while (*s != NUL && *s != ',') |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5149 { |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5150 c1 = get_encoded_char_adv(&s); |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5151 if (p == last_lmultispace) |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5152 lcs_chars.leadmultispace[multispace_pos++] = c1; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5153 } |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5154 p = s; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5155 } |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
5156 } |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5157 else |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
5158 return e_invalid_argument; |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5159 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5160 |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5161 if (*p == ',') |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5162 ++p; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5163 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5164 } |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5165 |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5166 if (apply) |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5167 { |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5168 if (is_listchars) |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5169 { |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5170 vim_free(wp->w_lcs_chars.multispace); |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5171 vim_free(wp->w_lcs_chars.leadmultispace); |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5172 wp->w_lcs_chars = lcs_chars; |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5173 } |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5174 else |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5175 { |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5176 wp->w_fill_chars = fill_chars; |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5177 } |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25074
diff
changeset
|
5178 } |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5179 else if (is_listchars) |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5180 { |
29395
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5181 vim_free(lcs_chars.multispace); |
caaf5b270018
patch 9.0.0040: use of set_chars_option() is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
5182 vim_free(lcs_chars.leadmultispace); |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5183 } |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5184 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5185 return NULL; // no error |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17851
diff
changeset
|
5186 } |
29672
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5187 |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5188 /* |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5189 * Check all global and local values of 'listchars' and 'fillchars'. |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5190 * Return an untranslated error messages if any of them is invalid, NULL |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5191 * otherwise. |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5192 */ |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5193 char * |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5194 check_chars_options(void) |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5195 { |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5196 tabpage_T *tp; |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5197 win_T *wp; |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5198 |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5199 if (set_chars_option(curwin, &p_lcs, FALSE) != NULL) |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5200 return e_conflicts_with_value_of_listchars; |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5201 if (set_chars_option(curwin, &p_fcs, FALSE) != NULL) |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5202 return e_conflicts_with_value_of_fillchars; |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5203 FOR_ALL_TAB_WINDOWS(tp, wp) |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5204 { |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5205 if (set_chars_option(wp, &wp->w_p_lcs, FALSE) != NULL) |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5206 return e_conflicts_with_value_of_listchars; |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5207 if (set_chars_option(wp, &wp->w_p_fcs, FALSE) != NULL) |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5208 return e_conflicts_with_value_of_fillchars; |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5209 } |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5210 return NULL; |
6b8aaf16af99
patch 9.0.0176: checking character options is duplicated and incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
5211 } |