blob: b3b98bf65ae00c1abd1437ebb69207d9011a5a31 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
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/*
11 * screen.c: code for displaying on the screen
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.
20 * LineOffset[row] Contains the offset into ScreenLines*[] and ScreenAttrs[]
21 * for each line.
22 * LineWraps[row] Flag for each line whether it wraps to the next line.
23 *
24 * For double-byte characters, two consecutive bytes in ScreenLines[] can form
25 * one character which occupies two display cells.
26 * For UTF-8 a multi-byte character is converted to Unicode and stored in
27 * ScreenLinesUC[]. ScreenLines[] contains the first byte only. For an ASCII
28 * character without composing chars ScreenLinesUC[] will be 0. When the
29 * character occupies two display cells the next byte in ScreenLines[] is 0.
Bram Moolenaar362e1a32006-03-06 23:29:24 +000030 * ScreenLinesC[][] contain up to 'maxcombine' composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +000031 * (drawn on top of the first character). They are 0 when not used.
32 * ScreenLines2[] is only used for euc-jp to store the second byte if the
33 * first byte is 0x8e (single-width character).
34 *
35 * The screen_*() functions write to the screen and handle updating
36 * ScreenLines[].
37 *
38 * update_screen() is the function that updates all windows and status lines.
39 * It is called form the main loop when must_redraw is non-zero. It may be
40 * called from other places when an immediated screen update is needed.
41 *
42 * The part of the buffer that is displayed in a window is set with:
43 * - w_topline (first buffer line in window)
44 * - w_topfill (filler line above the first line)
45 * - w_leftcol (leftmost window cell in window),
46 * - w_skipcol (skipped window cells of first line)
47 *
48 * Commands that only move the cursor around in a window, do not need to take
49 * action to update the display. The main loop will check if w_topline is
50 * valid and update it (scroll the window) when needed.
51 *
52 * Commands that scroll a window change w_topline and must call
53 * check_cursor() to move the cursor into the visible part of the window, and
54 * call redraw_later(VALID) to have the window displayed by update_screen()
55 * later.
56 *
57 * Commands that change text in the buffer must call changed_bytes() or
58 * changed_lines() to mark the area that changed and will require updating
59 * later. The main loop will call update_screen(), which will update each
60 * window that shows the changed buffer. This assumes text above the change
61 * can remain displayed as it is. Text after the change may need updating for
62 * scrolling, folding and syntax highlighting.
63 *
64 * Commands that change how a window is displayed (e.g., setting 'list') or
65 * invalidate the contents of a window in another way (e.g., change fold
66 * settings), must call redraw_later(NOT_VALID) to have the whole window
67 * redisplayed by update_screen() later.
68 *
69 * Commands that change how a buffer is displayed (e.g., setting 'tabstop')
70 * must call redraw_curbuf_later(NOT_VALID) to have all the windows for the
71 * buffer redisplayed by update_screen() later.
72 *
Bram Moolenaar600dddc2006-03-12 22:05:10 +000073 * Commands that change highlighting and possibly cause a scroll too must call
74 * redraw_later(SOME_VALID) to update the whole window but still use scrolling
75 * to avoid redrawing everything. But the length of displayed lines must not
76 * change, use NOT_VALID then.
77 *
Bram Moolenaar071d4272004-06-13 20:20:40 +000078 * Commands that move the window position must call redraw_later(NOT_VALID).
79 * TODO: should minimize redrawing by scrolling when possible.
80 *
81 * Commands that change everything (e.g., resizing the screen) must call
82 * redraw_all_later(NOT_VALID) or redraw_all_later(CLEAR).
83 *
84 * Things that are handled indirectly:
85 * - When messages scroll the screen up, msg_scrolled will be set and
86 * update_screen() called to redraw.
87 */
88
89#include "vim.h"
90
91/*
92 * The attributes that are actually active for writing to the screen.
93 */
94static int screen_attr = 0;
95
96/*
97 * Positioning the cursor is reduced by remembering the last position.
98 * Mostly used by windgoto() and screen_char().
99 */
100static int screen_cur_row, screen_cur_col; /* last known cursor position */
101
102#ifdef FEAT_SEARCH_EXTRA
103/*
104 * Struct used for highlighting 'hlsearch' matches for the last use search
105 * pattern or a ":match" item.
106 * For 'hlsearch' there is one pattern for all windows. For ":match" there is
107 * a different pattern for each window.
108 */
109typedef struct
110{
111 regmmatch_T rm; /* points to the regexp program; contains last found
112 match (may continue in next line) */
113 buf_T *buf; /* the buffer to search for a match */
114 linenr_T lnum; /* the line to search for a match */
115 int attr; /* attributes to be used for a match */
116 int attr_cur; /* attributes currently active in win_line() */
117 linenr_T first_lnum; /* first lnum to search for multi-line pat */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000118 colnr_T startcol; /* in win_line() points to char where HL starts */
119 colnr_T endcol; /* in win_line() points to char where HL ends */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120} match_T;
121
122static match_T search_hl; /* used for 'hlsearch' highlight matching */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000123static match_T match_hl[3]; /* used for ":match" highlight matching */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124#endif
125
126#ifdef FEAT_FOLDING
127static foldinfo_T win_foldinfo; /* info for 'foldcolumn' */
128#endif
129
130/*
131 * Buffer for one screen line (characters and attributes).
132 */
133static schar_T *current_ScreenLine;
134
135static void win_update __ARGS((win_T *wp));
Bram Moolenaar482aaeb2005-09-29 18:26:07 +0000136static void win_draw_end __ARGS((win_T *wp, int c1, int c2, int row, int endrow, hlf_T hl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#ifdef FEAT_FOLDING
138static void fold_line __ARGS((win_T *wp, long fold_count, foldinfo_T *foldinfo, linenr_T lnum, int row));
139static void fill_foldcolumn __ARGS((char_u *p, win_T *wp, int closed, linenr_T lnum));
140static void copy_text_attr __ARGS((int off, char_u *buf, int len, int attr));
141#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000142static int win_line __ARGS((win_T *, linenr_T, int, int, int nochange));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143static int char_needs_redraw __ARGS((int off_from, int off_to, int cols));
144#ifdef FEAT_RIGHTLEFT
145static void screen_line __ARGS((int row, int coloff, int endcol, int clear_width, int rlflag));
146# define SCREEN_LINE(r, o, e, c, rl) screen_line((r), (o), (e), (c), (rl))
147#else
148static void screen_line __ARGS((int row, int coloff, int endcol, int clear_width));
149# define SCREEN_LINE(r, o, e, c, rl) screen_line((r), (o), (e), (c))
150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151#ifdef FEAT_VERTSPLIT
152static void draw_vsep_win __ARGS((win_T *wp, int row));
153#endif
Bram Moolenaar238a5642006-02-21 22:12:05 +0000154#ifdef FEAT_STL_OPT
155static void redraw_custum_statusline __ARGS((win_T *wp));
156#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157#ifdef FEAT_SEARCH_EXTRA
158static void start_search_hl __ARGS((void));
159static void end_search_hl __ARGS((void));
160static void prepare_search_hl __ARGS((win_T *wp, linenr_T lnum));
161static void next_search_hl __ARGS((win_T *win, match_T *shl, linenr_T lnum, colnr_T mincol));
162#endif
163static void screen_start_highlight __ARGS((int attr));
164static void screen_char __ARGS((unsigned off, int row, int col));
165#ifdef FEAT_MBYTE
166static void screen_char_2 __ARGS((unsigned off, int row, int col));
167#endif
168static void screenclear2 __ARGS((void));
169static void lineclear __ARGS((unsigned off, int width));
170static void lineinvalid __ARGS((unsigned off, int width));
171#ifdef FEAT_VERTSPLIT
172static void linecopy __ARGS((int to, int from, win_T *wp));
173static void redraw_block __ARGS((int row, int end, win_T *wp));
174#endif
175static int win_do_lines __ARGS((win_T *wp, int row, int line_count, int mayclear, int del));
176static void win_rest_invalid __ARGS((win_T *wp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177static void msg_pos_mode __ARGS((void));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000178#if defined(FEAT_WINDOWS)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000179static void draw_tabline __ARGS((void));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181#if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT)
182static int fillchar_status __ARGS((int *attr, int is_curwin));
183#endif
184#ifdef FEAT_VERTSPLIT
185static int fillchar_vsep __ARGS((int *attr));
186#endif
187#ifdef FEAT_STL_OPT
Bram Moolenaar9372a112005-12-06 19:59:18 +0000188static void win_redr_custom __ARGS((win_T *wp, int draw_ruler));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189#endif
190#ifdef FEAT_CMDL_INFO
191static void win_redr_ruler __ARGS((win_T *wp, int always));
192#endif
193
194#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT)
195/* Ugly global: overrule attribute used by screen_char() */
196static int screen_char_attr = 0;
197#endif
198
199/*
200 * Redraw the current window later, with update_screen(type).
201 * Set must_redraw only if not already set to a higher value.
202 * e.g. if must_redraw is CLEAR, type NOT_VALID will do nothing.
203 */
204 void
205redraw_later(type)
206 int type;
207{
208 redraw_win_later(curwin, type);
209}
210
211 void
212redraw_win_later(wp, type)
213 win_T *wp;
214 int type;
215{
216 if (wp->w_redr_type < type)
217 {
218 wp->w_redr_type = type;
219 if (type >= NOT_VALID)
220 wp->w_lines_valid = 0;
221 if (must_redraw < type) /* must_redraw is the maximum of all windows */
222 must_redraw = type;
223 }
224}
225
226/*
227 * Force a complete redraw later. Also resets the highlighting. To be used
228 * after executing a shell command that messes up the screen.
229 */
230 void
231redraw_later_clear()
232{
233 redraw_all_later(CLEAR);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000234#ifdef FEAT_GUI
235 if (gui.in_use)
236 /* Use a code that will reset gui.highlight_mask in
237 * gui_stop_highlight(). */
238 screen_attr = HL_ALL + 1;
239 else
240#endif
241 /* Use attributes that is very unlikely to appear in text. */
242 screen_attr = HL_BOLD | HL_UNDERLINE | HL_INVERSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243}
244
245/*
246 * Mark all windows to be redrawn later.
247 */
248 void
249redraw_all_later(type)
250 int type;
251{
252 win_T *wp;
253
254 FOR_ALL_WINDOWS(wp)
255 {
256 redraw_win_later(wp, type);
257 }
258}
259
260/*
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000261 * Mark all windows that are editing the current buffer to be updated later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 */
263 void
264redraw_curbuf_later(type)
265 int type;
266{
267 redraw_buf_later(curbuf, type);
268}
269
270 void
271redraw_buf_later(buf, type)
272 buf_T *buf;
273 int type;
274{
275 win_T *wp;
276
277 FOR_ALL_WINDOWS(wp)
278 {
279 if (wp->w_buffer == buf)
280 redraw_win_later(wp, type);
281 }
282}
283
284/*
285 * Changed something in the current window, at buffer line "lnum", that
286 * requires that line and possibly other lines to be redrawn.
287 * Used when entering/leaving Insert mode with the cursor on a folded line.
288 * Used to remove the "$" from a change command.
289 * Note that when also inserting/deleting lines w_redraw_top and w_redraw_bot
290 * may become invalid and the whole window will have to be redrawn.
291 */
292/*ARGSUSED*/
293 void
294redrawWinline(lnum, invalid)
295 linenr_T lnum;
296 int invalid; /* window line height is invalid now */
297{
298#ifdef FEAT_FOLDING
299 int i;
300#endif
301
302 if (curwin->w_redraw_top == 0 || curwin->w_redraw_top > lnum)
303 curwin->w_redraw_top = lnum;
304 if (curwin->w_redraw_bot == 0 || curwin->w_redraw_bot < lnum)
305 curwin->w_redraw_bot = lnum;
306 redraw_later(VALID);
307
308#ifdef FEAT_FOLDING
309 if (invalid)
310 {
311 /* A w_lines[] entry for this lnum has become invalid. */
312 i = find_wl_entry(curwin, lnum);
313 if (i >= 0)
314 curwin->w_lines[i].wl_valid = FALSE;
315 }
316#endif
317}
318
319/*
320 * update all windows that are editing the current buffer
321 */
322 void
323update_curbuf(type)
324 int type;
325{
326 redraw_curbuf_later(type);
327 update_screen(type);
328}
329
330/*
331 * update_screen()
332 *
333 * Based on the current value of curwin->w_topline, transfer a screenfull
334 * of stuff from Filemem to ScreenLines[], and update curwin->w_botline.
335 */
336 void
337update_screen(type)
338 int type;
339{
340 win_T *wp;
341 static int did_intro = FALSE;
342#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CLIPBOARD)
343 int did_one;
344#endif
345
346 if (!screen_valid(TRUE))
347 return;
348
349 if (must_redraw)
350 {
351 if (type < must_redraw) /* use maximal type */
352 type = must_redraw;
353 must_redraw = 0;
354 }
355
356 /* Need to update w_lines[]. */
357 if (curwin->w_lines_valid == 0 && type < NOT_VALID)
358 type = NOT_VALID;
359
360 if (!redrawing())
361 {
362 redraw_later(type); /* remember type for next time */
363 must_redraw = type;
364 if (type > INVERTED_ALL)
365 curwin->w_lines_valid = 0; /* don't use w_lines[].wl_size now */
366 return;
367 }
368
369 updating_screen = TRUE;
370#ifdef FEAT_SYN_HL
371 ++display_tick; /* let syntax code know we're in a next round of
372 * display updating */
373#endif
374
375 /*
376 * if the screen was scrolled up when displaying a message, scroll it down
377 */
378 if (msg_scrolled)
379 {
380 clear_cmdline = TRUE;
381 if (msg_scrolled > Rows - 5) /* clearing is faster */
382 type = CLEAR;
383 else if (type != CLEAR)
384 {
385 check_for_delay(FALSE);
386 if (screen_ins_lines(0, 0, msg_scrolled, (int)Rows, NULL) == FAIL)
387 type = CLEAR;
388 FOR_ALL_WINDOWS(wp)
389 {
390 if (W_WINROW(wp) < msg_scrolled)
391 {
392 if (W_WINROW(wp) + wp->w_height > msg_scrolled
393 && wp->w_redr_type < REDRAW_TOP
394 && wp->w_lines_valid > 0
395 && wp->w_topline == wp->w_lines[0].wl_lnum)
396 {
397 wp->w_upd_rows = msg_scrolled - W_WINROW(wp);
398 wp->w_redr_type = REDRAW_TOP;
399 }
400 else
401 {
402 wp->w_redr_type = NOT_VALID;
403#ifdef FEAT_WINDOWS
404 if (W_WINROW(wp) + wp->w_height + W_STATUS_HEIGHT(wp)
405 <= msg_scrolled)
406 wp->w_redr_status = TRUE;
407#endif
408 }
409 }
410 }
411 redraw_cmdline = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000412#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +0000413 redraw_tabline = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 }
416 msg_scrolled = 0;
417 need_wait_return = FALSE;
418 }
419
420 /* reset cmdline_row now (may have been changed temporarily) */
421 compute_cmdrow();
422
423 /* Check for changed highlighting */
424 if (need_highlight_changed)
425 highlight_changed();
426
427 if (type == CLEAR) /* first clear screen */
428 {
429 screenclear(); /* will reset clear_cmdline */
430 type = NOT_VALID;
431 }
432
433 if (clear_cmdline) /* going to clear cmdline (done below) */
434 check_for_delay(FALSE);
435
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000436#ifdef FEAT_LINEBREAK
437 /* Force redraw when width of 'number' column changes. */
438 if (curwin->w_redr_type < NOT_VALID
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000439 && curwin->w_nrwidth != (curwin->w_p_nu ? number_width(curwin) : 0))
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000440 curwin->w_redr_type = NOT_VALID;
441#endif
442
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 /*
444 * Only start redrawing if there is really something to do.
445 */
446 if (type == INVERTED)
447 update_curswant();
448 if (curwin->w_redr_type < type
449 && !((type == VALID
450 && curwin->w_lines[0].wl_valid
451#ifdef FEAT_DIFF
452 && curwin->w_topfill == curwin->w_old_topfill
453 && curwin->w_botfill == curwin->w_old_botfill
454#endif
455 && curwin->w_topline == curwin->w_lines[0].wl_lnum)
456#ifdef FEAT_VISUAL
457 || (type == INVERTED
Bram Moolenaarb0c9a852006-11-28 15:14:56 +0000458 && VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 && curwin->w_old_cursor_lnum == curwin->w_cursor.lnum
460 && curwin->w_old_visual_mode == VIsual_mode
461 && (curwin->w_valid & VALID_VIRTCOL)
462 && curwin->w_old_curswant == curwin->w_curswant)
463#endif
464 ))
465 curwin->w_redr_type = type;
466
Bram Moolenaar5a305422006-04-28 22:38:25 +0000467#ifdef FEAT_WINDOWS
468 /* Redraw the tab pages line if needed. */
469 if (redraw_tabline || type >= NOT_VALID)
470 draw_tabline();
471#endif
472
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473#ifdef FEAT_SYN_HL
474 /*
475 * Correct stored syntax highlighting info for changes in each displayed
476 * buffer. Each buffer must only be done once.
477 */
478 FOR_ALL_WINDOWS(wp)
479 {
480 if (wp->w_buffer->b_mod_set)
481 {
482# ifdef FEAT_WINDOWS
483 win_T *wwp;
484
485 /* Check if we already did this buffer. */
486 for (wwp = firstwin; wwp != wp; wwp = wwp->w_next)
487 if (wwp->w_buffer == wp->w_buffer)
488 break;
489# endif
490 if (
491# ifdef FEAT_WINDOWS
492 wwp == wp &&
493# endif
494 syntax_present(wp->w_buffer))
495 syn_stack_apply_changes(wp->w_buffer);
496 }
497 }
498#endif
499
500 /*
501 * Go from top to bottom through the windows, redrawing the ones that need
502 * it.
503 */
504#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CLIPBOARD)
505 did_one = FALSE;
506#endif
507#ifdef FEAT_SEARCH_EXTRA
508 search_hl.rm.regprog = NULL;
509#endif
510 FOR_ALL_WINDOWS(wp)
511 {
512 if (wp->w_redr_type != 0)
513 {
514 cursor_off();
515#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CLIPBOARD)
516 if (!did_one)
517 {
518 did_one = TRUE;
519# ifdef FEAT_SEARCH_EXTRA
520 start_search_hl();
521# endif
522# ifdef FEAT_CLIPBOARD
523 /* When Visual area changed, may have to update selection. */
524 if (clip_star.available && clip_isautosel())
525 clip_update_selection();
526# endif
527#ifdef FEAT_GUI
528 /* Remove the cursor before starting to do anything, because
529 * scrolling may make it difficult to redraw the text under
530 * it. */
531 if (gui.in_use)
532 gui_undraw_cursor();
533#endif
534 }
535#endif
536 win_update(wp);
537 }
538
539#ifdef FEAT_WINDOWS
540 /* redraw status line after the window to minimize cursor movement */
541 if (wp->w_redr_status)
542 {
543 cursor_off();
544 win_redr_status(wp);
545 }
546#endif
547 }
548#if defined(FEAT_SEARCH_EXTRA)
549 end_search_hl();
550#endif
551
552#ifdef FEAT_WINDOWS
553 /* Reset b_mod_set flags. Going through all windows is probably faster
554 * than going through all buffers (there could be many buffers). */
555 for (wp = firstwin; wp != NULL; wp = wp->w_next)
556 wp->w_buffer->b_mod_set = FALSE;
557#else
558 curbuf->b_mod_set = FALSE;
559#endif
560
561 updating_screen = FALSE;
562#ifdef FEAT_GUI
563 gui_may_resize_shell();
564#endif
565
566 /* Clear or redraw the command line. Done last, because scrolling may
567 * mess up the command line. */
568 if (clear_cmdline || redraw_cmdline)
569 showmode();
570
571 /* May put up an introductory message when not editing a file */
572 if (!did_intro && bufempty()
573 && curbuf->b_fname == NULL
574#ifdef FEAT_WINDOWS
575 && firstwin->w_next == NULL
576#endif
577 && vim_strchr(p_shm, SHM_INTRO) == NULL)
578 intro_message(FALSE);
579 did_intro = TRUE;
580
581#ifdef FEAT_GUI
582 /* Redraw the cursor and update the scrollbars when all screen updating is
583 * done. */
584 if (gui.in_use)
585 {
586 out_flush(); /* required before updating the cursor */
587 if (did_one)
588 gui_update_cursor(FALSE, FALSE);
589 gui_update_scrollbars(FALSE);
590 }
591#endif
592}
593
594#if defined(FEAT_SIGNS) || defined(FEAT_GUI)
595static void update_prepare __ARGS((void));
596static void update_finish __ARGS((void));
597
598/*
599 * Prepare for updating one or more windows.
600 */
601 static void
602update_prepare()
603{
604 cursor_off();
605 updating_screen = TRUE;
606#ifdef FEAT_GUI
607 /* Remove the cursor before starting to do anything, because scrolling may
608 * make it difficult to redraw the text under it. */
609 if (gui.in_use)
610 gui_undraw_cursor();
611#endif
612#ifdef FEAT_SEARCH_EXTRA
613 start_search_hl();
614#endif
615}
616
617/*
618 * Finish updating one or more windows.
619 */
620 static void
621update_finish()
622{
623 if (redraw_cmdline)
624 showmode();
625
626# ifdef FEAT_SEARCH_EXTRA
627 end_search_hl();
628# endif
629
630 updating_screen = FALSE;
631
632# ifdef FEAT_GUI
633 gui_may_resize_shell();
634
635 /* Redraw the cursor and update the scrollbars when all screen updating is
636 * done. */
637 if (gui.in_use)
638 {
639 out_flush(); /* required before updating the cursor */
640 gui_update_cursor(FALSE, FALSE);
641 gui_update_scrollbars(FALSE);
642 }
643# endif
644}
645#endif
646
647#if defined(FEAT_SIGNS) || defined(PROTO)
648 void
649update_debug_sign(buf, lnum)
650 buf_T *buf;
651 linenr_T lnum;
652{
653 win_T *wp;
654 int doit = FALSE;
655
656# ifdef FEAT_FOLDING
657 win_foldinfo.fi_level = 0;
658# endif
659
660 /* update/delete a specific mark */
661 FOR_ALL_WINDOWS(wp)
662 {
663 if (buf != NULL && lnum > 0)
664 {
665 if (wp->w_buffer == buf && lnum >= wp->w_topline
666 && lnum < wp->w_botline)
667 {
668 if (wp->w_redraw_top == 0 || wp->w_redraw_top > lnum)
669 wp->w_redraw_top = lnum;
670 if (wp->w_redraw_bot == 0 || wp->w_redraw_bot < lnum)
671 wp->w_redraw_bot = lnum;
672 redraw_win_later(wp, VALID);
673 }
674 }
675 else
676 redraw_win_later(wp, VALID);
677 if (wp->w_redr_type != 0)
678 doit = TRUE;
679 }
680
681 if (!doit)
682 return;
683
684 /* update all windows that need updating */
685 update_prepare();
686
687# ifdef FEAT_WINDOWS
688 for (wp = firstwin; wp; wp = wp->w_next)
689 {
690 if (wp->w_redr_type != 0)
691 win_update(wp);
692 if (wp->w_redr_status)
693 win_redr_status(wp);
694 }
695# else
696 if (curwin->w_redr_type != 0)
697 win_update(curwin);
698# endif
699
700 update_finish();
701}
702#endif
703
704
705#if defined(FEAT_GUI) || defined(PROTO)
706/*
707 * Update a single window, its status line and maybe the command line msg.
708 * Used for the GUI scrollbar.
709 */
710 void
711updateWindow(wp)
712 win_T *wp;
713{
714 update_prepare();
715
716#ifdef FEAT_CLIPBOARD
717 /* When Visual area changed, may have to update selection. */
718 if (clip_star.available && clip_isautosel())
719 clip_update_selection();
720#endif
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000721
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 win_update(wp);
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000723
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724#ifdef FEAT_WINDOWS
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000725 /* When the screen was cleared redraw the tab pages line. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +0000726 if (redraw_tabline)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000727 draw_tabline();
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000728
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 if (wp->w_redr_status
730# ifdef FEAT_CMDL_INFO
731 || p_ru
732# endif
733# ifdef FEAT_STL_OPT
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000734 || *p_stl != NUL || *wp->w_p_stl != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735# endif
736 )
737 win_redr_status(wp);
738#endif
739
740 update_finish();
741}
742#endif
743
744/*
745 * Update a single window.
746 *
747 * This may cause the windows below it also to be redrawn (when clearing the
748 * screen or scrolling lines).
749 *
750 * How the window is redrawn depends on wp->w_redr_type. Each type also
751 * implies the one below it.
752 * NOT_VALID redraw the whole window
Bram Moolenaar600dddc2006-03-12 22:05:10 +0000753 * SOME_VALID redraw the whole window but do scroll when possible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 * REDRAW_TOP redraw the top w_upd_rows window lines, otherwise like VALID
755 * INVERTED redraw the changed part of the Visual area
756 * INVERTED_ALL redraw the whole Visual area
757 * VALID 1. scroll up/down to adjust for a changed w_topline
758 * 2. update lines at the top when scrolled down
759 * 3. redraw changed text:
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000760 * - if wp->w_buffer->b_mod_set set, update lines between
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 * b_mod_top and b_mod_bot.
762 * - if wp->w_redraw_top non-zero, redraw lines between
763 * wp->w_redraw_top and wp->w_redr_bot.
764 * - continue redrawing when syntax status is invalid.
765 * 4. if scrolled up, update lines at the bottom.
766 * This results in three areas that may need updating:
767 * top: from first row to top_end (when scrolled down)
768 * mid: from mid_start to mid_end (update inversion or changed text)
769 * bot: from bot_start to last row (when scrolled up)
770 */
771 static void
772win_update(wp)
773 win_T *wp;
774{
775 buf_T *buf = wp->w_buffer;
776 int type;
777 int top_end = 0; /* Below last row of the top area that needs
778 updating. 0 when no top area updating. */
779 int mid_start = 999;/* first row of the mid area that needs
780 updating. 999 when no mid area updating. */
781 int mid_end = 0; /* Below last row of the mid area that needs
782 updating. 0 when no mid area updating. */
783 int bot_start = 999;/* first row of the bot area that needs
784 updating. 999 when no bot area updating */
785#ifdef FEAT_VISUAL
786 int scrolled_down = FALSE; /* TRUE when scrolled down when
787 w_topline got smaller a bit */
788#endif
789#ifdef FEAT_SEARCH_EXTRA
790 int top_to_mod = FALSE; /* redraw above mod_top */
791#endif
792
793 int row; /* current window row to display */
794 linenr_T lnum; /* current buffer lnum to display */
795 int idx; /* current index in w_lines[] */
796 int srow; /* starting row of the current line */
797
798 int eof = FALSE; /* if TRUE, we hit the end of the file */
799 int didline = FALSE; /* if TRUE, we finished the last line */
800 int i;
801 long j;
802 static int recursive = FALSE; /* being called recursively */
803 int old_botline = wp->w_botline;
804#ifdef FEAT_FOLDING
805 long fold_count;
806#endif
807#ifdef FEAT_SYN_HL
808 /* remember what happened to the previous line, to know if
809 * check_visual_highlight() can be used */
810#define DID_NONE 1 /* didn't update a line */
811#define DID_LINE 2 /* updated a normal line */
812#define DID_FOLD 3 /* updated a folded line */
813 int did_update = DID_NONE;
814 linenr_T syntax_last_parsed = 0; /* last parsed text line */
815#endif
816 linenr_T mod_top = 0;
817 linenr_T mod_bot = 0;
818#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA)
819 int save_got_int;
820#endif
821
822 type = wp->w_redr_type;
823
824 if (type == NOT_VALID)
825 {
826#ifdef FEAT_WINDOWS
827 wp->w_redr_status = TRUE;
828#endif
829 wp->w_lines_valid = 0;
830 }
831
832 /* Window is zero-height: nothing to draw. */
833 if (wp->w_height == 0)
834 {
835 wp->w_redr_type = 0;
836 return;
837 }
838
839#ifdef FEAT_VERTSPLIT
840 /* Window is zero-width: Only need to draw the separator. */
841 if (wp->w_width == 0)
842 {
843 /* draw the vertical separator right of this window */
844 draw_vsep_win(wp, 0);
845 wp->w_redr_type = 0;
846 return;
847 }
848#endif
849
850#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000851 /* Setup for ":match" and 'hlsearch' highlighting. Disable any previous
852 * match */
853 for (i = 0; i < 3; ++i)
854 {
855 match_hl[i].rm = wp->w_match[i];
856 if (wp->w_match_id[i] == 0)
857 match_hl[i].attr = 0;
858 else
859 match_hl[i].attr = syn_id2attr(wp->w_match_id[i]);
860 match_hl[i].buf = buf;
861 match_hl[i].lnum = 0;
862 match_hl[i].first_lnum = 0;
863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 search_hl.buf = buf;
865 search_hl.lnum = 0;
866 search_hl.first_lnum = 0;
867#endif
868
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000869#ifdef FEAT_LINEBREAK
870 /* Force redraw when width of 'number' column changes. */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000871 i = wp->w_p_nu ? number_width(wp) : 0;
872 if (wp->w_nrwidth != i)
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000873 {
874 type = NOT_VALID;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000875 wp->w_nrwidth = i;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000876 }
877 else
878#endif
879
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 if (buf->b_mod_set && buf->b_mod_xlines != 0 && wp->w_redraw_top != 0)
881 {
882 /*
883 * When there are both inserted/deleted lines and specific lines to be
884 * redrawn, w_redraw_top and w_redraw_bot may be invalid, just redraw
885 * everything (only happens when redrawing is off for while).
886 */
887 type = NOT_VALID;
888 }
889 else
890 {
891 /*
892 * Set mod_top to the first line that needs displaying because of
893 * changes. Set mod_bot to the first line after the changes.
894 */
895 mod_top = wp->w_redraw_top;
896 if (wp->w_redraw_bot != 0)
897 mod_bot = wp->w_redraw_bot + 1;
898 else
899 mod_bot = 0;
900 wp->w_redraw_top = 0; /* reset for next time */
901 wp->w_redraw_bot = 0;
902 if (buf->b_mod_set)
903 {
904 if (mod_top == 0 || mod_top > buf->b_mod_top)
905 {
906 mod_top = buf->b_mod_top;
907#ifdef FEAT_SYN_HL
908 /* Need to redraw lines above the change that may be included
909 * in a pattern match. */
910 if (syntax_present(buf))
911 {
912 mod_top -= buf->b_syn_sync_linebreaks;
913 if (mod_top < 1)
914 mod_top = 1;
915 }
916#endif
917 }
918 if (mod_bot == 0 || mod_bot < buf->b_mod_bot)
919 mod_bot = buf->b_mod_bot;
920
921#ifdef FEAT_SEARCH_EXTRA
922 /* When 'hlsearch' is on and using a multi-line search pattern, a
923 * change in one line may make the Search highlighting in a
924 * previous line invalid. Simple solution: redraw all visible
925 * lines above the change.
926 * Same for a ":match" pattern.
927 */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000928 if (search_hl.rm.regprog != NULL
929 && re_multiline(search_hl.rm.regprog))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 top_to_mod = TRUE;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000931 else
932 for (i = 0; i < 3; ++i)
933 if (match_hl[i].rm.regprog != NULL
934 && re_multiline(match_hl[i].rm.regprog))
935 {
936 top_to_mod = TRUE;
937 break;
938 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939#endif
940 }
941#ifdef FEAT_FOLDING
942 if (mod_top != 0 && hasAnyFolding(wp))
943 {
944 linenr_T lnumt, lnumb;
945
946 /*
947 * A change in a line can cause lines above it to become folded or
948 * unfolded. Find the top most buffer line that may be affected.
949 * If the line was previously folded and displayed, get the first
950 * line of that fold. If the line is folded now, get the first
951 * folded line. Use the minimum of these two.
952 */
953
954 /* Find last valid w_lines[] entry above mod_top. Set lnumt to
955 * the line below it. If there is no valid entry, use w_topline.
956 * Find the first valid w_lines[] entry below mod_bot. Set lnumb
957 * to this line. If there is no valid entry, use MAXLNUM. */
958 lnumt = wp->w_topline;
959 lnumb = MAXLNUM;
960 for (i = 0; i < wp->w_lines_valid; ++i)
961 if (wp->w_lines[i].wl_valid)
962 {
963 if (wp->w_lines[i].wl_lastlnum < mod_top)
964 lnumt = wp->w_lines[i].wl_lastlnum + 1;
965 if (lnumb == MAXLNUM && wp->w_lines[i].wl_lnum >= mod_bot)
966 {
967 lnumb = wp->w_lines[i].wl_lnum;
968 /* When there is a fold column it might need updating
969 * in the next line ("J" just above an open fold). */
970 if (wp->w_p_fdc > 0)
971 ++lnumb;
972 }
973 }
974
975 (void)hasFoldingWin(wp, mod_top, &mod_top, NULL, TRUE, NULL);
976 if (mod_top > lnumt)
977 mod_top = lnumt;
978
979 /* Now do the same for the bottom line (one above mod_bot). */
980 --mod_bot;
981 (void)hasFoldingWin(wp, mod_bot, NULL, &mod_bot, TRUE, NULL);
982 ++mod_bot;
983 if (mod_bot < lnumb)
984 mod_bot = lnumb;
985 }
986#endif
987
988 /* When a change starts above w_topline and the end is below
989 * w_topline, start redrawing at w_topline.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000990 * If the end of the change is above w_topline: do like no change was
991 * made, but redraw the first line to find changes in syntax. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 if (mod_top != 0 && mod_top < wp->w_topline)
993 {
994 if (mod_bot > wp->w_topline)
995 mod_top = wp->w_topline;
996#ifdef FEAT_SYN_HL
997 else if (syntax_present(buf))
998 top_end = 1;
999#endif
1000 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001001
1002 /* When line numbers are displayed need to redraw all lines below
1003 * inserted/deleted lines. */
1004 if (mod_top != 0 && buf->b_mod_xlines != 0 && wp->w_p_nu)
1005 mod_bot = MAXLNUM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 }
1007
1008 /*
1009 * When only displaying the lines at the top, set top_end. Used when
1010 * window has scrolled down for msg_scrolled.
1011 */
1012 if (type == REDRAW_TOP)
1013 {
1014 j = 0;
1015 for (i = 0; i < wp->w_lines_valid; ++i)
1016 {
1017 j += wp->w_lines[i].wl_size;
1018 if (j >= wp->w_upd_rows)
1019 {
1020 top_end = j;
1021 break;
1022 }
1023 }
1024 if (top_end == 0)
1025 /* not found (cannot happen?): redraw everything */
1026 type = NOT_VALID;
1027 else
1028 /* top area defined, the rest is VALID */
1029 type = VALID;
1030 }
1031
1032 /*
1033 * If there are no changes on the screen that require a complete redraw,
1034 * handle three cases:
1035 * 1: we are off the top of the screen by a few lines: scroll down
1036 * 2: wp->w_topline is below wp->w_lines[0].wl_lnum: may scroll up
1037 * 3: wp->w_topline is wp->w_lines[0].wl_lnum: find first entry in
1038 * w_lines[] that needs updating.
1039 */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001040 if ((type == VALID || type == SOME_VALID
1041 || type == INVERTED || type == INVERTED_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042#ifdef FEAT_DIFF
1043 && !wp->w_botfill && !wp->w_old_botfill
1044#endif
1045 )
1046 {
1047 if (mod_top != 0 && wp->w_topline == mod_top)
1048 {
1049 /*
1050 * w_topline is the first changed line, the scrolling will be done
1051 * further down.
1052 */
1053 }
1054 else if (wp->w_lines[0].wl_valid
1055 && (wp->w_topline < wp->w_lines[0].wl_lnum
1056#ifdef FEAT_DIFF
1057 || (wp->w_topline == wp->w_lines[0].wl_lnum
1058 && wp->w_topfill > wp->w_old_topfill)
1059#endif
1060 ))
1061 {
1062 /*
1063 * New topline is above old topline: May scroll down.
1064 */
1065#ifdef FEAT_FOLDING
1066 if (hasAnyFolding(wp))
1067 {
1068 linenr_T ln;
1069
1070 /* count the number of lines we are off, counting a sequence
1071 * of folded lines as one */
1072 j = 0;
1073 for (ln = wp->w_topline; ln < wp->w_lines[0].wl_lnum; ++ln)
1074 {
1075 ++j;
1076 if (j >= wp->w_height - 2)
1077 break;
1078 (void)hasFoldingWin(wp, ln, NULL, &ln, TRUE, NULL);
1079 }
1080 }
1081 else
1082#endif
1083 j = wp->w_lines[0].wl_lnum - wp->w_topline;
1084 if (j < wp->w_height - 2) /* not too far off */
1085 {
1086 i = plines_m_win(wp, wp->w_topline, wp->w_lines[0].wl_lnum - 1);
1087#ifdef FEAT_DIFF
1088 /* insert extra lines for previously invisible filler lines */
1089 if (wp->w_lines[0].wl_lnum != wp->w_topline)
1090 i += diff_check_fill(wp, wp->w_lines[0].wl_lnum)
1091 - wp->w_old_topfill;
1092#endif
1093 if (i < wp->w_height - 2) /* less than a screen off */
1094 {
1095 /*
1096 * Try to insert the correct number of lines.
1097 * If not the last window, delete the lines at the bottom.
1098 * win_ins_lines may fail when the terminal can't do it.
1099 */
1100 if (i > 0)
1101 check_for_delay(FALSE);
1102 if (win_ins_lines(wp, 0, i, FALSE, wp == firstwin) == OK)
1103 {
1104 if (wp->w_lines_valid != 0)
1105 {
1106 /* Need to update rows that are new, stop at the
1107 * first one that scrolled down. */
1108 top_end = i;
1109#ifdef FEAT_VISUAL
1110 scrolled_down = TRUE;
1111#endif
1112
1113 /* Move the entries that were scrolled, disable
1114 * the entries for the lines to be redrawn. */
1115 if ((wp->w_lines_valid += j) > wp->w_height)
1116 wp->w_lines_valid = wp->w_height;
1117 for (idx = wp->w_lines_valid; idx - j >= 0; idx--)
1118 wp->w_lines[idx] = wp->w_lines[idx - j];
1119 while (idx >= 0)
1120 wp->w_lines[idx--].wl_valid = FALSE;
1121 }
1122 }
1123 else
1124 mid_start = 0; /* redraw all lines */
1125 }
1126 else
1127 mid_start = 0; /* redraw all lines */
1128 }
1129 else
1130 mid_start = 0; /* redraw all lines */
1131 }
1132 else
1133 {
1134 /*
1135 * New topline is at or below old topline: May scroll up.
1136 * When topline didn't change, find first entry in w_lines[] that
1137 * needs updating.
1138 */
1139
1140 /* try to find wp->w_topline in wp->w_lines[].wl_lnum */
1141 j = -1;
1142 row = 0;
1143 for (i = 0; i < wp->w_lines_valid; i++)
1144 {
1145 if (wp->w_lines[i].wl_valid
1146 && wp->w_lines[i].wl_lnum == wp->w_topline)
1147 {
1148 j = i;
1149 break;
1150 }
1151 row += wp->w_lines[i].wl_size;
1152 }
1153 if (j == -1)
1154 {
1155 /* if wp->w_topline is not in wp->w_lines[].wl_lnum redraw all
1156 * lines */
1157 mid_start = 0;
1158 }
1159 else
1160 {
1161 /*
1162 * Try to delete the correct number of lines.
1163 * wp->w_topline is at wp->w_lines[i].wl_lnum.
1164 */
1165#ifdef FEAT_DIFF
1166 /* If the topline didn't change, delete old filler lines,
1167 * otherwise delete filler lines of the new topline... */
1168 if (wp->w_lines[0].wl_lnum == wp->w_topline)
1169 row += wp->w_old_topfill;
1170 else
1171 row += diff_check_fill(wp, wp->w_topline);
1172 /* ... but don't delete new filler lines. */
1173 row -= wp->w_topfill;
1174#endif
1175 if (row > 0)
1176 {
1177 check_for_delay(FALSE);
1178 if (win_del_lines(wp, 0, row, FALSE, wp == firstwin) == OK)
1179 bot_start = wp->w_height - row;
1180 else
1181 mid_start = 0; /* redraw all lines */
1182 }
1183 if ((row == 0 || bot_start < 999) && wp->w_lines_valid != 0)
1184 {
1185 /*
1186 * Skip the lines (below the deleted lines) that are still
1187 * valid and don't need redrawing. Copy their info
1188 * upwards, to compensate for the deleted lines. Set
1189 * bot_start to the first row that needs redrawing.
1190 */
1191 bot_start = 0;
1192 idx = 0;
1193 for (;;)
1194 {
1195 wp->w_lines[idx] = wp->w_lines[j];
1196 /* stop at line that didn't fit, unless it is still
1197 * valid (no lines deleted) */
1198 if (row > 0 && bot_start + row
1199 + (int)wp->w_lines[j].wl_size > wp->w_height)
1200 {
1201 wp->w_lines_valid = idx + 1;
1202 break;
1203 }
1204 bot_start += wp->w_lines[idx++].wl_size;
1205
1206 /* stop at the last valid entry in w_lines[].wl_size */
1207 if (++j >= wp->w_lines_valid)
1208 {
1209 wp->w_lines_valid = idx;
1210 break;
1211 }
1212 }
1213#ifdef FEAT_DIFF
1214 /* Correct the first entry for filler lines at the top
1215 * when it won't get updated below. */
1216 if (wp->w_p_diff && bot_start > 0)
1217 wp->w_lines[0].wl_size =
1218 plines_win_nofill(wp, wp->w_topline, TRUE)
1219 + wp->w_topfill;
1220#endif
1221 }
1222 }
1223 }
1224
1225 /* When starting redraw in the first line, redraw all lines. When
1226 * there is only one window it's probably faster to clear the screen
1227 * first. */
1228 if (mid_start == 0)
1229 {
1230 mid_end = wp->w_height;
1231 if (lastwin == firstwin)
Bram Moolenaarbc1a7c32006-09-14 19:04:14 +00001232 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 screenclear();
Bram Moolenaarbc1a7c32006-09-14 19:04:14 +00001234#ifdef FEAT_WINDOWS
1235 /* The screen was cleared, redraw the tab pages line. */
1236 if (redraw_tabline)
1237 draw_tabline();
1238#endif
1239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 }
1241 }
1242 else
1243 {
1244 /* Not VALID or INVERTED: redraw all lines. */
1245 mid_start = 0;
1246 mid_end = wp->w_height;
1247 }
1248
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001249 if (type == SOME_VALID)
1250 {
1251 /* SOME_VALID: redraw all lines. */
1252 mid_start = 0;
1253 mid_end = wp->w_height;
1254 type = NOT_VALID;
1255 }
1256
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257#ifdef FEAT_VISUAL
1258 /* check if we are updating or removing the inverted part */
1259 if ((VIsual_active && buf == curwin->w_buffer)
1260 || (wp->w_old_cursor_lnum != 0 && type != NOT_VALID))
1261 {
1262 linenr_T from, to;
1263
1264 if (VIsual_active)
1265 {
1266 if (VIsual_active
1267 && (VIsual_mode != wp->w_old_visual_mode
1268 || type == INVERTED_ALL))
1269 {
1270 /*
1271 * If the type of Visual selection changed, redraw the whole
1272 * selection. Also when the ownership of the X selection is
1273 * gained or lost.
1274 */
1275 if (curwin->w_cursor.lnum < VIsual.lnum)
1276 {
1277 from = curwin->w_cursor.lnum;
1278 to = VIsual.lnum;
1279 }
1280 else
1281 {
1282 from = VIsual.lnum;
1283 to = curwin->w_cursor.lnum;
1284 }
1285 /* redraw more when the cursor moved as well */
1286 if (wp->w_old_cursor_lnum < from)
1287 from = wp->w_old_cursor_lnum;
1288 if (wp->w_old_cursor_lnum > to)
1289 to = wp->w_old_cursor_lnum;
1290 if (wp->w_old_visual_lnum < from)
1291 from = wp->w_old_visual_lnum;
1292 if (wp->w_old_visual_lnum > to)
1293 to = wp->w_old_visual_lnum;
1294 }
1295 else
1296 {
1297 /*
1298 * Find the line numbers that need to be updated: The lines
1299 * between the old cursor position and the current cursor
1300 * position. Also check if the Visual position changed.
1301 */
1302 if (curwin->w_cursor.lnum < wp->w_old_cursor_lnum)
1303 {
1304 from = curwin->w_cursor.lnum;
1305 to = wp->w_old_cursor_lnum;
1306 }
1307 else
1308 {
1309 from = wp->w_old_cursor_lnum;
1310 to = curwin->w_cursor.lnum;
1311 if (from == 0) /* Visual mode just started */
1312 from = to;
1313 }
1314
Bram Moolenaar6c131c42005-07-19 22:17:30 +00001315 if (VIsual.lnum != wp->w_old_visual_lnum
1316 || VIsual.col != wp->w_old_visual_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 {
1318 if (wp->w_old_visual_lnum < from
1319 && wp->w_old_visual_lnum != 0)
1320 from = wp->w_old_visual_lnum;
1321 if (wp->w_old_visual_lnum > to)
1322 to = wp->w_old_visual_lnum;
1323 if (VIsual.lnum < from)
1324 from = VIsual.lnum;
1325 if (VIsual.lnum > to)
1326 to = VIsual.lnum;
1327 }
1328 }
1329
1330 /*
1331 * If in block mode and changed column or curwin->w_curswant:
1332 * update all lines.
1333 * First compute the actual start and end column.
1334 */
1335 if (VIsual_mode == Ctrl_V)
1336 {
1337 colnr_T fromc, toc;
1338
1339 getvcols(wp, &VIsual, &curwin->w_cursor, &fromc, &toc);
1340 ++toc;
1341 if (curwin->w_curswant == MAXCOL)
1342 toc = MAXCOL;
1343
1344 if (fromc != wp->w_old_cursor_fcol
1345 || toc != wp->w_old_cursor_lcol)
1346 {
1347 if (from > VIsual.lnum)
1348 from = VIsual.lnum;
1349 if (to < VIsual.lnum)
1350 to = VIsual.lnum;
1351 }
1352 wp->w_old_cursor_fcol = fromc;
1353 wp->w_old_cursor_lcol = toc;
1354 }
1355 }
1356 else
1357 {
1358 /* Use the line numbers of the old Visual area. */
1359 if (wp->w_old_cursor_lnum < wp->w_old_visual_lnum)
1360 {
1361 from = wp->w_old_cursor_lnum;
1362 to = wp->w_old_visual_lnum;
1363 }
1364 else
1365 {
1366 from = wp->w_old_visual_lnum;
1367 to = wp->w_old_cursor_lnum;
1368 }
1369 }
1370
1371 /*
1372 * There is no need to update lines above the top of the window.
1373 */
1374 if (from < wp->w_topline)
1375 from = wp->w_topline;
1376
1377 /*
1378 * If we know the value of w_botline, use it to restrict the update to
1379 * the lines that are visible in the window.
1380 */
1381 if (wp->w_valid & VALID_BOTLINE)
1382 {
1383 if (from >= wp->w_botline)
1384 from = wp->w_botline - 1;
1385 if (to >= wp->w_botline)
1386 to = wp->w_botline - 1;
1387 }
1388
1389 /*
1390 * Find the minimal part to be updated.
1391 * Watch out for scrolling that made entries in w_lines[] invalid.
1392 * E.g., CTRL-U makes the first half of w_lines[] invalid and sets
1393 * top_end; need to redraw from top_end to the "to" line.
1394 * A middle mouse click with a Visual selection may change the text
1395 * above the Visual area and reset wl_valid, do count these for
1396 * mid_end (in srow).
1397 */
1398 if (mid_start > 0)
1399 {
1400 lnum = wp->w_topline;
1401 idx = 0;
1402 srow = 0;
1403 if (scrolled_down)
1404 mid_start = top_end;
1405 else
1406 mid_start = 0;
1407 while (lnum < from && idx < wp->w_lines_valid) /* find start */
1408 {
1409 if (wp->w_lines[idx].wl_valid)
1410 mid_start += wp->w_lines[idx].wl_size;
1411 else if (!scrolled_down)
1412 srow += wp->w_lines[idx].wl_size;
1413 ++idx;
1414# ifdef FEAT_FOLDING
1415 if (idx < wp->w_lines_valid && wp->w_lines[idx].wl_valid)
1416 lnum = wp->w_lines[idx].wl_lnum;
1417 else
1418# endif
1419 ++lnum;
1420 }
1421 srow += mid_start;
1422 mid_end = wp->w_height;
1423 for ( ; idx < wp->w_lines_valid; ++idx) /* find end */
1424 {
1425 if (wp->w_lines[idx].wl_valid
1426 && wp->w_lines[idx].wl_lnum >= to + 1)
1427 {
1428 /* Only update until first row of this line */
1429 mid_end = srow;
1430 break;
1431 }
1432 srow += wp->w_lines[idx].wl_size;
1433 }
1434 }
1435 }
1436
1437 if (VIsual_active && buf == curwin->w_buffer)
1438 {
1439 wp->w_old_visual_mode = VIsual_mode;
1440 wp->w_old_cursor_lnum = curwin->w_cursor.lnum;
1441 wp->w_old_visual_lnum = VIsual.lnum;
Bram Moolenaar6c131c42005-07-19 22:17:30 +00001442 wp->w_old_visual_col = VIsual.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 wp->w_old_curswant = curwin->w_curswant;
1444 }
1445 else
1446 {
1447 wp->w_old_visual_mode = 0;
1448 wp->w_old_cursor_lnum = 0;
1449 wp->w_old_visual_lnum = 0;
Bram Moolenaar6c131c42005-07-19 22:17:30 +00001450 wp->w_old_visual_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 }
1452#endif /* FEAT_VISUAL */
1453
1454#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA)
1455 /* reset got_int, otherwise regexp won't work */
1456 save_got_int = got_int;
1457 got_int = 0;
1458#endif
1459#ifdef FEAT_FOLDING
1460 win_foldinfo.fi_level = 0;
1461#endif
1462
1463 /*
1464 * Update all the window rows.
1465 */
1466 idx = 0; /* first entry in w_lines[].wl_size */
1467 row = 0;
1468 srow = 0;
1469 lnum = wp->w_topline; /* first line shown in window */
1470 for (;;)
1471 {
1472 /* stop updating when reached the end of the window (check for _past_
1473 * the end of the window is at the end of the loop) */
1474 if (row == wp->w_height)
1475 {
1476 didline = TRUE;
1477 break;
1478 }
1479
1480 /* stop updating when hit the end of the file */
1481 if (lnum > buf->b_ml.ml_line_count)
1482 {
1483 eof = TRUE;
1484 break;
1485 }
1486
1487 /* Remember the starting row of the line that is going to be dealt
1488 * with. It is used further down when the line doesn't fit. */
1489 srow = row;
1490
1491 /*
1492 * Update a line when it is in an area that needs updating, when it
1493 * has changes or w_lines[idx] is invalid.
1494 * bot_start may be halfway a wrapped line after using
1495 * win_del_lines(), check if the current line includes it.
1496 * When syntax folding is being used, the saved syntax states will
1497 * already have been updated, we can't see where the syntax state is
1498 * the same again, just update until the end of the window.
1499 */
1500 if (row < top_end
1501 || (row >= mid_start && row < mid_end)
1502#ifdef FEAT_SEARCH_EXTRA
1503 || top_to_mod
1504#endif
1505 || idx >= wp->w_lines_valid
1506 || (row + wp->w_lines[idx].wl_size > bot_start)
1507 || (mod_top != 0
1508 && (lnum == mod_top
1509 || (lnum >= mod_top
1510 && (lnum < mod_bot
1511#ifdef FEAT_SYN_HL
1512 || did_update == DID_FOLD
1513 || (did_update == DID_LINE
1514 && syntax_present(buf)
1515 && (
1516# ifdef FEAT_FOLDING
1517 (foldmethodIsSyntax(wp)
1518 && hasAnyFolding(wp)) ||
1519# endif
1520 syntax_check_changed(lnum)))
1521#endif
1522 )))))
1523 {
1524#ifdef FEAT_SEARCH_EXTRA
1525 if (lnum == mod_top)
1526 top_to_mod = FALSE;
1527#endif
1528
1529 /*
1530 * When at start of changed lines: May scroll following lines
1531 * up or down to minimize redrawing.
1532 * Don't do this when the change continues until the end.
1533 * Don't scroll when dollar_vcol is non-zero, keep the "$".
1534 */
1535 if (lnum == mod_top
1536 && mod_bot != MAXLNUM
1537 && !(dollar_vcol != 0 && mod_bot == mod_top + 1))
1538 {
1539 int old_rows = 0;
1540 int new_rows = 0;
1541 int xtra_rows;
1542 linenr_T l;
1543
1544 /* Count the old number of window rows, using w_lines[], which
1545 * should still contain the sizes for the lines as they are
1546 * currently displayed. */
1547 for (i = idx; i < wp->w_lines_valid; ++i)
1548 {
1549 /* Only valid lines have a meaningful wl_lnum. Invalid
1550 * lines are part of the changed area. */
1551 if (wp->w_lines[i].wl_valid
1552 && wp->w_lines[i].wl_lnum == mod_bot)
1553 break;
1554 old_rows += wp->w_lines[i].wl_size;
1555#ifdef FEAT_FOLDING
1556 if (wp->w_lines[i].wl_valid
1557 && wp->w_lines[i].wl_lastlnum + 1 == mod_bot)
1558 {
1559 /* Must have found the last valid entry above mod_bot.
1560 * Add following invalid entries. */
1561 ++i;
1562 while (i < wp->w_lines_valid
1563 && !wp->w_lines[i].wl_valid)
1564 old_rows += wp->w_lines[i++].wl_size;
1565 break;
1566 }
1567#endif
1568 }
1569
1570 if (i >= wp->w_lines_valid)
1571 {
1572 /* We can't find a valid line below the changed lines,
1573 * need to redraw until the end of the window.
1574 * Inserting/deleting lines has no use. */
1575 bot_start = 0;
1576 }
1577 else
1578 {
1579 /* Able to count old number of rows: Count new window
1580 * rows, and may insert/delete lines */
1581 j = idx;
1582 for (l = lnum; l < mod_bot; ++l)
1583 {
1584#ifdef FEAT_FOLDING
1585 if (hasFoldingWin(wp, l, NULL, &l, TRUE, NULL))
1586 ++new_rows;
1587 else
1588#endif
1589#ifdef FEAT_DIFF
1590 if (l == wp->w_topline)
1591 new_rows += plines_win_nofill(wp, l, TRUE)
1592 + wp->w_topfill;
1593 else
1594#endif
1595 new_rows += plines_win(wp, l, TRUE);
1596 ++j;
1597 if (new_rows > wp->w_height - row - 2)
1598 {
1599 /* it's getting too much, must redraw the rest */
1600 new_rows = 9999;
1601 break;
1602 }
1603 }
1604 xtra_rows = new_rows - old_rows;
1605 if (xtra_rows < 0)
1606 {
1607 /* May scroll text up. If there is not enough
1608 * remaining text or scrolling fails, must redraw the
1609 * rest. If scrolling works, must redraw the text
1610 * below the scrolled text. */
1611 if (row - xtra_rows >= wp->w_height - 2)
1612 mod_bot = MAXLNUM;
1613 else
1614 {
1615 check_for_delay(FALSE);
1616 if (win_del_lines(wp, row,
1617 -xtra_rows, FALSE, FALSE) == FAIL)
1618 mod_bot = MAXLNUM;
1619 else
1620 bot_start = wp->w_height + xtra_rows;
1621 }
1622 }
1623 else if (xtra_rows > 0)
1624 {
1625 /* May scroll text down. If there is not enough
1626 * remaining text of scrolling fails, must redraw the
1627 * rest. */
1628 if (row + xtra_rows >= wp->w_height - 2)
1629 mod_bot = MAXLNUM;
1630 else
1631 {
1632 check_for_delay(FALSE);
1633 if (win_ins_lines(wp, row + old_rows,
1634 xtra_rows, FALSE, FALSE) == FAIL)
1635 mod_bot = MAXLNUM;
1636 else if (top_end > row + old_rows)
1637 /* Scrolled the part at the top that requires
1638 * updating down. */
1639 top_end += xtra_rows;
1640 }
1641 }
1642
1643 /* When not updating the rest, may need to move w_lines[]
1644 * entries. */
1645 if (mod_bot != MAXLNUM && i != j)
1646 {
1647 if (j < i)
1648 {
1649 int x = row + new_rows;
1650
1651 /* move entries in w_lines[] upwards */
1652 for (;;)
1653 {
1654 /* stop at last valid entry in w_lines[] */
1655 if (i >= wp->w_lines_valid)
1656 {
1657 wp->w_lines_valid = j;
1658 break;
1659 }
1660 wp->w_lines[j] = wp->w_lines[i];
1661 /* stop at a line that won't fit */
1662 if (x + (int)wp->w_lines[j].wl_size
1663 > wp->w_height)
1664 {
1665 wp->w_lines_valid = j + 1;
1666 break;
1667 }
1668 x += wp->w_lines[j++].wl_size;
1669 ++i;
1670 }
1671 if (bot_start > x)
1672 bot_start = x;
1673 }
1674 else /* j > i */
1675 {
1676 /* move entries in w_lines[] downwards */
1677 j -= i;
1678 wp->w_lines_valid += j;
1679 if (wp->w_lines_valid > wp->w_height)
1680 wp->w_lines_valid = wp->w_height;
1681 for (i = wp->w_lines_valid; i - j >= idx; --i)
1682 wp->w_lines[i] = wp->w_lines[i - j];
1683
1684 /* The w_lines[] entries for inserted lines are
1685 * now invalid, but wl_size may be used above.
1686 * Reset to zero. */
1687 while (i >= idx)
1688 {
1689 wp->w_lines[i].wl_size = 0;
1690 wp->w_lines[i--].wl_valid = FALSE;
1691 }
1692 }
1693 }
1694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 }
1696
1697#ifdef FEAT_FOLDING
1698 /*
1699 * When lines are folded, display one line for all of them.
1700 * Otherwise, display normally (can be several display lines when
1701 * 'wrap' is on).
1702 */
1703 fold_count = foldedCount(wp, lnum, &win_foldinfo);
1704 if (fold_count != 0)
1705 {
1706 fold_line(wp, fold_count, &win_foldinfo, lnum, row);
1707 ++row;
1708 --fold_count;
1709 wp->w_lines[idx].wl_folded = TRUE;
1710 wp->w_lines[idx].wl_lastlnum = lnum + fold_count;
1711# ifdef FEAT_SYN_HL
1712 did_update = DID_FOLD;
1713# endif
1714 }
1715 else
1716#endif
1717 if (idx < wp->w_lines_valid
1718 && wp->w_lines[idx].wl_valid
1719 && wp->w_lines[idx].wl_lnum == lnum
1720 && lnum > wp->w_topline
1721 && !(dy_flags & DY_LASTLINE)
1722 && srow + wp->w_lines[idx].wl_size > wp->w_height
1723#ifdef FEAT_DIFF
1724 && diff_check_fill(wp, lnum) == 0
1725#endif
1726 )
1727 {
1728 /* This line is not going to fit. Don't draw anything here,
1729 * will draw "@ " lines below. */
1730 row = wp->w_height + 1;
1731 }
1732 else
1733 {
1734#ifdef FEAT_SEARCH_EXTRA
1735 prepare_search_hl(wp, lnum);
1736#endif
1737#ifdef FEAT_SYN_HL
1738 /* Let the syntax stuff know we skipped a few lines. */
1739 if (syntax_last_parsed != 0 && syntax_last_parsed + 1 < lnum
1740 && syntax_present(buf))
1741 syntax_end_parsing(syntax_last_parsed + 1);
1742#endif
1743
1744 /*
1745 * Display one line.
1746 */
Bram Moolenaar4770d092006-01-12 23:22:24 +00001747 row = win_line(wp, lnum, srow, wp->w_height, mod_top == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
1749#ifdef FEAT_FOLDING
1750 wp->w_lines[idx].wl_folded = FALSE;
1751 wp->w_lines[idx].wl_lastlnum = lnum;
1752#endif
1753#ifdef FEAT_SYN_HL
1754 did_update = DID_LINE;
1755 syntax_last_parsed = lnum;
1756#endif
1757 }
1758
1759 wp->w_lines[idx].wl_lnum = lnum;
1760 wp->w_lines[idx].wl_valid = TRUE;
1761 if (row > wp->w_height) /* past end of screen */
1762 {
1763 /* we may need the size of that too long line later on */
1764 if (dollar_vcol == 0)
1765 wp->w_lines[idx].wl_size = plines_win(wp, lnum, TRUE);
1766 ++idx;
1767 break;
1768 }
1769 if (dollar_vcol == 0)
1770 wp->w_lines[idx].wl_size = row - srow;
1771 ++idx;
1772#ifdef FEAT_FOLDING
1773 lnum += fold_count + 1;
1774#else
1775 ++lnum;
1776#endif
1777 }
1778 else
1779 {
1780 /* This line does not need updating, advance to the next one */
1781 row += wp->w_lines[idx++].wl_size;
1782 if (row > wp->w_height) /* past end of screen */
1783 break;
1784#ifdef FEAT_FOLDING
1785 lnum = wp->w_lines[idx - 1].wl_lastlnum + 1;
1786#else
1787 ++lnum;
1788#endif
1789#ifdef FEAT_SYN_HL
1790 did_update = DID_NONE;
1791#endif
1792 }
1793
1794 if (lnum > buf->b_ml.ml_line_count)
1795 {
1796 eof = TRUE;
1797 break;
1798 }
1799 }
1800 /*
1801 * End of loop over all window lines.
1802 */
1803
1804
1805 if (idx > wp->w_lines_valid)
1806 wp->w_lines_valid = idx;
1807
1808#ifdef FEAT_SYN_HL
1809 /*
1810 * Let the syntax stuff know we stop parsing here.
1811 */
1812 if (syntax_last_parsed != 0 && syntax_present(buf))
1813 syntax_end_parsing(syntax_last_parsed + 1);
1814#endif
1815
1816 /*
1817 * If we didn't hit the end of the file, and we didn't finish the last
1818 * line we were working on, then the line didn't fit.
1819 */
1820 wp->w_empty_rows = 0;
1821#ifdef FEAT_DIFF
1822 wp->w_filler_rows = 0;
1823#endif
1824 if (!eof && !didline)
1825 {
1826 if (lnum == wp->w_topline)
1827 {
1828 /*
1829 * Single line that does not fit!
1830 * Don't overwrite it, it can be edited.
1831 */
1832 wp->w_botline = lnum + 1;
1833 }
1834#ifdef FEAT_DIFF
1835 else if (diff_check_fill(wp, lnum) >= wp->w_height - srow)
1836 {
1837 /* Window ends in filler lines. */
1838 wp->w_botline = lnum;
1839 wp->w_filler_rows = wp->w_height - srow;
1840 }
1841#endif
1842 else if (dy_flags & DY_LASTLINE) /* 'display' has "lastline" */
1843 {
1844 /*
1845 * Last line isn't finished: Display "@@@" at the end.
1846 */
1847 screen_fill(W_WINROW(wp) + wp->w_height - 1,
1848 W_WINROW(wp) + wp->w_height,
1849 (int)W_ENDCOL(wp) - 3, (int)W_ENDCOL(wp),
1850 '@', '@', hl_attr(HLF_AT));
1851 set_empty_rows(wp, srow);
1852 wp->w_botline = lnum;
1853 }
1854 else
1855 {
1856 win_draw_end(wp, '@', ' ', srow, wp->w_height, HLF_AT);
1857 wp->w_botline = lnum;
1858 }
1859 }
1860 else
1861 {
1862#ifdef FEAT_VERTSPLIT
1863 draw_vsep_win(wp, row);
1864#endif
1865 if (eof) /* we hit the end of the file */
1866 {
1867 wp->w_botline = buf->b_ml.ml_line_count + 1;
1868#ifdef FEAT_DIFF
1869 j = diff_check_fill(wp, wp->w_botline);
1870 if (j > 0 && !wp->w_botfill)
1871 {
1872 /*
1873 * Display filler lines at the end of the file
1874 */
1875 if (char2cells(fill_diff) > 1)
1876 i = '-';
1877 else
1878 i = fill_diff;
1879 if (row + j > wp->w_height)
1880 j = wp->w_height - row;
1881 win_draw_end(wp, i, i, row, row + (int)j, HLF_DED);
1882 row += j;
1883 }
1884#endif
1885 }
1886 else if (dollar_vcol == 0)
1887 wp->w_botline = lnum;
1888
1889 /* make sure the rest of the screen is blank */
1890 /* put '~'s on rows that aren't part of the file. */
1891 win_draw_end(wp, '~', ' ', row, wp->w_height, HLF_AT);
1892 }
1893
1894 /* Reset the type of redrawing required, the window has been updated. */
1895 wp->w_redr_type = 0;
1896#ifdef FEAT_DIFF
1897 wp->w_old_topfill = wp->w_topfill;
1898 wp->w_old_botfill = wp->w_botfill;
1899#endif
1900
1901 if (dollar_vcol == 0)
1902 {
1903 /*
1904 * There is a trick with w_botline. If we invalidate it on each
1905 * change that might modify it, this will cause a lot of expensive
1906 * calls to plines() in update_topline() each time. Therefore the
1907 * value of w_botline is often approximated, and this value is used to
1908 * compute the value of w_topline. If the value of w_botline was
1909 * wrong, check that the value of w_topline is correct (cursor is on
1910 * the visible part of the text). If it's not, we need to redraw
1911 * again. Mostly this just means scrolling up a few lines, so it
1912 * doesn't look too bad. Only do this for the current window (where
1913 * changes are relevant).
1914 */
1915 wp->w_valid |= VALID_BOTLINE;
1916 if (wp == curwin && wp->w_botline != old_botline && !recursive)
1917 {
1918 recursive = TRUE;
1919 curwin->w_valid &= ~VALID_TOPLINE;
1920 update_topline(); /* may invalidate w_botline again */
1921 if (must_redraw != 0)
1922 {
1923 /* Don't update for changes in buffer again. */
1924 i = curbuf->b_mod_set;
1925 curbuf->b_mod_set = FALSE;
1926 win_update(curwin);
1927 must_redraw = 0;
1928 curbuf->b_mod_set = i;
1929 }
1930 recursive = FALSE;
1931 }
1932 }
1933
1934#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA)
1935 /* restore got_int, unless CTRL-C was hit while redrawing */
1936 if (!got_int)
1937 got_int = save_got_int;
1938#endif
1939}
1940
1941#ifdef FEAT_SIGNS
1942static int draw_signcolumn __ARGS((win_T *wp));
1943
1944/*
1945 * Return TRUE when window "wp" has a column to draw signs in.
1946 */
1947 static int
1948draw_signcolumn(wp)
1949 win_T *wp;
1950{
1951 return (wp->w_buffer->b_signlist != NULL
1952# ifdef FEAT_NETBEANS_INTG
1953 || usingNetbeans
1954# endif
1955 );
1956}
1957#endif
1958
1959/*
1960 * Clear the rest of the window and mark the unused lines with "c1". use "c2"
1961 * as the filler character.
1962 */
1963 static void
1964win_draw_end(wp, c1, c2, row, endrow, hl)
1965 win_T *wp;
1966 int c1;
1967 int c2;
1968 int row;
1969 int endrow;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001970 hlf_T hl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971{
1972#if defined(FEAT_FOLDING) || defined(FEAT_SIGNS) || defined(FEAT_CMDWIN)
1973 int n = 0;
1974# define FDC_OFF n
1975#else
1976# define FDC_OFF 0
1977#endif
1978
1979#ifdef FEAT_RIGHTLEFT
1980 if (wp->w_p_rl)
1981 {
1982 /* No check for cmdline window: should never be right-left. */
1983# ifdef FEAT_FOLDING
1984 n = wp->w_p_fdc;
1985
1986 if (n > 0)
1987 {
1988 /* draw the fold column at the right */
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001989 if (n > W_WIDTH(wp))
1990 n = W_WIDTH(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
1992 W_ENDCOL(wp) - n, (int)W_ENDCOL(wp),
1993 ' ', ' ', hl_attr(HLF_FC));
1994 }
1995# endif
1996# ifdef FEAT_SIGNS
1997 if (draw_signcolumn(wp))
1998 {
1999 int nn = n + 2;
2000
2001 /* draw the sign column left of the fold column */
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002002 if (nn > W_WIDTH(wp))
2003 nn = W_WIDTH(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2005 W_ENDCOL(wp) - nn, (int)W_ENDCOL(wp) - n,
2006 ' ', ' ', hl_attr(HLF_SC));
2007 n = nn;
2008 }
2009# endif
2010 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2011 W_WINCOL(wp), W_ENDCOL(wp) - 1 - FDC_OFF,
2012 c2, c2, hl_attr(hl));
2013 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2014 W_ENDCOL(wp) - 1 - FDC_OFF, W_ENDCOL(wp) - FDC_OFF,
2015 c1, c2, hl_attr(hl));
2016 }
2017 else
2018#endif
2019 {
2020#ifdef FEAT_CMDWIN
2021 if (cmdwin_type != 0 && wp == curwin)
2022 {
2023 /* draw the cmdline character in the leftmost column */
2024 n = 1;
2025 if (n > wp->w_width)
2026 n = wp->w_width;
2027 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2028 W_WINCOL(wp), (int)W_WINCOL(wp) + n,
2029 cmdwin_type, ' ', hl_attr(HLF_AT));
2030 }
2031#endif
2032#ifdef FEAT_FOLDING
2033 if (wp->w_p_fdc > 0)
2034 {
2035 int nn = n + wp->w_p_fdc;
2036
2037 /* draw the fold column at the left */
2038 if (nn > W_WIDTH(wp))
2039 nn = W_WIDTH(wp);
2040 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2041 W_WINCOL(wp) + n, (int)W_WINCOL(wp) + nn,
2042 ' ', ' ', hl_attr(HLF_FC));
2043 n = nn;
2044 }
2045#endif
2046#ifdef FEAT_SIGNS
2047 if (draw_signcolumn(wp))
2048 {
2049 int nn = n + 2;
2050
2051 /* draw the sign column after the fold column */
2052 if (nn > W_WIDTH(wp))
2053 nn = W_WIDTH(wp);
2054 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2055 W_WINCOL(wp) + n, (int)W_WINCOL(wp) + nn,
2056 ' ', ' ', hl_attr(HLF_SC));
2057 n = nn;
2058 }
2059#endif
2060 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2061 W_WINCOL(wp) + FDC_OFF, (int)W_ENDCOL(wp),
2062 c1, c2, hl_attr(hl));
2063 }
2064 set_empty_rows(wp, row);
2065}
2066
2067#ifdef FEAT_FOLDING
2068/*
2069 * Display one folded line.
2070 */
2071 static void
2072fold_line(wp, fold_count, foldinfo, lnum, row)
2073 win_T *wp;
2074 long fold_count;
2075 foldinfo_T *foldinfo;
2076 linenr_T lnum;
2077 int row;
2078{
2079 char_u buf[51];
2080 pos_T *top, *bot;
2081 linenr_T lnume = lnum + fold_count - 1;
2082 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002083 char_u *text;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 int fdc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 int col;
2086 int txtcol;
2087 int off = (int)(current_ScreenLine - ScreenLines);
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002088 int ri;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089
2090 /* Build the fold line:
2091 * 1. Add the cmdwin_type for the command-line window
2092 * 2. Add the 'foldcolumn'
2093 * 3. Add the 'number' column
2094 * 4. Compose the text
2095 * 5. Add the text
2096 * 6. set highlighting for the Visual area an other text
2097 */
2098 col = 0;
2099
2100 /*
2101 * 1. Add the cmdwin_type for the command-line window
2102 * Ignores 'rightleft', this window is never right-left.
2103 */
2104#ifdef FEAT_CMDWIN
2105 if (cmdwin_type != 0 && wp == curwin)
2106 {
2107 ScreenLines[off] = cmdwin_type;
2108 ScreenAttrs[off] = hl_attr(HLF_AT);
2109#ifdef FEAT_MBYTE
2110 if (enc_utf8)
2111 ScreenLinesUC[off] = 0;
2112#endif
2113 ++col;
2114 }
2115#endif
2116
2117 /*
2118 * 2. Add the 'foldcolumn'
2119 */
2120 fdc = wp->w_p_fdc;
2121 if (fdc > W_WIDTH(wp) - col)
2122 fdc = W_WIDTH(wp) - col;
2123 if (fdc > 0)
2124 {
2125 fill_foldcolumn(buf, wp, TRUE, lnum);
2126#ifdef FEAT_RIGHTLEFT
2127 if (wp->w_p_rl)
2128 {
2129 int i;
2130
2131 copy_text_attr(off + W_WIDTH(wp) - fdc - col, buf, fdc,
2132 hl_attr(HLF_FC));
2133 /* reverse the fold column */
2134 for (i = 0; i < fdc; ++i)
2135 ScreenLines[off + W_WIDTH(wp) - i - 1 - col] = buf[i];
2136 }
2137 else
2138#endif
2139 copy_text_attr(off + col, buf, fdc, hl_attr(HLF_FC));
2140 col += fdc;
2141 }
2142
2143#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002144# define RL_MEMSET(p, v, l) if (wp->w_p_rl) \
2145 for (ri = 0; ri < l; ++ri) \
2146 ScreenAttrs[off + (W_WIDTH(wp) - (p) - (l)) + ri] = v; \
2147 else \
2148 for (ri = 0; ri < l; ++ri) \
2149 ScreenAttrs[off + (p) + ri] = v
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150#else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002151# define RL_MEMSET(p, v, l) for (ri = 0; ri < l; ++ri) \
2152 ScreenAttrs[off + (p) + ri] = v
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153#endif
2154
2155 /* Set all attributes of the 'number' column and the text */
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002156 RL_MEMSET(col, hl_attr(HLF_FL), W_WIDTH(wp) - col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157
2158#ifdef FEAT_SIGNS
2159 /* If signs are being displayed, add two spaces. */
2160 if (draw_signcolumn(wp))
2161 {
2162 len = W_WIDTH(wp) - col;
2163 if (len > 0)
2164 {
2165 if (len > 2)
2166 len = 2;
2167# ifdef FEAT_RIGHTLEFT
2168 if (wp->w_p_rl)
2169 /* the line number isn't reversed */
2170 copy_text_attr(off + W_WIDTH(wp) - len - col,
2171 (char_u *)" ", len, hl_attr(HLF_FL));
2172 else
2173# endif
2174 copy_text_attr(off + col, (char_u *)" ", len, hl_attr(HLF_FL));
2175 col += len;
2176 }
2177 }
2178#endif
2179
2180 /*
2181 * 3. Add the 'number' column
2182 */
2183 if (wp->w_p_nu)
2184 {
2185 len = W_WIDTH(wp) - col;
2186 if (len > 0)
2187 {
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002188 int w = number_width(wp);
2189
2190 if (len > w + 1)
2191 len = w + 1;
2192 sprintf((char *)buf, "%*ld ", w, (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193#ifdef FEAT_RIGHTLEFT
2194 if (wp->w_p_rl)
2195 /* the line number isn't reversed */
2196 copy_text_attr(off + W_WIDTH(wp) - len - col, buf, len,
2197 hl_attr(HLF_FL));
2198 else
2199#endif
2200 copy_text_attr(off + col, buf, len, hl_attr(HLF_FL));
2201 col += len;
2202 }
2203 }
2204
2205 /*
2206 * 4. Compose the folded-line string with 'foldtext', if set.
2207 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002208 text = get_foldtext(wp, lnum, lnume, foldinfo, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209
2210 txtcol = col; /* remember where text starts */
2211
2212 /*
2213 * 5. move the text to current_ScreenLine. Fill up with "fill_fold".
2214 * Right-left text is put in columns 0 - number-col, normal text is put
2215 * in columns number-col - window-width.
2216 */
2217#ifdef FEAT_MBYTE
2218 if (has_mbyte)
2219 {
2220 int cells;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002221 int u8c, u8cc[MAX_MCO];
2222 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 int idx;
2224 int c_len;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002225 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226# ifdef FEAT_ARABIC
2227 int prev_c = 0; /* previous Arabic character */
2228 int prev_c1 = 0; /* first composing char for prev_c */
2229# endif
2230
2231# ifdef FEAT_RIGHTLEFT
2232 if (wp->w_p_rl)
2233 idx = off;
2234 else
2235# endif
2236 idx = off + col;
2237
2238 /* Store multibyte characters in ScreenLines[] et al. correctly. */
2239 for (p = text; *p != NUL; )
2240 {
2241 cells = (*mb_ptr2cells)(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002242 c_len = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 if (col + cells > W_WIDTH(wp)
2244# ifdef FEAT_RIGHTLEFT
2245 - (wp->w_p_rl ? col : 0)
2246# endif
2247 )
2248 break;
2249 ScreenLines[idx] = *p;
2250 if (enc_utf8)
2251 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002252 u8c = utfc_ptr2char(p, u8cc);
2253 if (*p < 0x80 && u8cc[0] == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 {
2255 ScreenLinesUC[idx] = 0;
2256#ifdef FEAT_ARABIC
2257 prev_c = u8c;
2258#endif
2259 }
2260 else
2261 {
2262#ifdef FEAT_ARABIC
2263 if (p_arshape && !p_tbidi && ARABIC_CHAR(u8c))
2264 {
2265 /* Do Arabic shaping. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002266 int pc, pc1, nc;
2267 int pcc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 int firstbyte = *p;
2269
2270 /* The idea of what is the previous and next
2271 * character depends on 'rightleft'. */
2272 if (wp->w_p_rl)
2273 {
2274 pc = prev_c;
2275 pc1 = prev_c1;
2276 nc = utf_ptr2char(p + c_len);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002277 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 }
2279 else
2280 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002281 pc = utfc_ptr2char(p + c_len, pcc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 nc = prev_c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002283 pc1 = pcc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 }
2285 prev_c = u8c;
2286
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002287 u8c = arabic_shape(u8c, &firstbyte, &u8cc[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 pc, pc1, nc);
2289 ScreenLines[idx] = firstbyte;
2290 }
2291 else
2292 prev_c = u8c;
2293#endif
2294 /* Non-BMP character: display as ? or fullwidth ?. */
2295 if (u8c >= 0x10000)
2296 ScreenLinesUC[idx] = (cells == 2) ? 0xff1f : (int)'?';
2297 else
2298 ScreenLinesUC[idx] = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002299 for (i = 0; i < Screen_mco; ++i)
2300 {
2301 ScreenLinesC[i][idx] = u8cc[i];
2302 if (u8cc[i] == 0)
2303 break;
2304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 }
2306 if (cells > 1)
2307 ScreenLines[idx + 1] = 0;
2308 }
2309 else if (cells > 1) /* double-byte character */
2310 {
2311 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
2312 ScreenLines2[idx] = p[1];
2313 else
2314 ScreenLines[idx + 1] = p[1];
2315 }
2316 col += cells;
2317 idx += cells;
2318 p += c_len;
2319 }
2320 }
2321 else
2322#endif
2323 {
2324 len = (int)STRLEN(text);
2325 if (len > W_WIDTH(wp) - col)
2326 len = W_WIDTH(wp) - col;
2327 if (len > 0)
2328 {
2329#ifdef FEAT_RIGHTLEFT
2330 if (wp->w_p_rl)
2331 STRNCPY(current_ScreenLine, text, len);
2332 else
2333#endif
2334 STRNCPY(current_ScreenLine + col, text, len);
2335 col += len;
2336 }
2337 }
2338
2339 /* Fill the rest of the line with the fold filler */
2340#ifdef FEAT_RIGHTLEFT
2341 if (wp->w_p_rl)
2342 col -= txtcol;
2343#endif
2344 while (col < W_WIDTH(wp)
2345#ifdef FEAT_RIGHTLEFT
2346 - (wp->w_p_rl ? txtcol : 0)
2347#endif
2348 )
2349 {
2350#ifdef FEAT_MBYTE
2351 if (enc_utf8)
2352 {
2353 if (fill_fold >= 0x80)
2354 {
2355 ScreenLinesUC[off + col] = fill_fold;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002356 ScreenLinesC[0][off + col] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 }
2358 else
2359 ScreenLinesUC[off + col] = 0;
2360 }
2361#endif
2362 ScreenLines[off + col++] = fill_fold;
2363 }
2364
2365 if (text != buf)
2366 vim_free(text);
2367
2368 /*
2369 * 6. set highlighting for the Visual area an other text.
2370 * If all folded lines are in the Visual area, highlight the line.
2371 */
2372#ifdef FEAT_VISUAL
2373 if (VIsual_active && wp->w_buffer == curwin->w_buffer)
2374 {
2375 if (ltoreq(curwin->w_cursor, VIsual))
2376 {
2377 /* Visual is after curwin->w_cursor */
2378 top = &curwin->w_cursor;
2379 bot = &VIsual;
2380 }
2381 else
2382 {
2383 /* Visual is before curwin->w_cursor */
2384 top = &VIsual;
2385 bot = &curwin->w_cursor;
2386 }
2387 if (lnum >= top->lnum
2388 && lnume <= bot->lnum
2389 && (VIsual_mode != 'v'
2390 || ((lnum > top->lnum
2391 || (lnum == top->lnum
2392 && top->col == 0))
2393 && (lnume < bot->lnum
2394 || (lnume == bot->lnum
2395 && (bot->col - (*p_sel == 'e'))
2396 >= STRLEN(ml_get_buf(wp->w_buffer, lnume, FALSE)))))))
2397 {
2398 if (VIsual_mode == Ctrl_V)
2399 {
2400 /* Visual block mode: highlight the chars part of the block */
2401 if (wp->w_old_cursor_fcol + txtcol < (colnr_T)W_WIDTH(wp))
2402 {
2403 if (wp->w_old_cursor_lcol + txtcol < (colnr_T)W_WIDTH(wp))
2404 len = wp->w_old_cursor_lcol;
2405 else
2406 len = W_WIDTH(wp) - txtcol;
2407 RL_MEMSET(wp->w_old_cursor_fcol + txtcol, hl_attr(HLF_V),
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002408 len - (int)wp->w_old_cursor_fcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 }
2410 }
2411 else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002412 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 /* Set all attributes of the text */
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002414 RL_MEMSET(txtcol, hl_attr(HLF_V), W_WIDTH(wp) - txtcol);
2415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 }
2417 }
2418#endif
2419
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002420#ifdef FEAT_SYN_HL
2421 /* Show 'cursorcolumn' in the fold line. */
2422 if (wp->w_p_cuc && (int)wp->w_virtcol + txtcol < W_WIDTH(wp))
2423 ScreenAttrs[off + wp->w_virtcol + txtcol] = hl_combine_attr(
2424 ScreenAttrs[off + wp->w_virtcol + txtcol], hl_attr(HLF_CUC));
2425#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426
2427 SCREEN_LINE(row + W_WINROW(wp), W_WINCOL(wp), (int)W_WIDTH(wp),
2428 (int)W_WIDTH(wp), FALSE);
2429
2430 /*
2431 * Update w_cline_height and w_cline_folded if the cursor line was
2432 * updated (saves a call to plines() later).
2433 */
2434 if (wp == curwin
2435 && lnum <= curwin->w_cursor.lnum
2436 && lnume >= curwin->w_cursor.lnum)
2437 {
2438 curwin->w_cline_row = row;
2439 curwin->w_cline_height = 1;
2440 curwin->w_cline_folded = TRUE;
2441 curwin->w_valid |= (VALID_CHEIGHT|VALID_CROW);
2442 }
2443}
2444
2445/*
2446 * Copy "buf[len]" to ScreenLines["off"] and set attributes to "attr".
2447 */
2448 static void
2449copy_text_attr(off, buf, len, attr)
2450 int off;
2451 char_u *buf;
2452 int len;
2453 int attr;
2454{
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002455 int i;
2456
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 mch_memmove(ScreenLines + off, buf, (size_t)len);
2458# ifdef FEAT_MBYTE
2459 if (enc_utf8)
2460 vim_memset(ScreenLinesUC + off, 0, sizeof(u8char_T) * (size_t)len);
2461# endif
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002462 for (i = 0; i < len; ++i)
2463 ScreenAttrs[off + i] = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464}
2465
2466/*
2467 * Fill the foldcolumn at "p" for window "wp".
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00002468 * Only to be called when 'foldcolumn' > 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 */
2470 static void
2471fill_foldcolumn(p, wp, closed, lnum)
2472 char_u *p;
2473 win_T *wp;
2474 int closed; /* TRUE of FALSE */
2475 linenr_T lnum; /* current line number */
2476{
2477 int i = 0;
2478 int level;
2479 int first_level;
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002480 int empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481
2482 /* Init to all spaces. */
2483 copy_spaces(p, (size_t)wp->w_p_fdc);
2484
2485 level = win_foldinfo.fi_level;
2486 if (level > 0)
2487 {
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002488 /* If there is only one column put more info in it. */
2489 empty = (wp->w_p_fdc == 1) ? 0 : 1;
2490
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 /* If the column is too narrow, we start at the lowest level that
2492 * fits and use numbers to indicated the depth. */
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002493 first_level = level - wp->w_p_fdc - closed + 1 + empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 if (first_level < 1)
2495 first_level = 1;
2496
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002497 for (i = 0; i + empty < wp->w_p_fdc; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 {
2499 if (win_foldinfo.fi_lnum == lnum
2500 && first_level + i >= win_foldinfo.fi_low_level)
2501 p[i] = '-';
2502 else if (first_level == 1)
2503 p[i] = '|';
2504 else if (first_level + i <= 9)
2505 p[i] = '0' + first_level + i;
2506 else
2507 p[i] = '>';
2508 if (first_level + i == level)
2509 break;
2510 }
2511 }
2512 if (closed)
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00002513 p[i >= wp->w_p_fdc ? i - 1 : i] = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514}
2515#endif /* FEAT_FOLDING */
2516
2517/*
2518 * Display line "lnum" of window 'wp' on the screen.
2519 * Start at row "startrow", stop when "endrow" is reached.
2520 * wp->w_virtcol needs to be valid.
2521 *
2522 * Return the number of last row the line occupies.
2523 */
Bram Moolenaar4770d092006-01-12 23:22:24 +00002524/* ARGSUSED */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 static int
Bram Moolenaar4770d092006-01-12 23:22:24 +00002526win_line(wp, lnum, startrow, endrow, nochange)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 win_T *wp;
2528 linenr_T lnum;
2529 int startrow;
2530 int endrow;
Bram Moolenaar4770d092006-01-12 23:22:24 +00002531 int nochange; /* not updating for changed text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532{
2533 int col; /* visual column on screen */
2534 unsigned off; /* offset in ScreenLines/ScreenAttrs */
2535 int c = 0; /* init for GCC */
2536 long vcol = 0; /* virtual column (for tabs) */
2537 long vcol_prev = -1; /* "vcol" of previous character */
2538 char_u *line; /* current line */
2539 char_u *ptr; /* current position in "line" */
2540 int row; /* row in the window, excl w_winrow */
2541 int screen_row; /* row on the screen, incl w_winrow */
2542
2543 char_u extra[18]; /* "%ld" and 'fdc' must fit in here */
2544 int n_extra = 0; /* number of extra chars */
2545 char_u *p_extra = NULL; /* string of extra chars */
2546 int c_extra = NUL; /* extra chars, all the same */
2547 int extra_attr = 0; /* attributes when n_extra != 0 */
2548 static char_u *at_end_str = (char_u *)""; /* used for p_extra when
2549 displaying lcs_eol at end-of-line */
2550 int lcs_eol_one = lcs_eol; /* lcs_eol until it's been used */
2551 int lcs_prec_todo = lcs_prec; /* lcs_prec until it's been used */
2552
2553 /* saved "extra" items for when draw_state becomes WL_LINE (again) */
2554 int saved_n_extra = 0;
2555 char_u *saved_p_extra = NULL;
2556 int saved_c_extra = 0;
2557 int saved_char_attr = 0;
2558
2559 int n_attr = 0; /* chars with special attr */
2560 int saved_attr2 = 0; /* char_attr saved for n_attr */
2561 int n_attr3 = 0; /* chars with overruling special attr */
2562 int saved_attr3 = 0; /* char_attr saved for n_attr3 */
2563
2564 int n_skip = 0; /* nr of chars to skip for 'nowrap' */
2565
2566 int fromcol, tocol; /* start/end of inverting */
2567 int fromcol_prev = -2; /* start of inverting after cursor */
2568 int noinvcur = FALSE; /* don't invert the cursor */
2569#ifdef FEAT_VISUAL
2570 pos_T *top, *bot;
2571#endif
2572 pos_T pos;
2573 long v;
2574
2575 int char_attr = 0; /* attributes for next character */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002576 int attr_pri = FALSE; /* char_attr has priority */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 int area_highlighting = FALSE; /* Visual or incsearch highlighting
2578 in this line */
2579 int attr = 0; /* attributes for area highlighting */
2580 int area_attr = 0; /* attributes desired by highlighting */
2581 int search_attr = 0; /* attributes desired by 'hlsearch' */
2582#ifdef FEAT_SYN_HL
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002583 int vcol_save_attr = 0; /* saved attr for 'cursorcolumn' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 int syntax_attr = 0; /* attributes desired by syntax */
2585 int has_syntax = FALSE; /* this buffer has syntax highl. */
2586 int save_did_emsg;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002587#endif
2588#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002589 int has_spell = FALSE; /* this buffer has spell checking */
Bram Moolenaar30abd282005-06-22 22:35:10 +00002590# define SPWORDLEN 150
2591 char_u nextline[SPWORDLEN * 2];/* text with start of the next line */
Bram Moolenaar3b506942005-06-23 22:36:45 +00002592 int nextlinecol = 0; /* column where nextline[] starts */
2593 int nextline_idx = 0; /* index in nextline[] where next line
Bram Moolenaar30abd282005-06-22 22:35:10 +00002594 starts */
Bram Moolenaar217ad922005-03-20 22:37:15 +00002595 int spell_attr = 0; /* attributes desired by spelling */
2596 int word_end = 0; /* last byte with same spell_attr */
Bram Moolenaard042c562005-06-30 22:04:15 +00002597 static linenr_T checked_lnum = 0; /* line number for "checked_col" */
2598 static int checked_col = 0; /* column in "checked_lnum" up to which
Bram Moolenaar30abd282005-06-22 22:35:10 +00002599 * there are no spell errors */
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002600 static int cap_col = -1; /* column to check for Cap word */
2601 static linenr_T capcol_lnum = 0; /* line number where "cap_col" used */
Bram Moolenaar30abd282005-06-22 22:35:10 +00002602 int cur_checked_col = 0; /* checked column for current line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603#endif
2604 int extra_check; /* has syntax or linebreak */
2605#ifdef FEAT_MBYTE
2606 int multi_attr = 0; /* attributes desired by multibyte */
2607 int mb_l = 1; /* multi-byte byte length */
2608 int mb_c = 0; /* decoded multi-byte character */
2609 int mb_utf8 = FALSE; /* screen char is UTF-8 char */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002610 int u8cc[MAX_MCO]; /* composing UTF-8 chars */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611#endif
2612#ifdef FEAT_DIFF
2613 int filler_lines; /* nr of filler lines to be drawn */
2614 int filler_todo; /* nr of filler lines still to do + 1 */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002615 hlf_T diff_hlf = (hlf_T)0; /* type of diff highlighting */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 int change_start = MAXCOL; /* first col of changed area */
2617 int change_end = -1; /* last col of changed area */
2618#endif
2619 colnr_T trailcol = MAXCOL; /* start of trailing spaces */
2620#ifdef FEAT_LINEBREAK
2621 int need_showbreak = FALSE;
2622#endif
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00002623#if defined(FEAT_SIGNS) || (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
2624 || defined(FEAT_SYN_HL) || defined(FEAT_DIFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625# define LINE_ATTR
2626 int line_attr = 0; /* atrribute for the whole line */
2627#endif
2628#ifdef FEAT_SEARCH_EXTRA
2629 match_T *shl; /* points to search_hl or match_hl */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002630#endif
2631#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_MBYTE)
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002632 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633#endif
2634#ifdef FEAT_ARABIC
2635 int prev_c = 0; /* previous Arabic character */
2636 int prev_c1 = 0; /* first composing char for prev_c */
2637#endif
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00002638#if defined(LINE_ATTR)
Bram Moolenaar91170f82006-05-05 21:15:17 +00002639 int did_line_attr = 0;
2640#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641
2642 /* draw_state: items that are drawn in sequence: */
2643#define WL_START 0 /* nothing done yet */
2644#ifdef FEAT_CMDWIN
2645# define WL_CMDLINE WL_START + 1 /* cmdline window column */
2646#else
2647# define WL_CMDLINE WL_START
2648#endif
2649#ifdef FEAT_FOLDING
2650# define WL_FOLD WL_CMDLINE + 1 /* 'foldcolumn' */
2651#else
2652# define WL_FOLD WL_CMDLINE
2653#endif
2654#ifdef FEAT_SIGNS
2655# define WL_SIGN WL_FOLD + 1 /* column for signs */
2656#else
2657# define WL_SIGN WL_FOLD /* column for signs */
2658#endif
2659#define WL_NR WL_SIGN + 1 /* line number */
2660#if defined(FEAT_LINEBREAK) || defined(FEAT_DIFF)
2661# define WL_SBR WL_NR + 1 /* 'showbreak' or 'diff' */
2662#else
2663# define WL_SBR WL_NR
2664#endif
2665#define WL_LINE WL_SBR + 1 /* text in the line */
2666 int draw_state = WL_START; /* what to draw next */
Bram Moolenaar9372a112005-12-06 19:59:18 +00002667#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 int feedback_col = 0;
2669 int feedback_old_attr = -1;
2670#endif
2671
2672
2673 if (startrow > endrow) /* past the end already! */
2674 return startrow;
2675
2676 row = startrow;
2677 screen_row = row + W_WINROW(wp);
2678
2679 /*
2680 * To speed up the loop below, set extra_check when there is linebreak,
2681 * trailing white space and/or syntax processing to be done.
2682 */
2683#ifdef FEAT_LINEBREAK
2684 extra_check = wp->w_p_lbr;
2685#else
2686 extra_check = 0;
2687#endif
2688#ifdef FEAT_SYN_HL
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002689 if (syntax_present(wp->w_buffer) && !wp->w_buffer->b_syn_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 {
2691 /* Prepare for syntax highlighting in this line. When there is an
2692 * error, stop syntax highlighting. */
2693 save_did_emsg = did_emsg;
2694 did_emsg = FALSE;
2695 syntax_start(wp, lnum);
2696 if (did_emsg)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002697 wp->w_buffer->b_syn_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 else
2699 {
2700 did_emsg = save_did_emsg;
2701 has_syntax = TRUE;
2702 extra_check = TRUE;
2703 }
2704 }
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002705#endif
Bram Moolenaar217ad922005-03-20 22:37:15 +00002706
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002707#ifdef FEAT_SPELL
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00002708 if (wp->w_p_spell
2709 && *wp->w_buffer->b_p_spl != NUL
2710 && wp->w_buffer->b_langp.ga_len > 0
2711 && *(char **)(wp->w_buffer->b_langp.ga_data) != NULL)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002712 {
2713 /* Prepare for spell checking. */
2714 has_spell = TRUE;
2715 extra_check = TRUE;
Bram Moolenaar30abd282005-06-22 22:35:10 +00002716
2717 /* Get the start of the next line, so that words that wrap to the next
2718 * line are found too: "et<line-break>al.".
2719 * Trick: skip a few chars for C/shell/Vim comments */
2720 nextline[SPWORDLEN] = NUL;
2721 if (lnum < wp->w_buffer->b_ml.ml_line_count)
2722 {
2723 line = ml_get_buf(wp->w_buffer, lnum + 1, FALSE);
2724 spell_cat_line(nextline + SPWORDLEN, line, SPWORDLEN);
2725 }
2726
2727 /* When a word wrapped from the previous line the start of the current
2728 * line is valid. */
2729 if (lnum == checked_lnum)
2730 cur_checked_col = checked_col;
2731 checked_lnum = 0;
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002732
2733 /* When there was a sentence end in the previous line may require a
2734 * word starting with capital in this line. In line 1 always check
2735 * the first word. */
2736 if (lnum != capcol_lnum)
2737 cap_col = -1;
2738 if (lnum == 1)
2739 cap_col = 0;
2740 capcol_lnum = 0;
Bram Moolenaar217ad922005-03-20 22:37:15 +00002741 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742#endif
2743
2744 /*
2745 * handle visual active in this window
2746 */
2747 fromcol = -10;
2748 tocol = MAXCOL;
2749#ifdef FEAT_VISUAL
2750 if (VIsual_active && wp->w_buffer == curwin->w_buffer)
2751 {
2752 /* Visual is after curwin->w_cursor */
2753 if (ltoreq(curwin->w_cursor, VIsual))
2754 {
2755 top = &curwin->w_cursor;
2756 bot = &VIsual;
2757 }
2758 else /* Visual is before curwin->w_cursor */
2759 {
2760 top = &VIsual;
2761 bot = &curwin->w_cursor;
2762 }
2763 if (VIsual_mode == Ctrl_V) /* block mode */
2764 {
2765 if (lnum >= top->lnum && lnum <= bot->lnum)
2766 {
2767 fromcol = wp->w_old_cursor_fcol;
2768 tocol = wp->w_old_cursor_lcol;
2769 }
2770 }
2771 else /* non-block mode */
2772 {
2773 if (lnum > top->lnum && lnum <= bot->lnum)
2774 fromcol = 0;
2775 else if (lnum == top->lnum)
2776 {
2777 if (VIsual_mode == 'V') /* linewise */
2778 fromcol = 0;
2779 else
2780 {
2781 getvvcol(wp, top, (colnr_T *)&fromcol, NULL, NULL);
2782 if (gchar_pos(top) == NUL)
2783 tocol = fromcol + 1;
2784 }
2785 }
2786 if (VIsual_mode != 'V' && lnum == bot->lnum)
2787 {
2788 if (*p_sel == 'e' && bot->col == 0
2789#ifdef FEAT_VIRTUALEDIT
2790 && bot->coladd == 0
2791#endif
2792 )
2793 {
2794 fromcol = -10;
2795 tocol = MAXCOL;
2796 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002797 else if (bot->col == MAXCOL)
2798 tocol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 else
2800 {
2801 pos = *bot;
2802 if (*p_sel == 'e')
2803 getvvcol(wp, &pos, (colnr_T *)&tocol, NULL, NULL);
2804 else
2805 {
2806 getvvcol(wp, &pos, NULL, NULL, (colnr_T *)&tocol);
2807 ++tocol;
2808 }
2809 }
2810 }
2811 }
2812
2813#ifndef MSDOS
2814 /* Check if the character under the cursor should not be inverted */
2815 if (!highlight_match && lnum == curwin->w_cursor.lnum && wp == curwin
2816# ifdef FEAT_GUI
2817 && !gui.in_use
2818# endif
2819 )
2820 noinvcur = TRUE;
2821#endif
2822
2823 /* if inverting in this line set area_highlighting */
2824 if (fromcol >= 0)
2825 {
2826 area_highlighting = TRUE;
2827 attr = hl_attr(HLF_V);
2828#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2829 if (clip_star.available && !clip_star.owned && clip_isautosel())
2830 attr = hl_attr(HLF_VNC);
2831#endif
2832 }
2833 }
2834
2835 /*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002836 * handle 'incsearch' and ":s///c" highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 */
2838 else
2839#endif /* FEAT_VISUAL */
2840 if (highlight_match
2841 && wp == curwin
2842 && lnum >= curwin->w_cursor.lnum
2843 && lnum <= curwin->w_cursor.lnum + search_match_lines)
2844 {
2845 if (lnum == curwin->w_cursor.lnum)
2846 getvcol(curwin, &(curwin->w_cursor),
2847 (colnr_T *)&fromcol, NULL, NULL);
2848 else
2849 fromcol = 0;
2850 if (lnum == curwin->w_cursor.lnum + search_match_lines)
2851 {
2852 pos.lnum = lnum;
2853 pos.col = search_match_endcol;
2854 getvcol(curwin, &pos, (colnr_T *)&tocol, NULL, NULL);
2855 }
2856 else
2857 tocol = MAXCOL;
2858 if (fromcol == tocol) /* do at least one character */
2859 tocol = fromcol + 1; /* happens when past end of line */
2860 area_highlighting = TRUE;
2861 attr = hl_attr(HLF_I);
2862 }
2863
2864#ifdef FEAT_DIFF
2865 filler_lines = diff_check(wp, lnum);
2866 if (filler_lines < 0)
2867 {
2868 if (filler_lines == -1)
2869 {
2870 if (diff_find_change(wp, lnum, &change_start, &change_end))
2871 diff_hlf = HLF_ADD; /* added line */
2872 else if (change_start == 0)
2873 diff_hlf = HLF_TXD; /* changed text */
2874 else
2875 diff_hlf = HLF_CHD; /* changed line */
2876 }
2877 else
2878 diff_hlf = HLF_ADD; /* added line */
2879 filler_lines = 0;
2880 area_highlighting = TRUE;
2881 }
2882 if (lnum == wp->w_topline)
2883 filler_lines = wp->w_topfill;
2884 filler_todo = filler_lines;
2885#endif
2886
2887#ifdef LINE_ATTR
2888# ifdef FEAT_SIGNS
2889 /* If this line has a sign with line highlighting set line_attr. */
2890 v = buf_getsigntype(wp->w_buffer, lnum, SIGN_LINEHL);
2891 if (v != 0)
2892 line_attr = sign_get_attr((int)v, TRUE);
2893# endif
2894# if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
2895 /* Highlight the current line in the quickfix window. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002896 if (bt_quickfix(wp->w_buffer) && qf_current_entry(wp) == lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 line_attr = hl_attr(HLF_L);
2898# endif
2899 if (line_attr != 0)
2900 area_highlighting = TRUE;
2901#endif
2902
2903 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
2904 ptr = line;
2905
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002906#ifdef FEAT_SPELL
Bram Moolenaar30abd282005-06-22 22:35:10 +00002907 if (has_spell)
2908 {
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002909 /* For checking first word with a capital skip white space. */
2910 if (cap_col == 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002911 cap_col = (int)(skipwhite(line) - line);
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002912
Bram Moolenaar30abd282005-06-22 22:35:10 +00002913 /* To be able to spell-check over line boundaries copy the end of the
2914 * current line into nextline[]. Above the start of the next line was
2915 * copied to nextline[SPWORDLEN]. */
2916 if (nextline[SPWORDLEN] == NUL)
2917 {
2918 /* No next line or it is empty. */
2919 nextlinecol = MAXCOL;
2920 nextline_idx = 0;
2921 }
2922 else
2923 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002924 v = (long)STRLEN(line);
Bram Moolenaar30abd282005-06-22 22:35:10 +00002925 if (v < SPWORDLEN)
2926 {
2927 /* Short line, use it completely and append the start of the
2928 * next line. */
2929 nextlinecol = 0;
2930 mch_memmove(nextline, line, (size_t)v);
2931 mch_memmove(nextline + v, nextline + SPWORDLEN,
2932 STRLEN(nextline + SPWORDLEN) + 1);
2933 nextline_idx = v + 1;
2934 }
2935 else
2936 {
2937 /* Long line, use only the last SPWORDLEN bytes. */
2938 nextlinecol = v - SPWORDLEN;
2939 mch_memmove(nextline, line + nextlinecol, SPWORDLEN);
2940 nextline_idx = SPWORDLEN + 1;
2941 }
2942 }
2943 }
2944#endif
2945
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 /* find start of trailing whitespace */
2947 if (wp->w_p_list && lcs_trail)
2948 {
2949 trailcol = (colnr_T)STRLEN(ptr);
2950 while (trailcol > (colnr_T)0 && vim_iswhite(ptr[trailcol - 1]))
2951 --trailcol;
2952 trailcol += (colnr_T) (ptr - line);
2953 extra_check = TRUE;
2954 }
2955
2956 /*
2957 * 'nowrap' or 'wrap' and a single line that doesn't fit: Advance to the
2958 * first character to be displayed.
2959 */
2960 if (wp->w_p_wrap)
2961 v = wp->w_skipcol;
2962 else
2963 v = wp->w_leftcol;
2964 if (v > 0)
2965 {
2966#ifdef FEAT_MBYTE
2967 char_u *prev_ptr = ptr;
2968#endif
2969 while (vcol < v && *ptr != NUL)
2970 {
2971 c = win_lbr_chartabsize(wp, ptr, (colnr_T)vcol, NULL);
2972 vcol += c;
2973#ifdef FEAT_MBYTE
2974 prev_ptr = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002976 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 }
2978
2979#ifdef FEAT_VIRTUALEDIT
2980 /* When 'virtualedit' is set the end of the line may be before the
2981 * start of the displayed part. */
2982 if (vcol < v && *ptr == NUL && virtual_active())
2983 vcol = v;
2984#endif
2985
2986 /* Handle a character that's not completely on the screen: Put ptr at
2987 * that character but skip the first few screen characters. */
2988 if (vcol > v)
2989 {
2990 vcol -= c;
2991#ifdef FEAT_MBYTE
2992 ptr = prev_ptr;
2993#else
2994 --ptr;
2995#endif
2996 n_skip = v - vcol;
2997 }
2998
2999 /*
3000 * Adjust for when the inverted text is before the screen,
3001 * and when the start of the inverted text is before the screen.
3002 */
3003 if (tocol <= vcol)
3004 fromcol = 0;
3005 else if (fromcol >= 0 && fromcol < vcol)
3006 fromcol = vcol;
3007
3008#ifdef FEAT_LINEBREAK
3009 /* When w_skipcol is non-zero, first line needs 'showbreak' */
3010 if (wp->w_p_wrap)
3011 need_showbreak = TRUE;
3012#endif
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003013#ifdef FEAT_SPELL
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003014 /* When spell checking a word we need to figure out the start of the
3015 * word and if it's badly spelled or not. */
3016 if (has_spell)
3017 {
3018 int len;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003019 hlf_T spell_hlf = HLF_COUNT;
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003020
3021 pos = wp->w_cursor;
3022 wp->w_cursor.lnum = lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003023 wp->w_cursor.col = (colnr_T)(ptr - line);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003024 len = spell_move_to(wp, FORWARD, TRUE, TRUE, &spell_hlf);
Bram Moolenaar60a795a2005-09-16 21:55:43 +00003025 if (len == 0 || (int)wp->w_cursor.col > ptr - line)
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003026 {
3027 /* no bad word found at line start, don't check until end of a
3028 * word */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003029 spell_hlf = HLF_COUNT;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003030 word_end = (int)(spell_to_word_end(ptr, wp->w_buffer) - line + 1);
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003031 }
3032 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003033 {
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003034 /* bad word found, use attributes until end of word */
3035 word_end = wp->w_cursor.col + len + 1;
3036
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003037 /* Turn index into actual attributes. */
3038 if (spell_hlf != HLF_COUNT)
3039 spell_attr = highlight_attr[spell_hlf];
3040 }
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003041 wp->w_cursor = pos;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003042
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003043# ifdef FEAT_SYN_HL
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003044 /* Need to restart syntax highlighting for this line. */
3045 if (has_syntax)
3046 syntax_start(wp, lnum);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003047# endif
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003048 }
3049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 }
3051
3052 /*
3053 * Correct highlighting for cursor that can't be disabled.
3054 * Avoids having to check this for each character.
3055 */
3056 if (fromcol >= 0)
3057 {
3058 if (noinvcur)
3059 {
3060 if ((colnr_T)fromcol == wp->w_virtcol)
3061 {
3062 /* highlighting starts at cursor, let it start just after the
3063 * cursor */
3064 fromcol_prev = fromcol;
3065 fromcol = -1;
3066 }
3067 else if ((colnr_T)fromcol < wp->w_virtcol)
3068 /* restart highlighting after the cursor */
3069 fromcol_prev = wp->w_virtcol;
3070 }
3071 if (fromcol >= tocol)
3072 fromcol = -1;
3073 }
3074
3075#ifdef FEAT_SEARCH_EXTRA
3076 /*
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003077 * Handle highlighting the last used search pattern and ":match".
3078 * Do this for both search_hl and match_hl[3].
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003080 for (i = 3; i >= 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 {
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003082 shl = (i == 3) ? &search_hl : &match_hl[i];
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003083 shl->startcol = MAXCOL;
3084 shl->endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 shl->attr_cur = 0;
3086 if (shl->rm.regprog != NULL)
3087 {
3088 v = (long)(ptr - line);
3089 next_search_hl(wp, shl, lnum, (colnr_T)v);
3090
3091 /* Need to get the line again, a multi-line regexp may have made it
3092 * invalid. */
3093 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3094 ptr = line + v;
3095
3096 if (shl->lnum != 0 && shl->lnum <= lnum)
3097 {
3098 if (shl->lnum == lnum)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003099 shl->startcol = shl->rm.startpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003101 shl->startcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 if (lnum == shl->lnum + shl->rm.endpos[0].lnum
3103 - shl->rm.startpos[0].lnum)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003104 shl->endcol = shl->rm.endpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003106 shl->endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 /* Highlight one character for an empty match. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003108 if (shl->startcol == shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 {
3110#ifdef FEAT_MBYTE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003111 if (has_mbyte && line[shl->endcol] != NUL)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003112 shl->endcol += (*mb_ptr2len)(line + shl->endcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 else
3114#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003115 ++shl->endcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003117 if ((long)shl->startcol < v) /* match at leftcol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 {
3119 shl->attr_cur = shl->attr;
3120 search_attr = shl->attr;
3121 }
3122 area_highlighting = TRUE;
3123 }
3124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 }
3126#endif
3127
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003128#ifdef FEAT_SYN_HL
Bram Moolenaare2f98b92006-03-29 21:18:24 +00003129 /* Cursor line highlighting for 'cursorline'. Not when Visual mode is
3130 * active, because it's not clear what is selected then. */
3131 if (wp->w_p_cul && lnum == wp->w_cursor.lnum && !VIsual_active)
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003132 {
3133 line_attr = hl_attr(HLF_CUL);
3134 area_highlighting = TRUE;
3135 }
3136#endif
3137
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003138 off = (unsigned)(current_ScreenLine - ScreenLines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 col = 0;
3140#ifdef FEAT_RIGHTLEFT
3141 if (wp->w_p_rl)
3142 {
3143 /* Rightleft window: process the text in the normal direction, but put
3144 * it in current_ScreenLine[] from right to left. Start at the
3145 * rightmost column of the window. */
3146 col = W_WIDTH(wp) - 1;
3147 off += col;
3148 }
3149#endif
3150
3151 /*
3152 * Repeat for the whole displayed line.
3153 */
3154 for (;;)
3155 {
3156 /* Skip this quickly when working on the text. */
3157 if (draw_state != WL_LINE)
3158 {
3159#ifdef FEAT_CMDWIN
3160 if (draw_state == WL_CMDLINE - 1 && n_extra == 0)
3161 {
3162 draw_state = WL_CMDLINE;
3163 if (cmdwin_type != 0 && wp == curwin)
3164 {
3165 /* Draw the cmdline character. */
3166 *extra = cmdwin_type;
3167 n_extra = 1;
3168 p_extra = extra;
3169 c_extra = NUL;
3170 char_attr = hl_attr(HLF_AT);
3171 }
3172 }
3173#endif
3174
3175#ifdef FEAT_FOLDING
3176 if (draw_state == WL_FOLD - 1 && n_extra == 0)
3177 {
3178 draw_state = WL_FOLD;
3179 if (wp->w_p_fdc > 0)
3180 {
3181 /* Draw the 'foldcolumn'. */
3182 fill_foldcolumn(extra, wp, FALSE, lnum);
3183 n_extra = wp->w_p_fdc;
3184 p_extra = extra;
3185 c_extra = NUL;
3186 char_attr = hl_attr(HLF_FC);
3187 }
3188 }
3189#endif
3190
3191#ifdef FEAT_SIGNS
3192 if (draw_state == WL_SIGN - 1 && n_extra == 0)
3193 {
3194 draw_state = WL_SIGN;
3195 /* Show the sign column when there are any signs in this
3196 * buffer or when using Netbeans. */
3197 if (draw_signcolumn(wp)
3198# ifdef FEAT_DIFF
3199 && filler_todo <= 0
3200# endif
3201 )
3202 {
3203 int_u text_sign;
3204# ifdef FEAT_SIGN_ICONS
3205 int_u icon_sign;
3206# endif
3207
3208 /* Draw two cells with the sign value or blank. */
3209 c_extra = ' ';
3210 char_attr = hl_attr(HLF_SC);
3211 n_extra = 2;
3212
3213 if (row == startrow)
3214 {
3215 text_sign = buf_getsigntype(wp->w_buffer, lnum,
3216 SIGN_TEXT);
3217# ifdef FEAT_SIGN_ICONS
3218 icon_sign = buf_getsigntype(wp->w_buffer, lnum,
3219 SIGN_ICON);
3220 if (gui.in_use && icon_sign != 0)
3221 {
3222 /* Use the image in this position. */
3223 c_extra = SIGN_BYTE;
3224# ifdef FEAT_NETBEANS_INTG
3225 if (buf_signcount(wp->w_buffer, lnum) > 1)
3226 c_extra = MULTISIGN_BYTE;
3227# endif
3228 char_attr = icon_sign;
3229 }
3230 else
3231# endif
3232 if (text_sign != 0)
3233 {
3234 p_extra = sign_get_text(text_sign);
3235 if (p_extra != NULL)
3236 {
3237 c_extra = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003238 n_extra = (int)STRLEN(p_extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 }
3240 char_attr = sign_get_attr(text_sign, FALSE);
3241 }
3242 }
3243 }
3244 }
3245#endif
3246
3247 if (draw_state == WL_NR - 1 && n_extra == 0)
3248 {
3249 draw_state = WL_NR;
3250 /* Display the line number. After the first fill with blanks
3251 * when the 'n' flag isn't in 'cpo' */
3252 if (wp->w_p_nu
3253 && (row == startrow
3254#ifdef FEAT_DIFF
3255 + filler_lines
3256#endif
3257 || vim_strchr(p_cpo, CPO_NUMCOL) == NULL))
3258 {
3259 /* Draw the line number (empty space after wrapping). */
3260 if (row == startrow
3261#ifdef FEAT_DIFF
3262 + filler_lines
3263#endif
3264 )
3265 {
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003266 sprintf((char *)extra, "%*ld ",
3267 number_width(wp), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 if (wp->w_skipcol > 0)
3269 for (p_extra = extra; *p_extra == ' '; ++p_extra)
3270 *p_extra = '-';
3271#ifdef FEAT_RIGHTLEFT
3272 if (wp->w_p_rl) /* reverse line numbers */
3273 rl_mirror(extra);
3274#endif
3275 p_extra = extra;
3276 c_extra = NUL;
3277 }
3278 else
3279 c_extra = ' ';
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003280 n_extra = number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 char_attr = hl_attr(HLF_N);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003282#ifdef FEAT_SYN_HL
3283 /* When 'cursorline' is set highlight the line number of
3284 * the current line differently. */
3285 if (wp->w_p_cul && lnum == wp->w_cursor.lnum)
3286 char_attr = hl_combine_attr(hl_attr(HLF_CUL), char_attr);
3287#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 }
3289 }
3290
3291#if defined(FEAT_LINEBREAK) || defined(FEAT_DIFF)
3292 if (draw_state == WL_SBR - 1 && n_extra == 0)
3293 {
3294 draw_state = WL_SBR;
3295# ifdef FEAT_DIFF
3296 if (filler_todo > 0)
3297 {
3298 /* Draw "deleted" diff line(s). */
3299 if (char2cells(fill_diff) > 1)
3300 c_extra = '-';
3301 else
3302 c_extra = fill_diff;
3303# ifdef FEAT_RIGHTLEFT
3304 if (wp->w_p_rl)
3305 n_extra = col + 1;
3306 else
3307# endif
3308 n_extra = W_WIDTH(wp) - col;
3309 char_attr = hl_attr(HLF_DED);
3310 }
3311# endif
3312# ifdef FEAT_LINEBREAK
3313 if (*p_sbr != NUL && need_showbreak)
3314 {
3315 /* Draw 'showbreak' at the start of each broken line. */
3316 p_extra = p_sbr;
3317 c_extra = NUL;
3318 n_extra = (int)STRLEN(p_sbr);
3319 char_attr = hl_attr(HLF_AT);
3320 need_showbreak = FALSE;
3321 /* Correct end of highlighted area for 'showbreak',
3322 * required when 'linebreak' is also set. */
3323 if (tocol == vcol)
3324 tocol += n_extra;
3325 }
3326# endif
3327 }
3328#endif
3329
3330 if (draw_state == WL_LINE - 1 && n_extra == 0)
3331 {
3332 draw_state = WL_LINE;
3333 if (saved_n_extra)
3334 {
3335 /* Continue item from end of wrapped line. */
3336 n_extra = saved_n_extra;
3337 c_extra = saved_c_extra;
3338 p_extra = saved_p_extra;
3339 char_attr = saved_char_attr;
3340 }
3341 else
3342 char_attr = 0;
3343 }
3344 }
3345
3346 /* When still displaying '$' of change command, stop at cursor */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003347 if (dollar_vcol != 0 && wp == curwin
3348 && lnum == wp->w_cursor.lnum && vcol >= (long)wp->w_virtcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349#ifdef FEAT_DIFF
3350 && filler_todo <= 0
3351#endif
3352 )
3353 {
3354 SCREEN_LINE(screen_row, W_WINCOL(wp), col, -(int)W_WIDTH(wp),
3355 wp->w_p_rl);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003356 /* Pretend we have finished updating the window. Except when
3357 * 'cursorcolumn' is set. */
3358#ifdef FEAT_SYN_HL
3359 if (wp->w_p_cuc)
3360 row = wp->w_cline_row + wp->w_cline_height;
3361 else
3362#endif
3363 row = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 break;
3365 }
3366
3367 if (draw_state == WL_LINE && area_highlighting)
3368 {
3369 /* handle Visual or match highlighting in this line */
3370 if (vcol == fromcol
3371#ifdef FEAT_MBYTE
3372 || (has_mbyte && vcol + 1 == fromcol && n_extra == 0
3373 && (*mb_ptr2cells)(ptr) > 1)
3374#endif
3375 || ((int)vcol_prev == fromcol_prev
3376 && vcol < tocol))
3377 area_attr = attr; /* start highlighting */
3378 else if (area_attr != 0
3379 && (vcol == tocol
3380 || (noinvcur && (colnr_T)vcol == wp->w_virtcol)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 area_attr = 0; /* stop highlighting */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382
3383#ifdef FEAT_SEARCH_EXTRA
3384 if (!n_extra)
3385 {
3386 /*
3387 * Check for start/end of search pattern match.
3388 * After end, check for start/end of next match.
3389 * When another match, have to check for start again.
3390 * Watch out for matching an empty string!
3391 * Do this first for search_hl, then for match_hl, so that
3392 * ":match" overrules 'hlsearch'.
3393 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003394 v = (long)(ptr - line);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003395 for (i = 3; i >= 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 {
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003397 shl = (i == 3) ? &search_hl : &match_hl[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 while (shl->rm.regprog != NULL)
3399 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003400 if (shl->startcol != MAXCOL
3401 && v >= (long)shl->startcol
3402 && v < (long)shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 {
3404 shl->attr_cur = shl->attr;
3405 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003406 else if (v == (long)shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 {
3408 shl->attr_cur = 0;
3409
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 next_search_hl(wp, shl, lnum, (colnr_T)v);
3411
3412 /* Need to get the line again, a multi-line regexp
3413 * may have made it invalid. */
3414 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3415 ptr = line + v;
3416
3417 if (shl->lnum == lnum)
3418 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003419 shl->startcol = shl->rm.startpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 if (shl->rm.endpos[0].lnum == 0)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003421 shl->endcol = shl->rm.endpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003423 shl->endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003425 if (shl->startcol == shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 {
3427 /* highlight empty match, try again after
3428 * it */
3429#ifdef FEAT_MBYTE
3430 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003431 shl->endcol += (*mb_ptr2len)(line
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003432 + shl->endcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 else
3434#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003435 ++shl->endcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 }
3437
3438 /* Loop to check if the match starts at the
3439 * current position */
3440 continue;
3441 }
3442 }
3443 break;
3444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 }
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003446
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 /* ":match" highlighting overrules 'hlsearch' */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003448 for (i = 0; i <= 3; ++i)
3449 if (i == 3)
3450 search_attr = search_hl.attr_cur;
3451 else if (match_hl[i].attr_cur != 0)
3452 {
3453 search_attr = match_hl[i].attr_cur;
3454 break;
3455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 }
3457#endif
3458
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459#ifdef FEAT_DIFF
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003460 if (diff_hlf != (hlf_T)0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 {
3462 if (diff_hlf == HLF_CHD && ptr - line >= change_start)
3463 diff_hlf = HLF_TXD; /* changed text */
3464 if (diff_hlf == HLF_TXD && ptr - line > change_end)
3465 diff_hlf = HLF_CHD; /* changed line */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003466 line_attr = hl_attr(diff_hlf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 }
3468#endif
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003469
3470 /* Decide which of the highlight attributes to use. */
3471 attr_pri = TRUE;
3472 if (area_attr != 0)
3473 char_attr = area_attr;
3474 else if (search_attr != 0)
3475 char_attr = search_attr;
3476#ifdef LINE_ATTR
3477 /* Use line_attr when not in the Visual or 'incsearch' area
3478 * (area_attr may be 0 when "noinvcur" is set). */
3479 else if (line_attr != 0 && ((fromcol == -10 && tocol == MAXCOL)
3480 || (vcol < fromcol || vcol >= tocol)))
3481 char_attr = line_attr;
3482#endif
3483 else
3484 {
3485 attr_pri = FALSE;
3486#ifdef FEAT_SYN_HL
3487 if (has_syntax)
3488 char_attr = syntax_attr;
3489 else
3490#endif
3491 char_attr = 0;
3492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 }
3494
3495 /*
3496 * Get the next character to put on the screen.
3497 */
3498 /*
3499 * The 'extra' array contains the extra stuff that is inserted to
3500 * represent special characters (non-printable stuff). When all
3501 * characters are the same, c_extra is used.
3502 * For the '$' of the 'list' option, n_extra == 1, p_extra == "".
3503 */
3504 if (n_extra > 0)
3505 {
3506 if (c_extra != NUL)
3507 {
3508 c = c_extra;
3509#ifdef FEAT_MBYTE
3510 mb_c = c; /* doesn't handle non-utf-8 multi-byte! */
3511 if (enc_utf8 && (*mb_char2len)(c) > 1)
3512 {
3513 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003514 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003515 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 }
3517 else
3518 mb_utf8 = FALSE;
3519#endif
3520 }
3521 else
3522 {
3523 c = *p_extra;
3524#ifdef FEAT_MBYTE
3525 if (has_mbyte)
3526 {
3527 mb_c = c;
3528 if (enc_utf8)
3529 {
3530 /* If the UTF-8 character is more than one byte:
3531 * Decode it into "mb_c". */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003532 mb_l = (*mb_ptr2len)(p_extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 mb_utf8 = FALSE;
3534 if (mb_l > n_extra)
3535 mb_l = 1;
3536 else if (mb_l > 1)
3537 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003538 mb_c = utfc_ptr2char(p_extra, u8cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 mb_utf8 = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003540 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 }
3542 }
3543 else
3544 {
3545 /* if this is a DBCS character, put it in "mb_c" */
3546 mb_l = MB_BYTE2LEN(c);
3547 if (mb_l >= n_extra)
3548 mb_l = 1;
3549 else if (mb_l > 1)
3550 mb_c = (c << 8) + p_extra[1];
3551 }
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003552 if (mb_l == 0) /* at the NUL at end-of-line */
3553 mb_l = 1;
3554
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 /* If a double-width char doesn't fit display a '>' in the
3556 * last column. */
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003557 if ((
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558# ifdef FEAT_RIGHTLEFT
3559 wp->w_p_rl ? (col <= 0) :
3560# endif
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003561 (col >= W_WIDTH(wp) - 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 && (*mb_char2cells)(mb_c) == 2)
3563 {
3564 c = '>';
3565 mb_c = c;
3566 mb_l = 1;
3567 mb_utf8 = FALSE;
3568 multi_attr = hl_attr(HLF_AT);
3569 /* put the pointer back to output the double-width
3570 * character at the start of the next line. */
3571 ++n_extra;
3572 --p_extra;
3573 }
3574 else
3575 {
3576 n_extra -= mb_l - 1;
3577 p_extra += mb_l - 1;
3578 }
3579 }
3580#endif
3581 ++p_extra;
3582 }
3583 --n_extra;
3584 }
3585 else
3586 {
3587 /*
3588 * Get a character from the line itself.
3589 */
3590 c = *ptr;
3591#ifdef FEAT_MBYTE
3592 if (has_mbyte)
3593 {
3594 mb_c = c;
3595 if (enc_utf8)
3596 {
3597 /* If the UTF-8 character is more than one byte: Decode it
3598 * into "mb_c". */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003599 mb_l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 mb_utf8 = FALSE;
3601 if (mb_l > 1)
3602 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003603 mb_c = utfc_ptr2char(ptr, u8cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 /* Overlong encoded ASCII or ASCII with composing char
3605 * is displayed normally, except a NUL. */
3606 if (mb_c < 0x80)
3607 c = mb_c;
3608 mb_utf8 = TRUE;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003609
3610 /* At start of the line we can have a composing char.
3611 * Draw it as a space with a composing char. */
3612 if (utf_iscomposing(mb_c))
3613 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003614 for (i = Screen_mco - 1; i > 0; --i)
3615 u8cc[i] = u8cc[i - 1];
3616 u8cc[0] = mb_c;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003617 mb_c = ' ';
3618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 }
3620
3621 if ((mb_l == 1 && c >= 0x80)
3622 || (mb_l >= 1 && mb_c == 0)
3623 || (mb_l > 1 && (!vim_isprintc(mb_c)
3624 || mb_c >= 0x10000)))
3625 {
3626 /*
3627 * Illegal UTF-8 byte: display as <xx>.
3628 * Non-BMP character : display as ? or fullwidth ?.
3629 */
3630 if (mb_c < 0x10000)
3631 {
3632 transchar_hex(extra, mb_c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003633# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 if (wp->w_p_rl) /* reverse */
3635 rl_mirror(extra);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003636# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 }
3638 else if (utf_char2cells(mb_c) != 2)
3639 STRCPY(extra, "?");
3640 else
3641 /* 0xff1f in UTF-8: full-width '?' */
3642 STRCPY(extra, "\357\274\237");
3643
3644 p_extra = extra;
3645 c = *p_extra;
3646 mb_c = mb_ptr2char_adv(&p_extra);
3647 mb_utf8 = (c >= 0x80);
3648 n_extra = (int)STRLEN(p_extra);
3649 c_extra = NUL;
3650 if (area_attr == 0 && search_attr == 0)
3651 {
3652 n_attr = n_extra + 1;
3653 extra_attr = hl_attr(HLF_8);
3654 saved_attr2 = char_attr; /* save current attr */
3655 }
3656 }
3657 else if (mb_l == 0) /* at the NUL at end-of-line */
3658 mb_l = 1;
3659#ifdef FEAT_ARABIC
3660 else if (p_arshape && !p_tbidi && ARABIC_CHAR(mb_c))
3661 {
3662 /* Do Arabic shaping. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003663 int pc, pc1, nc;
3664 int pcc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665
3666 /* The idea of what is the previous and next
3667 * character depends on 'rightleft'. */
3668 if (wp->w_p_rl)
3669 {
3670 pc = prev_c;
3671 pc1 = prev_c1;
3672 nc = utf_ptr2char(ptr + mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003673 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 }
3675 else
3676 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003677 pc = utfc_ptr2char(ptr + mb_l, pcc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 nc = prev_c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003679 pc1 = pcc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 }
3681 prev_c = mb_c;
3682
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003683 mb_c = arabic_shape(mb_c, &c, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 }
3685 else
3686 prev_c = mb_c;
3687#endif
3688 }
3689 else /* enc_dbcs */
3690 {
3691 mb_l = MB_BYTE2LEN(c);
3692 if (mb_l == 0) /* at the NUL at end-of-line */
3693 mb_l = 1;
3694 else if (mb_l > 1)
3695 {
3696 /* We assume a second byte below 32 is illegal.
3697 * Hopefully this is OK for all double-byte encodings!
3698 */
3699 if (ptr[1] >= 32)
3700 mb_c = (c << 8) + ptr[1];
3701 else
3702 {
3703 if (ptr[1] == NUL)
3704 {
3705 /* head byte at end of line */
3706 mb_l = 1;
3707 transchar_nonprint(extra, c);
3708 }
3709 else
3710 {
3711 /* illegal tail byte */
3712 mb_l = 2;
3713 STRCPY(extra, "XX");
3714 }
3715 p_extra = extra;
3716 n_extra = (int)STRLEN(extra) - 1;
3717 c_extra = NUL;
3718 c = *p_extra++;
3719 if (area_attr == 0 && search_attr == 0)
3720 {
3721 n_attr = n_extra + 1;
3722 extra_attr = hl_attr(HLF_8);
3723 saved_attr2 = char_attr; /* save current attr */
3724 }
3725 mb_c = c;
3726 }
3727 }
3728 }
3729 /* If a double-width char doesn't fit display a '>' in the
3730 * last column; the character is displayed at the start of the
3731 * next line. */
3732 if ((
3733# ifdef FEAT_RIGHTLEFT
3734 wp->w_p_rl ? (col <= 0) :
3735# endif
3736 (col >= W_WIDTH(wp) - 1))
3737 && (*mb_char2cells)(mb_c) == 2)
3738 {
3739 c = '>';
3740 mb_c = c;
3741 mb_utf8 = FALSE;
3742 mb_l = 1;
3743 multi_attr = hl_attr(HLF_AT);
3744 /* Put pointer back so that the character will be
3745 * displayed at the start of the next line. */
3746 --ptr;
3747 }
3748 else if (*ptr != NUL)
3749 ptr += mb_l - 1;
3750
3751 /* If a double-width char doesn't fit at the left side display
3752 * a '<' in the first column. */
3753 if (n_skip > 0 && mb_l > 1)
3754 {
3755 extra[0] = '<';
3756 p_extra = extra;
3757 n_extra = 1;
3758 c_extra = NUL;
3759 c = ' ';
3760 if (area_attr == 0 && search_attr == 0)
3761 {
3762 n_attr = n_extra + 1;
3763 extra_attr = hl_attr(HLF_AT);
3764 saved_attr2 = char_attr; /* save current attr */
3765 }
3766 mb_c = c;
3767 mb_utf8 = FALSE;
3768 mb_l = 1;
3769 }
3770
3771 }
3772#endif
3773 ++ptr;
3774
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003775 /* 'list' : change char 160 to lcs_nbsp. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003776 if (wp->w_p_list && (c == 160
3777#ifdef FEAT_MBYTE
3778 || (mb_utf8 && mb_c == 160)
3779#endif
3780 ) && lcs_nbsp)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003781 {
3782 c = lcs_nbsp;
3783 if (area_attr == 0 && search_attr == 0)
3784 {
3785 n_attr = 1;
3786 extra_attr = hl_attr(HLF_8);
3787 saved_attr2 = char_attr; /* save current attr */
3788 }
3789#ifdef FEAT_MBYTE
3790 mb_c = c;
3791 if (enc_utf8 && (*mb_char2len)(c) > 1)
3792 {
3793 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003794 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003795 c = 0xc0;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003796 }
3797 else
3798 mb_utf8 = FALSE;
3799#endif
3800 }
3801
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 if (extra_check)
3803 {
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003804#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00003805 int can_spell = TRUE;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003806#endif
Bram Moolenaar217ad922005-03-20 22:37:15 +00003807
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003808#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 /* Get syntax attribute, unless still at the start of the line
3810 * (double-wide char that doesn't fit). */
Bram Moolenaar217ad922005-03-20 22:37:15 +00003811 v = (long)(ptr - line);
3812 if (has_syntax && v > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 {
3814 /* Get the syntax attribute for the character. If there
3815 * is an error, disable syntax highlighting. */
3816 save_did_emsg = did_emsg;
3817 did_emsg = FALSE;
3818
Bram Moolenaar217ad922005-03-20 22:37:15 +00003819 syntax_attr = get_syntax_attr((colnr_T)v - 1,
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003820# ifdef FEAT_SPELL
3821 has_spell ? &can_spell :
3822# endif
3823 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824
3825 if (did_emsg)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00003826 {
3827 wp->w_buffer->b_syn_error = TRUE;
3828 has_syntax = FALSE;
3829 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 else
3831 did_emsg = save_did_emsg;
3832
3833 /* Need to get the line again, a multi-line regexp may
3834 * have made it invalid. */
3835 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3836 ptr = line + v;
3837
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003838 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 char_attr = syntax_attr;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003840 else
Bram Moolenaarbc045ea2005-06-05 22:01:26 +00003841 char_attr = hl_combine_attr(syntax_attr, char_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 }
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003843#endif
Bram Moolenaar217ad922005-03-20 22:37:15 +00003844
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003845#ifdef FEAT_SPELL
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003846 /* Check spelling (unless at the end of the line).
Bram Moolenaarf3681cc2005-06-08 22:03:13 +00003847 * Only do this when there is no syntax highlighting, the
3848 * @Spell cluster is not used or the current syntax item
3849 * contains the @Spell cluster. */
Bram Moolenaar30abd282005-06-22 22:35:10 +00003850 if (has_spell && v >= word_end && v > cur_checked_col)
Bram Moolenaar217ad922005-03-20 22:37:15 +00003851 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003852 spell_attr = 0;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003853# ifdef FEAT_SYN_HL
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003854 if (!attr_pri)
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003855 char_attr = syntax_attr;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003856# endif
3857 if (c != 0 && (
3858# ifdef FEAT_SYN_HL
3859 !has_syntax ||
3860# endif
3861 can_spell))
Bram Moolenaar217ad922005-03-20 22:37:15 +00003862 {
Bram Moolenaar30abd282005-06-22 22:35:10 +00003863 char_u *prev_ptr, *p;
3864 int len;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003865 hlf_T spell_hlf = HLF_COUNT;
Bram Moolenaar217ad922005-03-20 22:37:15 +00003866# ifdef FEAT_MBYTE
Bram Moolenaare7566042005-06-17 22:00:15 +00003867 if (has_mbyte)
3868 {
3869 prev_ptr = ptr - mb_l;
3870 v -= mb_l - 1;
3871 }
3872 else
Bram Moolenaar217ad922005-03-20 22:37:15 +00003873# endif
Bram Moolenaare7566042005-06-17 22:00:15 +00003874 prev_ptr = ptr - 1;
Bram Moolenaar30abd282005-06-22 22:35:10 +00003875
3876 /* Use nextline[] if possible, it has the start of the
3877 * next line concatenated. */
3878 if ((prev_ptr - line) - nextlinecol >= 0)
3879 p = nextline + (prev_ptr - line) - nextlinecol;
3880 else
3881 p = prev_ptr;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003882 cap_col -= (int)(prev_ptr - line);
Bram Moolenaar4770d092006-01-12 23:22:24 +00003883 len = spell_check(wp, p, &spell_hlf, &cap_col,
3884 nochange);
Bram Moolenaar30abd282005-06-22 22:35:10 +00003885 word_end = v + len;
Bram Moolenaar217ad922005-03-20 22:37:15 +00003886
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003887 /* In Insert mode only highlight a word that
3888 * doesn't touch the cursor. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003889 if (spell_hlf != HLF_COUNT
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003890 && (State & INSERT) != 0
3891 && wp->w_cursor.lnum == lnum
3892 && wp->w_cursor.col >=
Bram Moolenaar217ad922005-03-20 22:37:15 +00003893 (colnr_T)(prev_ptr - line)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003894 && wp->w_cursor.col < (colnr_T)word_end)
3895 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003896 spell_hlf = HLF_COUNT;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003897 spell_redraw_lnum = lnum;
Bram Moolenaar217ad922005-03-20 22:37:15 +00003898 }
Bram Moolenaar30abd282005-06-22 22:35:10 +00003899
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003900 if (spell_hlf == HLF_COUNT && p != prev_ptr
Bram Moolenaar30abd282005-06-22 22:35:10 +00003901 && (p - nextline) + len > nextline_idx)
3902 {
3903 /* Remember that the good word continues at the
3904 * start of the next line. */
3905 checked_lnum = lnum + 1;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003906 checked_col = (int)((p - nextline) + len - nextline_idx);
Bram Moolenaar30abd282005-06-22 22:35:10 +00003907 }
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00003908
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003909 /* Turn index into actual attributes. */
3910 if (spell_hlf != HLF_COUNT)
3911 spell_attr = highlight_attr[spell_hlf];
3912
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00003913 if (cap_col > 0)
3914 {
3915 if (p != prev_ptr
3916 && (p - nextline) + cap_col >= nextline_idx)
3917 {
3918 /* Remember that the word in the next line
3919 * must start with a capital. */
3920 capcol_lnum = lnum + 1;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003921 cap_col = (int)((p - nextline) + cap_col
3922 - nextline_idx);
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00003923 }
3924 else
3925 /* Compute the actual column. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003926 cap_col += (int)(prev_ptr - line);
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00003927 }
Bram Moolenaar217ad922005-03-20 22:37:15 +00003928 }
Bram Moolenaar217ad922005-03-20 22:37:15 +00003929 }
3930 if (spell_attr != 0)
Bram Moolenaar30abd282005-06-22 22:35:10 +00003931 {
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003932 if (!attr_pri)
Bram Moolenaar30abd282005-06-22 22:35:10 +00003933 char_attr = hl_combine_attr(char_attr, spell_attr);
3934 else
3935 char_attr = hl_combine_attr(spell_attr, char_attr);
3936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937#endif
3938#ifdef FEAT_LINEBREAK
3939 /*
Bram Moolenaar217ad922005-03-20 22:37:15 +00003940 * Found last space before word: check for line break.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 */
3942 if (wp->w_p_lbr && vim_isbreak(c) && !vim_isbreak(*ptr)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003943 && !wp->w_p_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 {
3945 n_extra = win_lbr_chartabsize(wp, ptr - (
3946# ifdef FEAT_MBYTE
3947 has_mbyte ? mb_l :
3948# endif
3949 1), (colnr_T)vcol, NULL) - 1;
3950 c_extra = ' ';
3951 if (vim_iswhite(c))
3952 c = ' ';
3953 }
3954#endif
3955
3956 if (trailcol != MAXCOL && ptr > line + trailcol && c == ' ')
3957 {
3958 c = lcs_trail;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003959 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 {
3961 n_attr = 1;
3962 extra_attr = hl_attr(HLF_8);
3963 saved_attr2 = char_attr; /* save current attr */
3964 }
3965#ifdef FEAT_MBYTE
3966 mb_c = c;
3967 if (enc_utf8 && (*mb_char2len)(c) > 1)
3968 {
3969 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003970 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003971 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 }
3973 else
3974 mb_utf8 = FALSE;
3975#endif
3976 }
3977 }
3978
3979 /*
3980 * Handling of non-printable characters.
3981 */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003982 if (!(chartab[c & 0xff] & CT_PRINT_CHAR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 {
3984 /*
3985 * when getting a character from the file, we may have to
3986 * turn it into something else on the way to putting it
3987 * into "ScreenLines".
3988 */
3989 if (c == TAB && (!wp->w_p_list || lcs_tab1))
3990 {
3991 /* tab amount depends on current column */
3992 n_extra = (int)wp->w_buffer->b_p_ts
3993 - vcol % (int)wp->w_buffer->b_p_ts - 1;
3994#ifdef FEAT_MBYTE
3995 mb_utf8 = FALSE; /* don't draw as UTF-8 */
3996#endif
3997 if (wp->w_p_list)
3998 {
3999 c = lcs_tab1;
4000 c_extra = lcs_tab2;
4001 n_attr = n_extra + 1;
4002 extra_attr = hl_attr(HLF_8);
4003 saved_attr2 = char_attr; /* save current attr */
4004#ifdef FEAT_MBYTE
4005 mb_c = c;
4006 if (enc_utf8 && (*mb_char2len)(c) > 1)
4007 {
4008 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004009 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004010 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 }
4012#endif
4013 }
4014 else
4015 {
4016 c_extra = ' ';
4017 c = ' ';
4018 }
4019 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004020 else if (c == NUL
4021 && ((wp->w_p_list && lcs_eol > 0)
4022 || ((fromcol >= 0 || fromcol_prev >= 0)
4023 && tocol > vcol
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004024#ifdef FEAT_VISUAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004025 && VIsual_mode != Ctrl_V
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004026#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004027 && (
4028# ifdef FEAT_RIGHTLEFT
4029 wp->w_p_rl ? (col >= 0) :
4030# endif
4031 (col < W_WIDTH(wp)))
4032 && !(noinvcur
4033 && (colnr_T)vcol == wp->w_virtcol)))
4034 && lcs_eol_one >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004036 /* Display a '$' after the line or highlight an extra
4037 * character if the line break is included. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038#if defined(FEAT_DIFF) || defined(LINE_ATTR)
4039 /* For a diff line the highlighting continues after the
4040 * "$". */
4041 if (
4042# ifdef FEAT_DIFF
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004043 diff_hlf == (hlf_T)0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044# ifdef LINE_ATTR
4045 &&
4046# endif
4047# endif
4048# ifdef LINE_ATTR
4049 line_attr == 0
4050# endif
4051 )
4052#endif
4053 {
4054#ifdef FEAT_VIRTUALEDIT
4055 /* In virtualedit, visual selections may extend
4056 * beyond end of line. */
4057 if (area_highlighting && virtual_active()
4058 && tocol != MAXCOL && vcol < tocol)
4059 n_extra = 0;
4060 else
4061#endif
4062 {
4063 p_extra = at_end_str;
4064 n_extra = 1;
4065 c_extra = NUL;
4066 }
4067 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004068 if (wp->w_p_list)
4069 c = lcs_eol;
4070 else
4071 c = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 lcs_eol_one = -1;
4073 --ptr; /* put it back at the NUL */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004074 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 {
4076 extra_attr = hl_attr(HLF_AT);
4077 n_attr = 1;
4078 }
4079#ifdef FEAT_MBYTE
4080 mb_c = c;
4081 if (enc_utf8 && (*mb_char2len)(c) > 1)
4082 {
4083 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004084 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004085 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 }
4087 else
4088 mb_utf8 = FALSE; /* don't draw as UTF-8 */
4089#endif
4090 }
4091 else if (c != NUL)
4092 {
4093 p_extra = transchar(c);
4094#ifdef FEAT_RIGHTLEFT
4095 if ((dy_flags & DY_UHEX) && wp->w_p_rl)
4096 rl_mirror(p_extra); /* reverse "<12>" */
4097#endif
4098 n_extra = byte2cells(c) - 1;
4099 c_extra = NUL;
4100 c = *p_extra++;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004101 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 {
4103 n_attr = n_extra + 1;
4104 extra_attr = hl_attr(HLF_8);
4105 saved_attr2 = char_attr; /* save current attr */
4106 }
4107#ifdef FEAT_MBYTE
4108 mb_utf8 = FALSE; /* don't draw as UTF-8 */
4109#endif
4110 }
4111#ifdef FEAT_VIRTUALEDIT
4112 else if (VIsual_active
4113 && (VIsual_mode == Ctrl_V
4114 || VIsual_mode == 'v')
4115 && virtual_active()
4116 && tocol != MAXCOL
4117 && vcol < tocol
4118 && (
4119# ifdef FEAT_RIGHTLEFT
4120 wp->w_p_rl ? (col >= 0) :
4121# endif
4122 (col < W_WIDTH(wp))))
4123 {
4124 c = ' ';
4125 --ptr; /* put it back at the NUL */
4126 }
4127#endif
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004128#if defined(LINE_ATTR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 else if ((
4130# ifdef FEAT_DIFF
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004131 diff_hlf != (hlf_T)0 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 line_attr != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 ) && (
4135# ifdef FEAT_RIGHTLEFT
4136 wp->w_p_rl ? (col >= 0) :
4137# endif
4138 (col < W_WIDTH(wp))))
4139 {
4140 /* Highlight until the right side of the window */
4141 c = ' ';
4142 --ptr; /* put it back at the NUL */
Bram Moolenaar91170f82006-05-05 21:15:17 +00004143
4144 /* Remember we do the char for line highlighting. */
4145 ++did_line_attr;
4146
4147 /* don't do search HL for the rest of the line */
4148 if (line_attr != 0 && char_attr == search_attr && col > 0)
4149 char_attr = line_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150# ifdef FEAT_DIFF
4151 if (diff_hlf == HLF_TXD)
4152 {
4153 diff_hlf = HLF_CHD;
4154 if (attr == 0 || char_attr != attr)
4155 char_attr = hl_attr(diff_hlf);
4156 }
4157# endif
4158 }
4159#endif
4160 }
4161 }
4162
4163 /* Don't override visual selection highlighting. */
4164 if (n_attr > 0
4165 && draw_state == WL_LINE
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004166 && !attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 char_attr = extra_attr;
4168
Bram Moolenaar81695252004-12-29 20:58:21 +00004169#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 /* XIM don't send preedit_start and preedit_end, but they send
4171 * preedit_changed and commit. Thus Vim can't set "im_is_active", use
4172 * im_is_preediting() here. */
4173 if (xic != NULL
4174 && lnum == curwin->w_cursor.lnum
4175 && (State & INSERT)
4176 && !p_imdisable
4177 && im_is_preediting()
4178 && draw_state == WL_LINE)
4179 {
4180 colnr_T tcol;
4181
4182 if (preedit_end_col == MAXCOL)
4183 getvcol(curwin, &(curwin->w_cursor), &tcol, NULL, NULL);
4184 else
4185 tcol = preedit_end_col;
4186 if ((long)preedit_start_col <= vcol && vcol < (long)tcol)
4187 {
4188 if (feedback_old_attr < 0)
4189 {
4190 feedback_col = 0;
4191 feedback_old_attr = char_attr;
4192 }
4193 char_attr = im_get_feedback_attr(feedback_col);
4194 if (char_attr < 0)
4195 char_attr = feedback_old_attr;
4196 feedback_col++;
4197 }
4198 else if (feedback_old_attr >= 0)
4199 {
4200 char_attr = feedback_old_attr;
4201 feedback_old_attr = -1;
4202 feedback_col = 0;
4203 }
4204 }
4205#endif
4206 /*
4207 * Handle the case where we are in column 0 but not on the first
4208 * character of the line and the user wants us to show us a
4209 * special character (via 'listchars' option "precedes:<char>".
4210 */
4211 if (lcs_prec_todo != NUL
4212 && (wp->w_p_wrap ? wp->w_skipcol > 0 : wp->w_leftcol > 0)
4213#ifdef FEAT_DIFF
4214 && filler_todo <= 0
4215#endif
4216 && draw_state > WL_NR
4217 && c != NUL)
4218 {
4219 c = lcs_prec;
4220 lcs_prec_todo = NUL;
4221#ifdef FEAT_MBYTE
4222 mb_c = c;
4223 if (enc_utf8 && (*mb_char2len)(c) > 1)
4224 {
4225 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004226 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004227 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 }
4229 else
4230 mb_utf8 = FALSE; /* don't draw as UTF-8 */
4231#endif
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004232 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 {
4234 saved_attr3 = char_attr; /* save current attr */
4235 char_attr = hl_attr(HLF_AT); /* later copied to char_attr */
4236 n_attr3 = 1;
4237 }
4238 }
4239
4240 /*
Bram Moolenaar91170f82006-05-05 21:15:17 +00004241 * At end of the text line or just after the last character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 */
Bram Moolenaar91170f82006-05-05 21:15:17 +00004243 if (c == NUL
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004244#if defined(LINE_ATTR)
Bram Moolenaar91170f82006-05-05 21:15:17 +00004245 || did_line_attr == 1
4246#endif
4247 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 {
Bram Moolenaar91170f82006-05-05 21:15:17 +00004249#ifdef FEAT_SEARCH_EXTRA
4250 long prevcol = (long)(ptr - line) - (c == NUL);
4251#endif
4252
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 /* invert at least one char, used for Visual and empty line or
4254 * highlight match at end of line. If it's beyond the last
4255 * char on the screen, just overwrite that one (tricky!) Not
4256 * needed when a '$' was displayed for 'list'. */
4257 if (lcs_eol == lcs_eol_one
Bram Moolenaar91170f82006-05-05 21:15:17 +00004258 && ((area_attr != 0 && vcol == fromcol && c == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259#ifdef FEAT_SEARCH_EXTRA
4260 /* highlight 'hlsearch' match at end of line */
Bram Moolenaar91170f82006-05-05 21:15:17 +00004261 || ((prevcol == (long)search_hl.startcol
4262 || prevcol == (long)match_hl[0].startcol
4263 || prevcol == (long)match_hl[1].startcol
4264 || prevcol == (long)match_hl[2].startcol)
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004265# if defined(LINE_ATTR)
Bram Moolenaar91170f82006-05-05 21:15:17 +00004266 && did_line_attr <= 1
4267# endif
4268 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269#endif
4270 ))
4271 {
4272 int n = 0;
4273
4274#ifdef FEAT_RIGHTLEFT
4275 if (wp->w_p_rl)
4276 {
4277 if (col < 0)
4278 n = 1;
4279 }
4280 else
4281#endif
4282 {
4283 if (col >= W_WIDTH(wp))
4284 n = -1;
4285 }
4286 if (n != 0)
4287 {
4288 /* At the window boundary, highlight the last character
4289 * instead (better than nothing). */
4290 off += n;
4291 col += n;
4292 }
4293 else
4294 {
4295 /* Add a blank character to highlight. */
4296 ScreenLines[off] = ' ';
4297#ifdef FEAT_MBYTE
4298 if (enc_utf8)
4299 ScreenLinesUC[off] = 0;
4300#endif
4301 }
4302#ifdef FEAT_SEARCH_EXTRA
4303 if (area_attr == 0)
4304 {
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004305 for (i = 0; i <= 3; ++i)
4306 {
4307 if (i == 3)
4308 char_attr = search_hl.attr;
4309 else if ((ptr - line) - 1 == (long)match_hl[i].startcol)
4310 {
4311 char_attr = match_hl[i].attr;
4312 break;
4313 }
4314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 }
4316#endif
4317 ScreenAttrs[off] = char_attr;
4318#ifdef FEAT_RIGHTLEFT
4319 if (wp->w_p_rl)
4320 --col;
4321 else
4322#endif
4323 ++col;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004324 ++vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 }
Bram Moolenaar91170f82006-05-05 21:15:17 +00004326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327
Bram Moolenaar91170f82006-05-05 21:15:17 +00004328 /*
4329 * At end of the text line.
4330 */
4331 if (c == NUL)
4332 {
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004333#ifdef FEAT_SYN_HL
4334 /* Highlight 'cursorcolumn' past end of the line. */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00004335 if (wp->w_p_wrap)
4336 v = wp->w_skipcol;
4337 else
4338 v = wp->w_leftcol;
Bram Moolenaar8dff8182006-04-06 20:18:50 +00004339 /* check if line ends before left margin */
4340 if (vcol < v + col - win_col_off(wp))
4341
4342 vcol = v + col - win_col_off(wp);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004343 if (wp->w_p_cuc
4344 && (int)wp->w_virtcol >= vcol
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004345 && (int)wp->w_virtcol < W_WIDTH(wp) * (row - startrow + 1)
4346 + v
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004347 && lnum != wp->w_cursor.lnum
4348# ifdef FEAT_RIGHTLEFT
4349 && !wp->w_p_rl
4350# endif
4351 )
4352 {
4353 while (col < W_WIDTH(wp))
4354 {
4355 ScreenLines[off] = ' ';
4356#ifdef FEAT_MBYTE
4357 if (enc_utf8)
4358 ScreenLinesUC[off] = 0;
4359#endif
4360 ++col;
Bram Moolenaarca003e12006-03-17 23:19:38 +00004361 if (vcol == (long)wp->w_virtcol)
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004362 {
4363 ScreenAttrs[off] = hl_attr(HLF_CUC);
4364 break;
4365 }
4366 ScreenAttrs[off++] = 0;
4367 ++vcol;
4368 }
4369 }
4370#endif
4371
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 SCREEN_LINE(screen_row, W_WINCOL(wp), col, (int)W_WIDTH(wp),
4373 wp->w_p_rl);
4374 row++;
4375
4376 /*
4377 * Update w_cline_height and w_cline_folded if the cursor line was
4378 * updated (saves a call to plines() later).
4379 */
4380 if (wp == curwin && lnum == curwin->w_cursor.lnum)
4381 {
4382 curwin->w_cline_row = startrow;
4383 curwin->w_cline_height = row - startrow;
4384#ifdef FEAT_FOLDING
4385 curwin->w_cline_folded = FALSE;
4386#endif
4387 curwin->w_valid |= (VALID_CHEIGHT|VALID_CROW);
4388 }
4389
4390 break;
4391 }
4392
4393 /* line continues beyond line end */
4394 if (lcs_ext
4395 && !wp->w_p_wrap
4396#ifdef FEAT_DIFF
4397 && filler_todo <= 0
4398#endif
4399 && (
4400#ifdef FEAT_RIGHTLEFT
4401 wp->w_p_rl ? col == 0 :
4402#endif
4403 col == W_WIDTH(wp) - 1)
4404 && (*ptr != NUL
4405 || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str)
4406 || (n_extra && (c_extra != NUL || *p_extra != NUL))))
4407 {
4408 c = lcs_ext;
4409 char_attr = hl_attr(HLF_AT);
4410#ifdef FEAT_MBYTE
4411 mb_c = c;
4412 if (enc_utf8 && (*mb_char2len)(c) > 1)
4413 {
4414 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004415 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004416 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 }
4418 else
4419 mb_utf8 = FALSE;
4420#endif
4421 }
4422
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004423#ifdef FEAT_SYN_HL
4424 /* Highlight the cursor column if 'cursorcolumn' is set. But don't
4425 * highlight the cursor position itself. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00004426 if (wp->w_p_cuc && vcol == (long)wp->w_virtcol
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004427 && lnum != wp->w_cursor.lnum
4428 && draw_state == WL_LINE)
4429 {
4430 vcol_save_attr = char_attr;
4431 char_attr = hl_combine_attr(char_attr, hl_attr(HLF_CUC));
4432 }
4433 else
4434 vcol_save_attr = -1;
4435#endif
4436
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 /*
4438 * Store character to be displayed.
4439 * Skip characters that are left of the screen for 'nowrap'.
4440 */
4441 vcol_prev = vcol;
4442 if (draw_state < WL_LINE || n_skip <= 0)
4443 {
4444 /*
4445 * Store the character.
4446 */
4447#if defined(FEAT_RIGHTLEFT) && defined(FEAT_MBYTE)
4448 if (has_mbyte && wp->w_p_rl && (*mb_char2cells)(mb_c) > 1)
4449 {
4450 /* A double-wide character is: put first halve in left cell. */
4451 --off;
4452 --col;
4453 }
4454#endif
4455 ScreenLines[off] = c;
4456#ifdef FEAT_MBYTE
4457 if (enc_dbcs == DBCS_JPNU)
4458 ScreenLines2[off] = mb_c & 0xff;
4459 else if (enc_utf8)
4460 {
4461 if (mb_utf8)
4462 {
4463 ScreenLinesUC[off] = mb_c;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004464 if ((c & 0xff) == 0)
4465 ScreenLines[off] = 0x80; /* avoid storing zero */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004466 for (i = 0; i < Screen_mco; ++i)
4467 {
4468 ScreenLinesC[i][off] = u8cc[i];
4469 if (u8cc[i] == 0)
4470 break;
4471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 }
4473 else
4474 ScreenLinesUC[off] = 0;
4475 }
4476 if (multi_attr)
4477 {
4478 ScreenAttrs[off] = multi_attr;
4479 multi_attr = 0;
4480 }
4481 else
4482#endif
4483 ScreenAttrs[off] = char_attr;
4484
4485#ifdef FEAT_MBYTE
4486 if (has_mbyte && (*mb_char2cells)(mb_c) > 1)
4487 {
4488 /* Need to fill two screen columns. */
4489 ++off;
4490 ++col;
4491 if (enc_utf8)
4492 /* UTF-8: Put a 0 in the second screen char. */
4493 ScreenLines[off] = 0;
4494 else
4495 /* DBCS: Put second byte in the second screen char. */
4496 ScreenLines[off] = mb_c & 0xff;
4497 ++vcol;
4498 /* When "tocol" is halfway a character, set it to the end of
4499 * the character, otherwise highlighting won't stop. */
4500 if (tocol == vcol)
4501 ++tocol;
4502#ifdef FEAT_RIGHTLEFT
4503 if (wp->w_p_rl)
4504 {
4505 /* now it's time to backup one cell */
4506 --off;
4507 --col;
4508 }
4509#endif
4510 }
4511#endif
4512#ifdef FEAT_RIGHTLEFT
4513 if (wp->w_p_rl)
4514 {
4515 --off;
4516 --col;
4517 }
4518 else
4519#endif
4520 {
4521 ++off;
4522 ++col;
4523 }
4524 }
4525 else
4526 --n_skip;
4527
4528 /* Only advance the "vcol" when after the 'number' column. */
4529 if (draw_state >= WL_SBR
4530#ifdef FEAT_DIFF
4531 && filler_todo <= 0
4532#endif
4533 )
4534 ++vcol;
4535
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004536#ifdef FEAT_SYN_HL
4537 if (vcol_save_attr >= 0)
4538 char_attr = vcol_save_attr;
4539#endif
4540
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 /* restore attributes after "predeces" in 'listchars' */
4542 if (draw_state > WL_NR && n_attr3 > 0 && --n_attr3 == 0)
4543 char_attr = saved_attr3;
4544
4545 /* restore attributes after last 'listchars' or 'number' char */
4546 if (n_attr > 0 && draw_state == WL_LINE && --n_attr == 0)
4547 char_attr = saved_attr2;
4548
4549 /*
4550 * At end of screen line and there is more to come: Display the line
4551 * so far. If there is no more to display it is catched above.
4552 */
4553 if ((
4554#ifdef FEAT_RIGHTLEFT
4555 wp->w_p_rl ? (col < 0) :
4556#endif
4557 (col >= W_WIDTH(wp)))
4558 && (*ptr != NUL
4559#ifdef FEAT_DIFF
4560 || filler_todo > 0
4561#endif
4562 || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str)
4563 || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
4564 )
4565 {
4566 SCREEN_LINE(screen_row, W_WINCOL(wp), col, (int)W_WIDTH(wp),
4567 wp->w_p_rl);
4568 ++row;
4569 ++screen_row;
4570
4571 /* When not wrapping and finished diff lines, or when displayed
4572 * '$' and highlighting until last column, break here. */
4573 if ((!wp->w_p_wrap
4574#ifdef FEAT_DIFF
4575 && filler_todo <= 0
4576#endif
4577 ) || lcs_eol_one == -1)
4578 break;
4579
4580 /* When the window is too narrow draw all "@" lines. */
4581 if (draw_state != WL_LINE
4582#ifdef FEAT_DIFF
4583 && filler_todo <= 0
4584#endif
4585 )
4586 {
4587 win_draw_end(wp, '@', ' ', row, wp->w_height, HLF_AT);
4588#ifdef FEAT_VERTSPLIT
4589 draw_vsep_win(wp, row);
4590#endif
4591 row = endrow;
4592 }
4593
4594 /* When line got too long for screen break here. */
4595 if (row == endrow)
4596 {
4597 ++row;
4598 break;
4599 }
4600
4601 if (screen_cur_row == screen_row - 1
4602#ifdef FEAT_DIFF
4603 && filler_todo <= 0
4604#endif
4605 && W_WIDTH(wp) == Columns)
4606 {
4607 /* Remember that the line wraps, used for modeless copy. */
4608 LineWraps[screen_row - 1] = TRUE;
4609
4610 /*
4611 * Special trick to make copy/paste of wrapped lines work with
4612 * xterm/screen: write an extra character beyond the end of
4613 * the line. This will work with all terminal types
4614 * (regardless of the xn,am settings).
4615 * Only do this on a fast tty.
4616 * Only do this if the cursor is on the current line
4617 * (something has been written in it).
4618 * Don't do this for the GUI.
4619 * Don't do this for double-width characters.
4620 * Don't do this for a window not at the right screen border.
4621 */
4622 if (p_tf
4623#ifdef FEAT_GUI
4624 && !gui.in_use
4625#endif
4626#ifdef FEAT_MBYTE
4627 && !(has_mbyte
4628 && ((*mb_off2cells)(LineOffset[screen_row]) == 2
4629 || (*mb_off2cells)(LineOffset[screen_row - 1]
4630 + (int)Columns - 2) == 2))
4631#endif
4632 )
4633 {
4634 /* First make sure we are at the end of the screen line,
4635 * then output the same character again to let the
4636 * terminal know about the wrap. If the terminal doesn't
4637 * auto-wrap, we overwrite the character. */
4638 if (screen_cur_col != W_WIDTH(wp))
4639 screen_char(LineOffset[screen_row - 1]
4640 + (unsigned)Columns - 1,
4641 screen_row - 1, (int)(Columns - 1));
4642
4643#ifdef FEAT_MBYTE
4644 /* When there is a multi-byte character, just output a
4645 * space to keep it simple. */
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004646 if (has_mbyte && MB_BYTE2LEN(ScreenLines[LineOffset[
4647 screen_row - 1] + (Columns - 1)]) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 out_char(' ');
4649 else
4650#endif
4651 out_char(ScreenLines[LineOffset[screen_row - 1]
4652 + (Columns - 1)]);
4653 /* force a redraw of the first char on the next line */
4654 ScreenAttrs[LineOffset[screen_row]] = (sattr_T)-1;
4655 screen_start(); /* don't know where cursor is now */
4656 }
4657 }
4658
4659 col = 0;
4660 off = (unsigned)(current_ScreenLine - ScreenLines);
4661#ifdef FEAT_RIGHTLEFT
4662 if (wp->w_p_rl)
4663 {
4664 col = W_WIDTH(wp) - 1; /* col is not used if breaking! */
4665 off += col;
4666 }
4667#endif
4668
4669 /* reset the drawing state for the start of a wrapped line */
4670 draw_state = WL_START;
4671 saved_n_extra = n_extra;
4672 saved_p_extra = p_extra;
4673 saved_c_extra = c_extra;
4674 saved_char_attr = char_attr;
4675 n_extra = 0;
4676 lcs_prec_todo = lcs_prec;
4677#ifdef FEAT_LINEBREAK
4678# ifdef FEAT_DIFF
4679 if (filler_todo <= 0)
4680# endif
4681 need_showbreak = TRUE;
4682#endif
4683#ifdef FEAT_DIFF
4684 --filler_todo;
4685 /* When the filler lines are actually below the last line of the
4686 * file, don't draw the line itself, break here. */
4687 if (filler_todo == 0 && wp->w_botfill)
4688 break;
4689#endif
4690 }
4691
4692 } /* for every character in the line */
4693
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004694#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00004695 /* After an empty line check first word for capital. */
4696 if (*skipwhite(line) == NUL)
4697 {
4698 capcol_lnum = lnum + 1;
4699 cap_col = 0;
4700 }
4701#endif
4702
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 return row;
4704}
4705
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004706#ifdef FEAT_MBYTE
4707static int comp_char_differs __ARGS((int, int));
4708
4709/*
4710 * Return if the composing characters at "off_from" and "off_to" differ.
4711 */
4712 static int
4713comp_char_differs(off_from, off_to)
4714 int off_from;
4715 int off_to;
4716{
4717 int i;
4718
4719 for (i = 0; i < Screen_mco; ++i)
4720 {
4721 if (ScreenLinesC[i][off_from] != ScreenLinesC[i][off_to])
4722 return TRUE;
4723 if (ScreenLinesC[i][off_from] == 0)
4724 break;
4725 }
4726 return FALSE;
4727}
4728#endif
4729
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730/*
4731 * Check whether the given character needs redrawing:
4732 * - the (first byte of the) character is different
4733 * - the attributes are different
4734 * - the character is multi-byte and the next byte is different
4735 */
4736 static int
4737char_needs_redraw(off_from, off_to, cols)
4738 int off_from;
4739 int off_to;
4740 int cols;
4741{
4742 if (cols > 0
4743 && ((ScreenLines[off_from] != ScreenLines[off_to]
4744 || ScreenAttrs[off_from] != ScreenAttrs[off_to])
4745
4746#ifdef FEAT_MBYTE
4747 || (enc_dbcs != 0
4748 && MB_BYTE2LEN(ScreenLines[off_from]) > 1
4749 && (enc_dbcs == DBCS_JPNU && ScreenLines[off_from] == 0x8e
4750 ? ScreenLines2[off_from] != ScreenLines2[off_to]
4751 : (cols > 1 && ScreenLines[off_from + 1]
4752 != ScreenLines[off_to + 1])))
4753 || (enc_utf8
4754 && (ScreenLinesUC[off_from] != ScreenLinesUC[off_to]
4755 || (ScreenLinesUC[off_from] != 0
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004756 && comp_char_differs(off_from, off_to))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757#endif
4758 ))
4759 return TRUE;
4760 return FALSE;
4761}
4762
4763/*
4764 * Move one "cooked" screen line to the screen, but only the characters that
4765 * have actually changed. Handle insert/delete character.
4766 * "coloff" gives the first column on the screen for this line.
4767 * "endcol" gives the columns where valid characters are.
4768 * "clear_width" is the width of the window. It's > 0 if the rest of the line
4769 * needs to be cleared, negative otherwise.
4770 * "rlflag" is TRUE in a rightleft window:
4771 * When TRUE and "clear_width" > 0, clear columns 0 to "endcol"
4772 * When FALSE and "clear_width" > 0, clear columns "endcol" to "clear_width"
4773 */
4774 static void
4775screen_line(row, coloff, endcol, clear_width
4776#ifdef FEAT_RIGHTLEFT
4777 , rlflag
4778#endif
4779 )
4780 int row;
4781 int coloff;
4782 int endcol;
4783 int clear_width;
4784#ifdef FEAT_RIGHTLEFT
4785 int rlflag;
4786#endif
4787{
4788 unsigned off_from;
4789 unsigned off_to;
4790 int col = 0;
4791#if defined(FEAT_GUI) || defined(UNIX) || defined(FEAT_VERTSPLIT)
4792 int hl;
4793#endif
4794 int force = FALSE; /* force update rest of the line */
4795 int redraw_this /* bool: does character need redraw? */
4796#ifdef FEAT_GUI
4797 = TRUE /* For GUI when while-loop empty */
4798#endif
4799 ;
4800 int redraw_next; /* redraw_this for next character */
4801#ifdef FEAT_MBYTE
4802 int clear_next = FALSE;
4803 int char_cells; /* 1: normal char */
4804 /* 2: occupies two display cells */
4805# define CHAR_CELLS char_cells
4806#else
4807# define CHAR_CELLS 1
4808#endif
4809
4810# ifdef FEAT_CLIPBOARD
4811 clip_may_clear_selection(row, row);
4812# endif
4813
4814 off_from = (unsigned)(current_ScreenLine - ScreenLines);
4815 off_to = LineOffset[row] + coloff;
4816
4817#ifdef FEAT_RIGHTLEFT
4818 if (rlflag)
4819 {
4820 /* Clear rest first, because it's left of the text. */
4821 if (clear_width > 0)
4822 {
4823 while (col <= endcol && ScreenLines[off_to] == ' '
4824 && ScreenAttrs[off_to] == 0
4825# ifdef FEAT_MBYTE
4826 && (!enc_utf8 || ScreenLinesUC[off_to] == 0)
4827# endif
4828 )
4829 {
4830 ++off_to;
4831 ++col;
4832 }
4833 if (col <= endcol)
4834 screen_fill(row, row + 1, col + coloff,
4835 endcol + coloff + 1, ' ', ' ', 0);
4836 }
4837 col = endcol + 1;
4838 off_to = LineOffset[row] + col + coloff;
4839 off_from += col;
4840 endcol = (clear_width > 0 ? clear_width : -clear_width);
4841 }
4842#endif /* FEAT_RIGHTLEFT */
4843
4844 redraw_next = char_needs_redraw(off_from, off_to, endcol - col);
4845
4846 while (col < endcol)
4847 {
4848#ifdef FEAT_MBYTE
4849 if (has_mbyte && (col + 1 < endcol))
4850 char_cells = (*mb_off2cells)(off_from);
4851 else
4852 char_cells = 1;
4853#endif
4854
4855 redraw_this = redraw_next;
4856 redraw_next = force || char_needs_redraw(off_from + CHAR_CELLS,
4857 off_to + CHAR_CELLS, endcol - col - CHAR_CELLS);
4858
4859#ifdef FEAT_GUI
4860 /* If the next character was bold, then redraw the current character to
4861 * remove any pixels that might have spilt over into us. This only
4862 * happens in the GUI.
4863 */
4864 if (redraw_next && gui.in_use)
4865 {
4866 hl = ScreenAttrs[off_to + CHAR_CELLS];
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004867 if (hl > HL_ALL)
4868 hl = syn_attr2attr(hl);
4869 if (hl & HL_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 redraw_this = TRUE;
4871 }
4872#endif
4873
4874 if (redraw_this)
4875 {
4876 /*
4877 * Special handling when 'xs' termcap flag set (hpterm):
4878 * Attributes for characters are stored at the position where the
4879 * cursor is when writing the highlighting code. The
4880 * start-highlighting code must be written with the cursor on the
4881 * first highlighted character. The stop-highlighting code must
4882 * be written with the cursor just after the last highlighted
4883 * character.
4884 * Overwriting a character doesn't remove it's highlighting. Need
4885 * to clear the rest of the line, and force redrawing it
4886 * completely.
4887 */
4888 if ( p_wiv
4889 && !force
4890#ifdef FEAT_GUI
4891 && !gui.in_use
4892#endif
4893 && ScreenAttrs[off_to] != 0
4894 && ScreenAttrs[off_from] != ScreenAttrs[off_to])
4895 {
4896 /*
4897 * Need to remove highlighting attributes here.
4898 */
4899 windgoto(row, col + coloff);
4900 out_str(T_CE); /* clear rest of this screen line */
4901 screen_start(); /* don't know where cursor is now */
4902 force = TRUE; /* force redraw of rest of the line */
4903 redraw_next = TRUE; /* or else next char would miss out */
4904
4905 /*
4906 * If the previous character was highlighted, need to stop
4907 * highlighting at this character.
4908 */
4909 if (col + coloff > 0 && ScreenAttrs[off_to - 1] != 0)
4910 {
4911 screen_attr = ScreenAttrs[off_to - 1];
4912 term_windgoto(row, col + coloff);
4913 screen_stop_highlight();
4914 }
4915 else
4916 screen_attr = 0; /* highlighting has stopped */
4917 }
4918#ifdef FEAT_MBYTE
4919 if (enc_dbcs != 0)
4920 {
4921 /* Check if overwriting a double-byte with a single-byte or
4922 * the other way around requires another character to be
4923 * redrawn. For UTF-8 this isn't needed, because comparing
4924 * ScreenLinesUC[] is sufficient. */
4925 if (char_cells == 1
4926 && col + 1 < endcol
4927 && (*mb_off2cells)(off_to) > 1)
4928 {
4929 /* Writing a single-cell character over a double-cell
4930 * character: need to redraw the next cell. */
4931 ScreenLines[off_to + 1] = 0;
4932 redraw_next = TRUE;
4933 }
4934 else if (char_cells == 2
4935 && col + 2 < endcol
4936 && (*mb_off2cells)(off_to) == 1
4937 && (*mb_off2cells)(off_to + 1) > 1)
4938 {
4939 /* Writing the second half of a double-cell character over
4940 * a double-cell character: need to redraw the second
4941 * cell. */
4942 ScreenLines[off_to + 2] = 0;
4943 redraw_next = TRUE;
4944 }
4945
4946 if (enc_dbcs == DBCS_JPNU)
4947 ScreenLines2[off_to] = ScreenLines2[off_from];
4948 }
4949 /* When writing a single-width character over a double-width
4950 * character and at the end of the redrawn text, need to clear out
4951 * the right halve of the old character.
4952 * Also required when writing the right halve of a double-width
4953 * char over the left halve of an existing one. */
4954 if (has_mbyte && col + char_cells == endcol
4955 && ((char_cells == 1
4956 && (*mb_off2cells)(off_to) > 1)
4957 || (char_cells == 2
4958 && (*mb_off2cells)(off_to) == 1
4959 && (*mb_off2cells)(off_to + 1) > 1)))
4960 clear_next = TRUE;
4961#endif
4962
4963 ScreenLines[off_to] = ScreenLines[off_from];
4964#ifdef FEAT_MBYTE
4965 if (enc_utf8)
4966 {
4967 ScreenLinesUC[off_to] = ScreenLinesUC[off_from];
4968 if (ScreenLinesUC[off_from] != 0)
4969 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004970 int i;
4971
4972 for (i = 0; i < Screen_mco; ++i)
4973 ScreenLinesC[i][off_to] = ScreenLinesC[i][off_from];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 }
4975 }
4976 if (char_cells == 2)
4977 ScreenLines[off_to + 1] = ScreenLines[off_from + 1];
4978#endif
4979
4980#if defined(FEAT_GUI) || defined(UNIX)
4981 /* The bold trick makes a single row of pixels appear in the next
4982 * character. When a bold character is removed, the next
4983 * character should be redrawn too. This happens for our own GUI
4984 * and for some xterms. */
4985 if (
4986# ifdef FEAT_GUI
4987 gui.in_use
4988# endif
4989# if defined(FEAT_GUI) && defined(UNIX)
4990 ||
4991# endif
4992# ifdef UNIX
4993 term_is_xterm
4994# endif
4995 )
4996 {
4997 hl = ScreenAttrs[off_to];
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004998 if (hl > HL_ALL)
4999 hl = syn_attr2attr(hl);
5000 if (hl & HL_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 redraw_next = TRUE;
5002 }
5003#endif
5004 ScreenAttrs[off_to] = ScreenAttrs[off_from];
5005#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005006 /* For simplicity set the attributes of second half of a
5007 * double-wide character equal to the first half. */
5008 if (char_cells == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 ScreenAttrs[off_to + 1] = ScreenAttrs[off_from];
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005010
5011 if (enc_dbcs != 0 && char_cells == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 screen_char_2(off_to, row, col + coloff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 else
5014#endif
5015 screen_char(off_to, row, col + coloff);
5016 }
5017 else if ( p_wiv
5018#ifdef FEAT_GUI
5019 && !gui.in_use
5020#endif
5021 && col + coloff > 0)
5022 {
5023 if (ScreenAttrs[off_to] == ScreenAttrs[off_to - 1])
5024 {
5025 /*
5026 * Don't output stop-highlight when moving the cursor, it will
5027 * stop the highlighting when it should continue.
5028 */
5029 screen_attr = 0;
5030 }
5031 else if (screen_attr != 0)
5032 screen_stop_highlight();
5033 }
5034
5035 off_to += CHAR_CELLS;
5036 off_from += CHAR_CELLS;
5037 col += CHAR_CELLS;
5038 }
5039
5040#ifdef FEAT_MBYTE
5041 if (clear_next)
5042 {
5043 /* Clear the second half of a double-wide character of which the left
5044 * half was overwritten with a single-wide character. */
5045 ScreenLines[off_to] = ' ';
5046 if (enc_utf8)
5047 ScreenLinesUC[off_to] = 0;
5048 screen_char(off_to, row, col + coloff);
5049 }
5050#endif
5051
5052 if (clear_width > 0
5053#ifdef FEAT_RIGHTLEFT
5054 && !rlflag
5055#endif
5056 )
5057 {
5058#ifdef FEAT_GUI
5059 int startCol = col;
5060#endif
5061
5062 /* blank out the rest of the line */
5063 while (col < clear_width && ScreenLines[off_to] == ' '
5064 && ScreenAttrs[off_to] == 0
5065#ifdef FEAT_MBYTE
5066 && (!enc_utf8 || ScreenLinesUC[off_to] == 0)
5067#endif
5068 )
5069 {
5070 ++off_to;
5071 ++col;
5072 }
5073 if (col < clear_width)
5074 {
5075#ifdef FEAT_GUI
5076 /*
5077 * In the GUI, clearing the rest of the line may leave pixels
5078 * behind if the first character cleared was bold. Some bold
5079 * fonts spill over the left. In this case we redraw the previous
5080 * character too. If we didn't skip any blanks above, then we
5081 * only redraw if the character wasn't already redrawn anyway.
5082 */
Bram Moolenaar9c697322006-10-09 20:11:17 +00005083 if (gui.in_use && (col > startCol || !redraw_this))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 {
5085 hl = ScreenAttrs[off_to];
5086 if (hl > HL_ALL || (hl & HL_BOLD))
Bram Moolenaar9c697322006-10-09 20:11:17 +00005087 {
5088 int prev_cells = 1;
5089# ifdef FEAT_MBYTE
5090 if (enc_utf8)
5091 /* for utf-8, ScreenLines[char_offset + 1] == 0 means
5092 * that its width is 2. */
5093 prev_cells = ScreenLines[off_to - 1] == 0 ? 2 : 1;
5094 else if (enc_dbcs != 0)
5095 {
5096 /* find previous character by counting from first
5097 * column and get its width. */
5098 unsigned off = LineOffset[row];
5099
5100 while (off < off_to)
5101 {
5102 prev_cells = (*mb_off2cells)(off);
5103 off += prev_cells;
5104 }
5105 }
5106
5107 if (enc_dbcs != 0 && prev_cells > 1)
5108 screen_char_2(off_to - prev_cells, row,
5109 col + coloff - prev_cells);
5110 else
5111# endif
5112 screen_char(off_to - prev_cells, row,
5113 col + coloff - prev_cells);
5114 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 }
5116#endif
5117 screen_fill(row, row + 1, col + coloff, clear_width + coloff,
5118 ' ', ' ', 0);
5119#ifdef FEAT_VERTSPLIT
5120 off_to += clear_width - col;
5121 col = clear_width;
5122#endif
5123 }
5124 }
5125
5126 if (clear_width > 0)
5127 {
5128#ifdef FEAT_VERTSPLIT
5129 /* For a window that's left of another, draw the separator char. */
5130 if (col + coloff < Columns)
5131 {
5132 int c;
5133
5134 c = fillchar_vsep(&hl);
5135 if (ScreenLines[off_to] != c
5136# ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005137 || (enc_utf8 && (int)ScreenLinesUC[off_to]
5138 != (c >= 0x80 ? c : 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139# endif
5140 || ScreenAttrs[off_to] != hl)
5141 {
5142 ScreenLines[off_to] = c;
5143 ScreenAttrs[off_to] = hl;
5144# ifdef FEAT_MBYTE
5145 if (enc_utf8)
5146 {
5147 if (c >= 0x80)
5148 {
5149 ScreenLinesUC[off_to] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005150 ScreenLinesC[0][off_to] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 }
5152 else
5153 ScreenLinesUC[off_to] = 0;
5154 }
5155# endif
5156 screen_char(off_to, row, col + coloff);
5157 }
5158 }
5159 else
5160#endif
5161 LineWraps[row] = FALSE;
5162 }
5163}
5164
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005165#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005167 * Mirror text "str" for right-left displaying.
5168 * Only works for single-byte characters (e.g., numbers).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005170 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171rl_mirror(str)
5172 char_u *str;
5173{
5174 char_u *p1, *p2;
5175 int t;
5176
5177 for (p1 = str, p2 = str + STRLEN(str) - 1; p1 < p2; ++p1, --p2)
5178 {
5179 t = *p1;
5180 *p1 = *p2;
5181 *p2 = t;
5182 }
5183}
5184#endif
5185
5186#if defined(FEAT_WINDOWS) || defined(PROTO)
5187/*
5188 * mark all status lines for redraw; used after first :cd
5189 */
5190 void
5191status_redraw_all()
5192{
5193 win_T *wp;
5194
5195 for (wp = firstwin; wp; wp = wp->w_next)
5196 if (wp->w_status_height)
5197 {
5198 wp->w_redr_status = TRUE;
5199 redraw_later(VALID);
5200 }
5201}
5202
5203/*
5204 * mark all status lines of the current buffer for redraw
5205 */
5206 void
5207status_redraw_curbuf()
5208{
5209 win_T *wp;
5210
5211 for (wp = firstwin; wp; wp = wp->w_next)
5212 if (wp->w_status_height != 0 && wp->w_buffer == curbuf)
5213 {
5214 wp->w_redr_status = TRUE;
5215 redraw_later(VALID);
5216 }
5217}
5218
5219/*
5220 * Redraw all status lines that need to be redrawn.
5221 */
5222 void
5223redraw_statuslines()
5224{
5225 win_T *wp;
5226
5227 for (wp = firstwin; wp; wp = wp->w_next)
5228 if (wp->w_redr_status)
5229 win_redr_status(wp);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005230 if (redraw_tabline)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005231 draw_tabline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232}
5233#endif
5234
5235#if (defined(FEAT_WILDMENU) && defined(FEAT_VERTSPLIT)) || defined(PROTO)
5236/*
5237 * Redraw all status lines at the bottom of frame "frp".
5238 */
5239 void
5240win_redraw_last_status(frp)
5241 frame_T *frp;
5242{
5243 if (frp->fr_layout == FR_LEAF)
5244 frp->fr_win->w_redr_status = TRUE;
5245 else if (frp->fr_layout == FR_ROW)
5246 {
5247 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
5248 win_redraw_last_status(frp);
5249 }
5250 else /* frp->fr_layout == FR_COL */
5251 {
5252 frp = frp->fr_child;
5253 while (frp->fr_next != NULL)
5254 frp = frp->fr_next;
5255 win_redraw_last_status(frp);
5256 }
5257}
5258#endif
5259
5260#ifdef FEAT_VERTSPLIT
5261/*
5262 * Draw the verticap separator right of window "wp" starting with line "row".
5263 */
5264 static void
5265draw_vsep_win(wp, row)
5266 win_T *wp;
5267 int row;
5268{
5269 int hl;
5270 int c;
5271
5272 if (wp->w_vsep_width)
5273 {
5274 /* draw the vertical separator right of this window */
5275 c = fillchar_vsep(&hl);
5276 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height,
5277 W_ENDCOL(wp), W_ENDCOL(wp) + 1,
5278 c, ' ', hl);
5279 }
5280}
5281#endif
5282
5283#ifdef FEAT_WILDMENU
5284static int status_match_len __ARGS((expand_T *xp, char_u *s));
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005285static int skip_status_match_char __ARGS((expand_T *xp, char_u *s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286
5287/*
5288 * Get the lenght of an item as it will be shown in the status line.
5289 */
5290 static int
5291status_match_len(xp, s)
5292 expand_T *xp;
5293 char_u *s;
5294{
5295 int len = 0;
5296
5297#ifdef FEAT_MENU
5298 int emenu = (xp->xp_context == EXPAND_MENUS
5299 || xp->xp_context == EXPAND_MENUNAMES);
5300
5301 /* Check for menu separators - replace with '|'. */
5302 if (emenu && menu_is_separator(s))
5303 return 1;
5304#endif
5305
5306 while (*s != NUL)
5307 {
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005308 if (skip_status_match_char(xp, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 ++s;
Bram Moolenaar81695252004-12-29 20:58:21 +00005310 len += ptr2cells(s);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005311 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 }
5313
5314 return len;
5315}
5316
5317/*
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005318 * Return TRUE for characters that are not displayed in a status match.
5319 * These are backslashes used for escaping. Do show backslashes in help tags.
5320 */
5321 static int
5322skip_status_match_char(xp, s)
5323 expand_T *xp;
5324 char_u *s;
5325{
5326 return ((rem_backslash(s) && xp->xp_context != EXPAND_HELP)
5327#ifdef FEAT_MENU
5328 || ((xp->xp_context == EXPAND_MENUS
5329 || xp->xp_context == EXPAND_MENUNAMES)
5330 && (s[0] == '\t' || (s[0] == '\\' && s[1] != NUL)))
5331#endif
5332 );
5333}
5334
5335/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 * Show wildchar matches in the status line.
5337 * Show at least the "match" item.
5338 * We start at item 'first_match' in the list and show all matches that fit.
5339 *
5340 * If inversion is possible we use it. Else '=' characters are used.
5341 */
5342 void
5343win_redr_status_matches(xp, num_matches, matches, match, showtail)
5344 expand_T *xp;
5345 int num_matches;
5346 char_u **matches; /* list of matches */
5347 int match;
5348 int showtail;
5349{
5350#define L_MATCH(m) (showtail ? sm_gettail(matches[m]) : matches[m])
5351 int row;
5352 char_u *buf;
5353 int len;
5354 int clen; /* lenght in screen cells */
5355 int fillchar;
5356 int attr;
5357 int i;
5358 int highlight = TRUE;
5359 char_u *selstart = NULL;
5360 int selstart_col = 0;
5361 char_u *selend = NULL;
5362 static int first_match = 0;
5363 int add_left = FALSE;
5364 char_u *s;
5365#ifdef FEAT_MENU
5366 int emenu;
5367#endif
5368#if defined(FEAT_MBYTE) || defined(FEAT_MENU)
5369 int l;
5370#endif
5371
5372 if (matches == NULL) /* interrupted completion? */
5373 return;
5374
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005375#ifdef FEAT_MBYTE
5376 if (has_mbyte)
5377 buf = alloc((unsigned)Columns * MB_MAXBYTES + 1);
5378 else
5379#endif
5380 buf = alloc((unsigned)Columns + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 if (buf == NULL)
5382 return;
5383
5384 if (match == -1) /* don't show match but original text */
5385 {
5386 match = 0;
5387 highlight = FALSE;
5388 }
5389 /* count 1 for the ending ">" */
5390 clen = status_match_len(xp, L_MATCH(match)) + 3;
5391 if (match == 0)
5392 first_match = 0;
5393 else if (match < first_match)
5394 {
5395 /* jumping left, as far as we can go */
5396 first_match = match;
5397 add_left = TRUE;
5398 }
5399 else
5400 {
5401 /* check if match fits on the screen */
5402 for (i = first_match; i < match; ++i)
5403 clen += status_match_len(xp, L_MATCH(i)) + 2;
5404 if (first_match > 0)
5405 clen += 2;
5406 /* jumping right, put match at the left */
5407 if ((long)clen > Columns)
5408 {
5409 first_match = match;
5410 /* if showing the last match, we can add some on the left */
5411 clen = 2;
5412 for (i = match; i < num_matches; ++i)
5413 {
5414 clen += status_match_len(xp, L_MATCH(i)) + 2;
5415 if ((long)clen >= Columns)
5416 break;
5417 }
5418 if (i == num_matches)
5419 add_left = TRUE;
5420 }
5421 }
5422 if (add_left)
5423 while (first_match > 0)
5424 {
5425 clen += status_match_len(xp, L_MATCH(first_match - 1)) + 2;
5426 if ((long)clen >= Columns)
5427 break;
5428 --first_match;
5429 }
5430
5431 fillchar = fillchar_status(&attr, TRUE);
5432
5433 if (first_match == 0)
5434 {
5435 *buf = NUL;
5436 len = 0;
5437 }
5438 else
5439 {
5440 STRCPY(buf, "< ");
5441 len = 2;
5442 }
5443 clen = len;
5444
5445 i = first_match;
5446 while ((long)(clen + status_match_len(xp, L_MATCH(i)) + 2) < Columns)
5447 {
5448 if (i == match)
5449 {
5450 selstart = buf + len;
5451 selstart_col = clen;
5452 }
5453
5454 s = L_MATCH(i);
5455 /* Check for menu separators - replace with '|' */
5456#ifdef FEAT_MENU
5457 emenu = (xp->xp_context == EXPAND_MENUS
5458 || xp->xp_context == EXPAND_MENUNAMES);
5459 if (emenu && menu_is_separator(s))
5460 {
5461 STRCPY(buf + len, transchar('|'));
5462 l = (int)STRLEN(buf + len);
5463 len += l;
5464 clen += l;
5465 }
5466 else
5467#endif
5468 for ( ; *s != NUL; ++s)
5469 {
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005470 if (skip_status_match_char(xp, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 ++s;
5472 clen += ptr2cells(s);
5473#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005474 if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 {
5476 STRNCPY(buf + len, s, l);
5477 s += l - 1;
5478 len += l;
5479 }
5480 else
5481#endif
5482 {
5483 STRCPY(buf + len, transchar_byte(*s));
5484 len += (int)STRLEN(buf + len);
5485 }
5486 }
5487 if (i == match)
5488 selend = buf + len;
5489
5490 *(buf + len++) = ' ';
5491 *(buf + len++) = ' ';
5492 clen += 2;
5493 if (++i == num_matches)
5494 break;
5495 }
5496
5497 if (i != num_matches)
5498 {
5499 *(buf + len++) = '>';
5500 ++clen;
5501 }
5502
5503 buf[len] = NUL;
5504
5505 row = cmdline_row - 1;
5506 if (row >= 0)
5507 {
5508 if (wild_menu_showing == 0)
5509 {
5510 if (msg_scrolled > 0)
5511 {
5512 /* Put the wildmenu just above the command line. If there is
5513 * no room, scroll the screen one line up. */
5514 if (cmdline_row == Rows - 1)
5515 {
5516 screen_del_lines(0, 0, 1, (int)Rows, TRUE, NULL);
5517 ++msg_scrolled;
5518 }
5519 else
5520 {
5521 ++cmdline_row;
5522 ++row;
5523 }
5524 wild_menu_showing = WM_SCROLLED;
5525 }
5526 else
5527 {
5528 /* Create status line if needed by setting 'laststatus' to 2.
5529 * Set 'winminheight' to zero to avoid that the window is
5530 * resized. */
5531 if (lastwin->w_status_height == 0)
5532 {
5533 save_p_ls = p_ls;
5534 save_p_wmh = p_wmh;
5535 p_ls = 2;
5536 p_wmh = 0;
5537 last_status(FALSE);
5538 }
5539 wild_menu_showing = WM_SHOWN;
5540 }
5541 }
5542
5543 screen_puts(buf, row, 0, attr);
5544 if (selstart != NULL && highlight)
5545 {
5546 *selend = NUL;
5547 screen_puts(selstart, row, selstart_col, hl_attr(HLF_WM));
5548 }
5549
5550 screen_fill(row, row + 1, clen, (int)Columns, fillchar, fillchar, attr);
5551 }
5552
5553#ifdef FEAT_VERTSPLIT
5554 win_redraw_last_status(topframe);
5555#else
5556 lastwin->w_redr_status = TRUE;
5557#endif
5558 vim_free(buf);
5559}
5560#endif
5561
5562#if defined(FEAT_WINDOWS) || defined(PROTO)
5563/*
5564 * Redraw the status line of window wp.
5565 *
5566 * If inversion is possible we use it. Else '=' characters are used.
5567 */
5568 void
5569win_redr_status(wp)
5570 win_T *wp;
5571{
5572 int row;
5573 char_u *p;
5574 int len;
5575 int fillchar;
5576 int attr;
5577 int this_ru_col;
5578
5579 wp->w_redr_status = FALSE;
5580 if (wp->w_status_height == 0)
5581 {
5582 /* no status line, can only be last window */
5583 redraw_cmdline = TRUE;
5584 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005585 else if (!redrawing()
5586#ifdef FEAT_INS_EXPAND
5587 /* don't update status line when popup menu is visible and may be
5588 * drawn over it */
5589 || pum_visible()
5590#endif
5591 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 {
5593 /* Don't redraw right now, do it later. */
5594 wp->w_redr_status = TRUE;
5595 }
5596#ifdef FEAT_STL_OPT
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005597 else if (*p_stl != NUL || *wp->w_p_stl != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 {
5599 /* redraw custom status line */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005600 redraw_custum_statusline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 }
5602#endif
5603 else
5604 {
5605 fillchar = fillchar_status(&attr, wp == curwin);
5606
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005607 get_trans_bufname(wp->w_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 p = NameBuff;
5609 len = (int)STRLEN(p);
5610
5611 if (wp->w_buffer->b_help
5612#ifdef FEAT_QUICKFIX
5613 || wp->w_p_pvw
5614#endif
5615 || bufIsChanged(wp->w_buffer)
5616 || wp->w_buffer->b_p_ro)
5617 *(p + len++) = ' ';
5618 if (wp->w_buffer->b_help)
5619 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00005620 STRCPY(p + len, _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 len += (int)STRLEN(p + len);
5622 }
5623#ifdef FEAT_QUICKFIX
5624 if (wp->w_p_pvw)
5625 {
5626 STRCPY(p + len, _("[Preview]"));
5627 len += (int)STRLEN(p + len);
5628 }
5629#endif
5630 if (bufIsChanged(wp->w_buffer))
5631 {
5632 STRCPY(p + len, "[+]");
5633 len += 3;
5634 }
5635 if (wp->w_buffer->b_p_ro)
5636 {
5637 STRCPY(p + len, "[RO]");
5638 len += 4;
5639 }
5640
5641#ifndef FEAT_VERTSPLIT
5642 this_ru_col = ru_col;
5643 if (this_ru_col < (Columns + 1) / 2)
5644 this_ru_col = (Columns + 1) / 2;
5645#else
5646 this_ru_col = ru_col - (Columns - W_WIDTH(wp));
5647 if (this_ru_col < (W_WIDTH(wp) + 1) / 2)
5648 this_ru_col = (W_WIDTH(wp) + 1) / 2;
5649 if (this_ru_col <= 1)
5650 {
5651 p = (char_u *)"<"; /* No room for file name! */
5652 len = 1;
5653 }
5654 else
5655#endif
5656#ifdef FEAT_MBYTE
5657 if (has_mbyte)
5658 {
5659 int clen = 0, i;
5660
5661 /* Count total number of display cells. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005662 for (i = 0; p[i] != NUL; i += (*mb_ptr2len)(p + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 clen += (*mb_ptr2cells)(p + i);
5664 /* Find first character that will fit.
5665 * Going from start to end is much faster for DBCS. */
5666 for (i = 0; p[i] != NUL && clen >= this_ru_col - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005667 i += (*mb_ptr2len)(p + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 clen -= (*mb_ptr2cells)(p + i);
5669 len = clen;
5670 if (i > 0)
5671 {
5672 p = p + i - 1;
5673 *p = '<';
5674 ++len;
5675 }
5676
5677 }
5678 else
5679#endif
5680 if (len > this_ru_col - 1)
5681 {
5682 p += len - (this_ru_col - 1);
5683 *p = '<';
5684 len = this_ru_col - 1;
5685 }
5686
5687 row = W_WINROW(wp) + wp->w_height;
5688 screen_puts(p, row, W_WINCOL(wp), attr);
5689 screen_fill(row, row + 1, len + W_WINCOL(wp),
5690 this_ru_col + W_WINCOL(wp), fillchar, fillchar, attr);
5691
5692 if (get_keymap_str(wp, NameBuff, MAXPATHL)
5693 && (int)(this_ru_col - len) > (int)(STRLEN(NameBuff) + 1))
5694 screen_puts(NameBuff, row, (int)(this_ru_col - STRLEN(NameBuff)
5695 - 1 + W_WINCOL(wp)), attr);
5696
5697#ifdef FEAT_CMDL_INFO
5698 win_redr_ruler(wp, TRUE);
5699#endif
5700 }
5701
5702#ifdef FEAT_VERTSPLIT
5703 /*
5704 * May need to draw the character below the vertical separator.
5705 */
5706 if (wp->w_vsep_width != 0 && wp->w_status_height != 0 && redrawing())
5707 {
5708 if (stl_connected(wp))
5709 fillchar = fillchar_status(&attr, wp == curwin);
5710 else
5711 fillchar = fillchar_vsep(&attr);
5712 screen_putchar(fillchar, W_WINROW(wp) + wp->w_height, W_ENDCOL(wp),
5713 attr);
5714 }
5715#endif
5716}
5717
Bram Moolenaar238a5642006-02-21 22:12:05 +00005718#ifdef FEAT_STL_OPT
5719/*
5720 * Redraw the status line according to 'statusline' and take care of any
5721 * errors encountered.
5722 */
5723 static void
5724redraw_custum_statusline(wp)
5725 win_T *wp;
5726{
5727 int save_called_emsg = called_emsg;
5728
5729 called_emsg = FALSE;
5730 win_redr_custom(wp, FALSE);
5731 if (called_emsg)
5732 set_string_option_direct((char_u *)"statusline", -1,
5733 (char_u *)"", OPT_FREE | (*wp->w_p_stl != NUL
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005734 ? OPT_LOCAL : OPT_GLOBAL), SID_ERROR);
Bram Moolenaar238a5642006-02-21 22:12:05 +00005735 called_emsg |= save_called_emsg;
5736}
5737#endif
5738
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739# ifdef FEAT_VERTSPLIT
5740/*
5741 * Return TRUE if the status line of window "wp" is connected to the status
5742 * line of the window right of it. If not, then it's a vertical separator.
5743 * Only call if (wp->w_vsep_width != 0).
5744 */
5745 int
5746stl_connected(wp)
5747 win_T *wp;
5748{
5749 frame_T *fr;
5750
5751 fr = wp->w_frame;
5752 while (fr->fr_parent != NULL)
5753 {
5754 if (fr->fr_parent->fr_layout == FR_COL)
5755 {
5756 if (fr->fr_next != NULL)
5757 break;
5758 }
5759 else
5760 {
5761 if (fr->fr_next != NULL)
5762 return TRUE;
5763 }
5764 fr = fr->fr_parent;
5765 }
5766 return FALSE;
5767}
5768# endif
5769
5770#endif /* FEAT_WINDOWS */
5771
5772#if defined(FEAT_WINDOWS) || defined(FEAT_STL_OPT) || defined(PROTO)
5773/*
5774 * Get the value to show for the language mappings, active 'keymap'.
5775 */
5776 int
5777get_keymap_str(wp, buf, len)
5778 win_T *wp;
5779 char_u *buf; /* buffer for the result */
5780 int len; /* length of buffer */
5781{
5782 char_u *p;
5783
5784 if (wp->w_buffer->b_p_iminsert != B_IMODE_LMAP)
5785 return FALSE;
5786
5787 {
5788#ifdef FEAT_EVAL
5789 buf_T *old_curbuf = curbuf;
5790 win_T *old_curwin = curwin;
5791 char_u *s;
5792
5793 curbuf = wp->w_buffer;
5794 curwin = wp;
5795 STRCPY(buf, "b:keymap_name"); /* must be writable */
5796 ++emsg_skip;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005797 s = p = eval_to_string(buf, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 --emsg_skip;
5799 curbuf = old_curbuf;
5800 curwin = old_curwin;
5801 if (p == NULL || *p == NUL)
5802#endif
5803 {
5804#ifdef FEAT_KEYMAP
5805 if (wp->w_buffer->b_kmap_state & KEYMAP_LOADED)
5806 p = wp->w_buffer->b_p_keymap;
5807 else
5808#endif
5809 p = (char_u *)"lang";
5810 }
5811 if ((int)(STRLEN(p) + 3) < len)
5812 sprintf((char *)buf, "<%s>", p);
5813 else
5814 buf[0] = NUL;
5815#ifdef FEAT_EVAL
5816 vim_free(s);
5817#endif
5818 }
5819 return buf[0] != NUL;
5820}
5821#endif
5822
5823#if defined(FEAT_STL_OPT) || defined(PROTO)
5824/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005825 * Redraw the status line or ruler of window "wp".
5826 * When "wp" is NULL redraw the tab pages line from 'tabline'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 */
5828 static void
Bram Moolenaar9372a112005-12-06 19:59:18 +00005829win_redr_custom(wp, draw_ruler)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 win_T *wp;
Bram Moolenaar9372a112005-12-06 19:59:18 +00005831 int draw_ruler; /* TRUE or FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832{
5833 int attr;
5834 int curattr;
5835 int row;
5836 int col = 0;
5837 int maxwidth;
5838 int width;
5839 int n;
5840 int len;
5841 int fillchar;
5842 char_u buf[MAXPATHL];
5843 char_u *p;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005844 struct stl_hlrec hltab[STL_MAX_ITEM];
5845 struct stl_hlrec tabtab[STL_MAX_ITEM];
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005846 int use_sandbox = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847
5848 /* setup environment for the task at hand */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005849 if (wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005851 /* Use 'tabline'. Always at the first line of the screen. */
5852 p = p_tal;
5853 row = 0;
Bram Moolenaar65c923a2006-03-03 22:56:30 +00005854 fillchar = ' ';
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005855 attr = hl_attr(HLF_TPF);
5856 maxwidth = Columns;
5857# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005858 use_sandbox = was_set_insecurely((char_u *)"tabline", 0);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005859# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005861 else
5862 {
5863 row = W_WINROW(wp) + wp->w_height;
5864 fillchar = fillchar_status(&attr, wp == curwin);
5865 maxwidth = W_WIDTH(wp);
5866
5867 if (draw_ruler)
5868 {
5869 p = p_ruf;
5870 /* advance past any leading group spec - implicit in ru_col */
5871 if (*p == '%')
5872 {
5873 if (*++p == '-')
5874 p++;
5875 if (atoi((char *) p))
5876 while (VIM_ISDIGIT(*p))
5877 p++;
5878 if (*p++ != '(')
5879 p = p_ruf;
5880 }
5881#ifdef FEAT_VERTSPLIT
5882 col = ru_col - (Columns - W_WIDTH(wp));
5883 if (col < (W_WIDTH(wp) + 1) / 2)
5884 col = (W_WIDTH(wp) + 1) / 2;
5885#else
5886 col = ru_col;
5887 if (col > (Columns + 1) / 2)
5888 col = (Columns + 1) / 2;
5889#endif
5890 maxwidth = W_WIDTH(wp) - col;
5891#ifdef FEAT_WINDOWS
5892 if (!wp->w_status_height)
5893#endif
5894 {
5895 row = Rows - 1;
5896 --maxwidth; /* writing in last column may cause scrolling */
5897 fillchar = ' ';
5898 attr = 0;
5899 }
5900
5901# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005902 use_sandbox = was_set_insecurely((char_u *)"rulerformat", 0);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005903# endif
5904 }
5905 else
5906 {
5907 if (*wp->w_p_stl != NUL)
5908 p = wp->w_p_stl;
5909 else
5910 p = p_stl;
5911# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005912 use_sandbox = was_set_insecurely((char_u *)"statusline",
5913 *wp->w_p_stl == NUL ? 0 : OPT_LOCAL);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005914# endif
5915 }
5916
5917#ifdef FEAT_VERTSPLIT
5918 col += W_WINCOL(wp);
5919#endif
5920 }
5921
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 if (maxwidth <= 0)
5923 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005925 width = build_stl_str_hl(wp == NULL ? curwin : wp,
5926 buf, sizeof(buf),
5927 p, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005928 fillchar, maxwidth, hltab, tabtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005929 len = (int)STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930
5931 while (width < maxwidth && len < sizeof(buf) - 1)
5932 {
5933#ifdef FEAT_MBYTE
5934 len += (*mb_char2bytes)(fillchar, buf + len);
5935#else
5936 buf[len++] = fillchar;
5937#endif
5938 ++width;
5939 }
5940 buf[len] = NUL;
5941
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005942 /*
5943 * Draw each snippet with the specified highlighting.
5944 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 curattr = attr;
5946 p = buf;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005947 for (n = 0; hltab[n].start != NULL; n++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005949 len = (int)(hltab[n].start - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 screen_puts_len(p, len, row, col, curattr);
5951 col += vim_strnsize(p, len);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005952 p = hltab[n].start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005954 if (hltab[n].userhl == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 curattr = attr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005956 else if (hltab[n].userhl < 0)
5957 curattr = syn_id2attr(-hltab[n].userhl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958#ifdef FEAT_WINDOWS
Bram Moolenaar238a5642006-02-21 22:12:05 +00005959 else if (wp != NULL && wp != curwin && wp->w_status_height != 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005960 curattr = highlight_stlnc[hltab[n].userhl - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961#endif
5962 else
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005963 curattr = highlight_user[hltab[n].userhl - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964 }
5965 screen_puts(p, row, col, curattr);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005966
5967 if (wp == NULL)
5968 {
5969 /* Fill the TabPageIdxs[] array for clicking in the tab pagesline. */
5970 col = 0;
5971 len = 0;
5972 p = buf;
5973 fillchar = 0;
5974 for (n = 0; tabtab[n].start != NULL; n++)
5975 {
5976 len += vim_strnsize(p, (int)(tabtab[n].start - p));
5977 while (col < len)
5978 TabPageIdxs[col++] = fillchar;
5979 p = tabtab[n].start;
5980 fillchar = tabtab[n].userhl;
5981 }
5982 while (col < Columns)
5983 TabPageIdxs[col++] = fillchar;
5984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985}
5986
5987#endif /* FEAT_STL_OPT */
5988
5989/*
5990 * Output a single character directly to the screen and update ScreenLines.
5991 */
5992 void
5993screen_putchar(c, row, col, attr)
5994 int c;
5995 int row, col;
5996 int attr;
5997{
5998#ifdef FEAT_MBYTE
5999 char_u buf[MB_MAXBYTES + 1];
6000
6001 buf[(*mb_char2bytes)(c, buf)] = NUL;
6002#else
6003 char_u buf[2];
6004
6005 buf[0] = c;
6006 buf[1] = NUL;
6007#endif
6008 screen_puts(buf, row, col, attr);
6009}
6010
6011/*
6012 * Get a single character directly from ScreenLines into "bytes[]".
6013 * Also return its attribute in *attrp;
6014 */
6015 void
6016screen_getbytes(row, col, bytes, attrp)
6017 int row, col;
6018 char_u *bytes;
6019 int *attrp;
6020{
6021 unsigned off;
6022
6023 /* safety check */
6024 if (ScreenLines != NULL && row < screen_Rows && col < screen_Columns)
6025 {
6026 off = LineOffset[row] + col;
6027 *attrp = ScreenAttrs[off];
6028 bytes[0] = ScreenLines[off];
6029 bytes[1] = NUL;
6030
6031#ifdef FEAT_MBYTE
6032 if (enc_utf8 && ScreenLinesUC[off] != 0)
6033 bytes[utfc_char2bytes(off, bytes)] = NUL;
6034 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
6035 {
6036 bytes[0] = ScreenLines[off];
6037 bytes[1] = ScreenLines2[off];
6038 bytes[2] = NUL;
6039 }
6040 else if (enc_dbcs && MB_BYTE2LEN(bytes[0]) > 1)
6041 {
6042 bytes[1] = ScreenLines[off + 1];
6043 bytes[2] = NUL;
6044 }
6045#endif
6046 }
6047}
6048
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006049#ifdef FEAT_MBYTE
6050static int screen_comp_differs __ARGS((int, int*));
6051
6052/*
6053 * Return TRUE if composing characters for screen posn "off" differs from
6054 * composing characters in "u8cc".
6055 */
6056 static int
6057screen_comp_differs(off, u8cc)
6058 int off;
6059 int *u8cc;
6060{
6061 int i;
6062
6063 for (i = 0; i < Screen_mco; ++i)
6064 {
6065 if (ScreenLinesC[i][off] != (u8char_T)u8cc[i])
6066 return TRUE;
6067 if (u8cc[i] == 0)
6068 break;
6069 }
6070 return FALSE;
6071}
6072#endif
6073
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074/*
6075 * Put string '*text' on the screen at position 'row' and 'col', with
6076 * attributes 'attr', and update ScreenLines[] and ScreenAttrs[].
6077 * Note: only outputs within one row, message is truncated at screen boundary!
6078 * Note: if ScreenLines[], row and/or col is invalid, nothing is done.
6079 */
6080 void
6081screen_puts(text, row, col, attr)
6082 char_u *text;
6083 int row;
6084 int col;
6085 int attr;
6086{
6087 screen_puts_len(text, -1, row, col, attr);
6088}
6089
6090/*
6091 * Like screen_puts(), but output "text[len]". When "len" is -1 output up to
6092 * a NUL.
6093 */
6094 void
6095screen_puts_len(text, len, row, col, attr)
6096 char_u *text;
6097 int len;
6098 int row;
6099 int col;
6100 int attr;
6101{
6102 unsigned off;
6103 char_u *ptr = text;
6104 int c;
6105#ifdef FEAT_MBYTE
6106 int mbyte_blen = 1;
6107 int mbyte_cells = 1;
6108 int u8c = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006109 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 int clear_next_cell = FALSE;
6111# ifdef FEAT_ARABIC
6112 int prev_c = 0; /* previous Arabic character */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006113 int pc, nc, nc1;
6114 int pcc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115# endif
6116#endif
6117
6118 if (ScreenLines == NULL || row >= screen_Rows) /* safety check */
6119 return;
6120
6121 off = LineOffset[row] + col;
6122 while (*ptr != NUL && col < screen_Columns
6123 && (len < 0 || (int)(ptr - text) < len))
6124 {
6125 c = *ptr;
6126#ifdef FEAT_MBYTE
6127 /* check if this is the first byte of a multibyte */
6128 if (has_mbyte)
6129 {
6130 if (enc_utf8 && len > 0)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006131 mbyte_blen = utfc_ptr2len_len(ptr, (int)((text + len) - ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006133 mbyte_blen = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 if (enc_dbcs == DBCS_JPNU && c == 0x8e)
6135 mbyte_cells = 1;
6136 else if (enc_dbcs != 0)
6137 mbyte_cells = mbyte_blen;
6138 else /* enc_utf8 */
6139 {
6140 if (len >= 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006141 u8c = utfc_ptr2char_len(ptr, u8cc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142 (int)((text + len) - ptr));
6143 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006144 u8c = utfc_ptr2char(ptr, u8cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145 mbyte_cells = utf_char2cells(u8c);
6146 /* Non-BMP character: display as ? or fullwidth ?. */
6147 if (u8c >= 0x10000)
6148 {
6149 u8c = (mbyte_cells == 2) ? 0xff1f : (int)'?';
6150 if (attr == 0)
6151 attr = hl_attr(HLF_8);
6152 }
6153# ifdef FEAT_ARABIC
6154 if (p_arshape && !p_tbidi && ARABIC_CHAR(u8c))
6155 {
6156 /* Do Arabic shaping. */
6157 if (len >= 0 && (int)(ptr - text) + mbyte_blen >= len)
6158 {
6159 /* Past end of string to be displayed. */
6160 nc = NUL;
6161 nc1 = NUL;
6162 }
6163 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006164 {
6165 nc = utfc_ptr2char(ptr + mbyte_blen, pcc);
6166 nc1 = pcc[0];
6167 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168 pc = prev_c;
6169 prev_c = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006170 u8c = arabic_shape(u8c, &c, &u8cc[0], nc, nc1, pc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 }
6172 else
6173 prev_c = u8c;
6174# endif
6175 }
6176 }
6177#endif
6178
6179 if (ScreenLines[off] != c
6180#ifdef FEAT_MBYTE
6181 || (mbyte_cells == 2
6182 && ScreenLines[off + 1] != (enc_dbcs ? ptr[1] : 0))
6183 || (enc_dbcs == DBCS_JPNU
6184 && c == 0x8e
6185 && ScreenLines2[off] != ptr[1])
6186 || (enc_utf8
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006187 && (ScreenLinesUC[off] != (u8char_T)u8c
6188 || screen_comp_differs(off, u8cc)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189#endif
6190 || ScreenAttrs[off] != attr
6191 || exmode_active
6192 )
6193 {
6194#if defined(FEAT_GUI) || defined(UNIX)
6195 /* The bold trick makes a single row of pixels appear in the next
6196 * character. When a bold character is removed, the next
6197 * character should be redrawn too. This happens for our own GUI
6198 * and for some xterms.
6199 * Force the redraw by setting the attribute to a different value
6200 * than "attr", the contents of ScreenLines[] may be needed by
6201 * mb_off2cells() further on.
6202 * Don't do this for the last drawn character, because the next
6203 * character may not be redrawn. */
6204 if (
6205# ifdef FEAT_GUI
6206 gui.in_use
6207# endif
6208# if defined(FEAT_GUI) && defined(UNIX)
6209 ||
6210# endif
6211# ifdef UNIX
6212 term_is_xterm
6213# endif
6214 )
6215 {
6216 int n;
6217
6218 n = ScreenAttrs[off];
6219# ifdef FEAT_MBYTE
6220 if (col + mbyte_cells < screen_Columns
6221 && (n > HL_ALL || (n & HL_BOLD))
6222 && (len < 0 ? ptr[mbyte_blen] != NUL
6223 : ptr + mbyte_blen < text + len))
6224 ScreenAttrs[off + mbyte_cells] = attr + 1;
6225# else
6226 if (col + 1 < screen_Columns
6227 && (n > HL_ALL || (n & HL_BOLD))
6228 && (len < 0 ? ptr[1] != NUL : ptr + 1 < text + len))
6229 ScreenLines[off + 1] = 0;
6230# endif
6231 }
6232#endif
6233#ifdef FEAT_MBYTE
6234 /* When at the end of the text and overwriting a two-cell
6235 * character with a one-cell character, need to clear the next
6236 * cell. Also when overwriting the left halve of a two-cell char
6237 * with the right halve of a two-cell char. Do this only once
6238 * (mb_off2cells() may return 2 on the right halve). */
6239 if (clear_next_cell)
6240 clear_next_cell = FALSE;
6241 else if (has_mbyte
6242 && (len < 0 ? ptr[mbyte_blen] == NUL
6243 : ptr + mbyte_blen >= text + len)
6244 && ((mbyte_cells == 1 && (*mb_off2cells)(off) > 1)
6245 || (mbyte_cells == 2
6246 && (*mb_off2cells)(off) == 1
6247 && (*mb_off2cells)(off + 1) > 1)))
6248 clear_next_cell = TRUE;
6249
6250 /* Make sure we never leave a second byte of a double-byte behind,
6251 * it confuses mb_off2cells(). */
6252 if (enc_dbcs
6253 && ((mbyte_cells == 1 && (*mb_off2cells)(off) > 1)
6254 || (mbyte_cells == 2
6255 && (*mb_off2cells)(off) == 1
6256 && (*mb_off2cells)(off + 1) > 1)))
6257 ScreenLines[off + mbyte_blen] = 0;
6258#endif
6259 ScreenLines[off] = c;
6260 ScreenAttrs[off] = attr;
6261#ifdef FEAT_MBYTE
6262 if (enc_utf8)
6263 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006264 if (c < 0x80 && u8cc[0] == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265 ScreenLinesUC[off] = 0;
6266 else
6267 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006268 int i;
6269
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270 ScreenLinesUC[off] = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006271 for (i = 0; i < Screen_mco; ++i)
6272 {
6273 ScreenLinesC[i][off] = u8cc[i];
6274 if (u8cc[i] == 0)
6275 break;
6276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 }
6278 if (mbyte_cells == 2)
6279 {
6280 ScreenLines[off + 1] = 0;
6281 ScreenAttrs[off + 1] = attr;
6282 }
6283 screen_char(off, row, col);
6284 }
6285 else if (mbyte_cells == 2)
6286 {
6287 ScreenLines[off + 1] = ptr[1];
6288 ScreenAttrs[off + 1] = attr;
6289 screen_char_2(off, row, col);
6290 }
6291 else if (enc_dbcs == DBCS_JPNU && c == 0x8e)
6292 {
6293 ScreenLines2[off] = ptr[1];
6294 screen_char(off, row, col);
6295 }
6296 else
6297#endif
6298 screen_char(off, row, col);
6299 }
6300#ifdef FEAT_MBYTE
6301 if (has_mbyte)
6302 {
6303 off += mbyte_cells;
6304 col += mbyte_cells;
6305 ptr += mbyte_blen;
6306 if (clear_next_cell)
6307 ptr = (char_u *)" ";
6308 }
6309 else
6310#endif
6311 {
6312 ++off;
6313 ++col;
6314 ++ptr;
6315 }
6316 }
6317}
6318
6319#ifdef FEAT_SEARCH_EXTRA
6320/*
6321 * Prepare for 'searchhl' highlighting.
6322 */
6323 static void
6324start_search_hl()
6325{
6326 if (p_hls && !no_hlsearch)
6327 {
6328 last_pat_prog(&search_hl.rm);
6329 search_hl.attr = hl_attr(HLF_L);
6330 }
6331}
6332
6333/*
6334 * Clean up for 'searchhl' highlighting.
6335 */
6336 static void
6337end_search_hl()
6338{
6339 if (search_hl.rm.regprog != NULL)
6340 {
6341 vim_free(search_hl.rm.regprog);
6342 search_hl.rm.regprog = NULL;
6343 }
6344}
6345
6346/*
6347 * Advance to the match in window "wp" line "lnum" or past it.
6348 */
6349 static void
6350prepare_search_hl(wp, lnum)
6351 win_T *wp;
6352 linenr_T lnum;
6353{
6354 match_T *shl; /* points to search_hl or match_hl */
6355 int n;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00006356 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357
6358 /*
6359 * When using a multi-line pattern, start searching at the top
6360 * of the window or just after a closed fold.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00006361 * Do this both for search_hl and match_hl[3].
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00006363 for (i = 3; i >= 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 {
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00006365 shl = (i == 3) ? &search_hl : &match_hl[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 if (shl->rm.regprog != NULL
6367 && shl->lnum == 0
6368 && re_multiline(shl->rm.regprog))
6369 {
6370 if (shl->first_lnum == 0)
6371 {
6372# ifdef FEAT_FOLDING
6373 for (shl->first_lnum = lnum;
6374 shl->first_lnum > wp->w_topline; --shl->first_lnum)
6375 if (hasFoldingWin(wp, shl->first_lnum - 1,
6376 NULL, NULL, TRUE, NULL))
6377 break;
6378# else
6379 shl->first_lnum = wp->w_topline;
6380# endif
6381 }
6382 n = 0;
6383 while (shl->first_lnum < lnum && shl->rm.regprog != NULL)
6384 {
6385 next_search_hl(wp, shl, shl->first_lnum, (colnr_T)n);
6386 if (shl->lnum != 0)
6387 {
6388 shl->first_lnum = shl->lnum
6389 + shl->rm.endpos[0].lnum
6390 - shl->rm.startpos[0].lnum;
6391 n = shl->rm.endpos[0].col;
6392 }
6393 else
6394 {
6395 ++shl->first_lnum;
6396 n = 0;
6397 }
6398 }
6399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 }
6401}
6402
6403/*
6404 * Search for a next 'searchl' or ":match" match.
6405 * Uses shl->buf.
6406 * Sets shl->lnum and shl->rm contents.
6407 * Note: Assumes a previous match is always before "lnum", unless
6408 * shl->lnum is zero.
6409 * Careful: Any pointers for buffer lines will become invalid.
6410 */
6411 static void
6412next_search_hl(win, shl, lnum, mincol)
6413 win_T *win;
6414 match_T *shl; /* points to search_hl or match_hl */
6415 linenr_T lnum;
6416 colnr_T mincol; /* minimal column for a match */
6417{
6418 linenr_T l;
6419 colnr_T matchcol;
6420 long nmatched;
6421
6422 if (shl->lnum != 0)
6423 {
6424 /* Check for three situations:
6425 * 1. If the "lnum" is below a previous match, start a new search.
6426 * 2. If the previous match includes "mincol", use it.
6427 * 3. Continue after the previous match.
6428 */
6429 l = shl->lnum + shl->rm.endpos[0].lnum - shl->rm.startpos[0].lnum;
6430 if (lnum > l)
6431 shl->lnum = 0;
6432 else if (lnum < l || shl->rm.endpos[0].col > mincol)
6433 return;
6434 }
6435
6436 /*
6437 * Repeat searching for a match until one is found that includes "mincol"
6438 * or none is found in this line.
6439 */
6440 called_emsg = FALSE;
6441 for (;;)
6442 {
6443 /* Three situations:
6444 * 1. No useful previous match: search from start of line.
6445 * 2. Not Vi compatible or empty match: continue at next character.
6446 * Break the loop if this is beyond the end of the line.
6447 * 3. Vi compatible searching: continue at end of previous match.
6448 */
6449 if (shl->lnum == 0)
6450 matchcol = 0;
6451 else if (vim_strchr(p_cpo, CPO_SEARCH) == NULL
6452 || (shl->rm.endpos[0].lnum == 0
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006453 && shl->rm.endpos[0].col <= shl->rm.startpos[0].col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006455 char_u *ml;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006456
6457 matchcol = shl->rm.startpos[0].col;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006458 ml = ml_get_buf(shl->buf, lnum, FALSE) + matchcol;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006459 if (*ml == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006461 ++matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462 shl->lnum = 0;
6463 break;
6464 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006465#ifdef FEAT_MBYTE
6466 if (has_mbyte)
6467 matchcol += mb_ptr2len(ml);
6468 else
6469#endif
6470 ++matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471 }
6472 else
6473 matchcol = shl->rm.endpos[0].col;
6474
6475 shl->lnum = lnum;
6476 nmatched = vim_regexec_multi(&shl->rm, win, shl->buf, lnum, matchcol);
6477 if (called_emsg)
6478 {
6479 /* Error while handling regexp: stop using this regexp. */
6480 vim_free(shl->rm.regprog);
6481 shl->rm.regprog = NULL;
6482 no_hlsearch = TRUE;
6483 break;
6484 }
6485 if (nmatched == 0)
6486 {
6487 shl->lnum = 0; /* no match found */
6488 break;
6489 }
6490 if (shl->rm.startpos[0].lnum > 0
6491 || shl->rm.startpos[0].col >= mincol
6492 || nmatched > 1
6493 || shl->rm.endpos[0].col > mincol)
6494 {
6495 shl->lnum += shl->rm.startpos[0].lnum;
6496 break; /* useful match found */
6497 }
6498 }
6499}
6500#endif
6501
6502 static void
6503screen_start_highlight(attr)
6504 int attr;
6505{
6506 attrentry_T *aep = NULL;
6507
6508 screen_attr = attr;
6509 if (full_screen
6510#ifdef WIN3264
6511 && termcap_active
6512#endif
6513 )
6514 {
6515#ifdef FEAT_GUI
6516 if (gui.in_use)
6517 {
6518 char buf[20];
6519
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006520 /* The GUI handles this internally. */
6521 sprintf(buf, IF_EB("\033|%dh", ESC_STR "|%dh"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 OUT_STR(buf);
6523 }
6524 else
6525#endif
6526 {
6527 if (attr > HL_ALL) /* special HL attr. */
6528 {
6529 if (t_colors > 1)
6530 aep = syn_cterm_attr2entry(attr);
6531 else
6532 aep = syn_term_attr2entry(attr);
6533 if (aep == NULL) /* did ":syntax clear" */
6534 attr = 0;
6535 else
6536 attr = aep->ae_attr;
6537 }
6538 if ((attr & HL_BOLD) && T_MD != NULL) /* bold */
6539 out_str(T_MD);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006540 else if (aep != NULL && t_colors > 1 && aep->ae_u.cterm.fg_color
6541 && cterm_normal_fg_bold)
6542 /* If the Normal FG color has BOLD attribute and the new HL
6543 * has a FG color defined, clear BOLD. */
6544 out_str(T_ME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 if ((attr & HL_STANDOUT) && T_SO != NULL) /* standout */
6546 out_str(T_SO);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006547 if ((attr & (HL_UNDERLINE | HL_UNDERCURL)) && T_US != NULL)
6548 /* underline or undercurl */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 out_str(T_US);
6550 if ((attr & HL_ITALIC) && T_CZH != NULL) /* italic */
6551 out_str(T_CZH);
6552 if ((attr & HL_INVERSE) && T_MR != NULL) /* inverse (reverse) */
6553 out_str(T_MR);
6554
6555 /*
6556 * Output the color or start string after bold etc., in case the
6557 * bold etc. override the color setting.
6558 */
6559 if (aep != NULL)
6560 {
6561 if (t_colors > 1)
6562 {
6563 if (aep->ae_u.cterm.fg_color)
6564 term_fg_color(aep->ae_u.cterm.fg_color - 1);
6565 if (aep->ae_u.cterm.bg_color)
6566 term_bg_color(aep->ae_u.cterm.bg_color - 1);
6567 }
6568 else
6569 {
6570 if (aep->ae_u.term.start != NULL)
6571 out_str(aep->ae_u.term.start);
6572 }
6573 }
6574 }
6575 }
6576}
6577
6578 void
6579screen_stop_highlight()
6580{
6581 int do_ME = FALSE; /* output T_ME code */
6582
6583 if (screen_attr != 0
6584#ifdef WIN3264
6585 && termcap_active
6586#endif
6587 )
6588 {
6589#ifdef FEAT_GUI
6590 if (gui.in_use)
6591 {
6592 char buf[20];
6593
6594 /* use internal GUI code */
6595 sprintf(buf, IF_EB("\033|%dH", ESC_STR "|%dH"), screen_attr);
6596 OUT_STR(buf);
6597 }
6598 else
6599#endif
6600 {
6601 if (screen_attr > HL_ALL) /* special HL attr. */
6602 {
6603 attrentry_T *aep;
6604
6605 if (t_colors > 1)
6606 {
6607 /*
6608 * Assume that t_me restores the original colors!
6609 */
6610 aep = syn_cterm_attr2entry(screen_attr);
6611 if (aep != NULL && (aep->ae_u.cterm.fg_color
6612 || aep->ae_u.cterm.bg_color))
6613 do_ME = TRUE;
6614 }
6615 else
6616 {
6617 aep = syn_term_attr2entry(screen_attr);
6618 if (aep != NULL && aep->ae_u.term.stop != NULL)
6619 {
6620 if (STRCMP(aep->ae_u.term.stop, T_ME) == 0)
6621 do_ME = TRUE;
6622 else
6623 out_str(aep->ae_u.term.stop);
6624 }
6625 }
6626 if (aep == NULL) /* did ":syntax clear" */
6627 screen_attr = 0;
6628 else
6629 screen_attr = aep->ae_attr;
6630 }
6631
6632 /*
6633 * Often all ending-codes are equal to T_ME. Avoid outputting the
6634 * same sequence several times.
6635 */
6636 if (screen_attr & HL_STANDOUT)
6637 {
6638 if (STRCMP(T_SE, T_ME) == 0)
6639 do_ME = TRUE;
6640 else
6641 out_str(T_SE);
6642 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006643 if (screen_attr & (HL_UNDERLINE | HL_UNDERCURL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644 {
6645 if (STRCMP(T_UE, T_ME) == 0)
6646 do_ME = TRUE;
6647 else
6648 out_str(T_UE);
6649 }
6650 if (screen_attr & HL_ITALIC)
6651 {
6652 if (STRCMP(T_CZR, T_ME) == 0)
6653 do_ME = TRUE;
6654 else
6655 out_str(T_CZR);
6656 }
6657 if (do_ME || (screen_attr & (HL_BOLD | HL_INVERSE)))
6658 out_str(T_ME);
6659
6660 if (t_colors > 1)
6661 {
6662 /* set Normal cterm colors */
6663 if (cterm_normal_fg_color != 0)
6664 term_fg_color(cterm_normal_fg_color - 1);
6665 if (cterm_normal_bg_color != 0)
6666 term_bg_color(cterm_normal_bg_color - 1);
6667 if (cterm_normal_fg_bold)
6668 out_str(T_MD);
6669 }
6670 }
6671 }
6672 screen_attr = 0;
6673}
6674
6675/*
6676 * Reset the colors for a cterm. Used when leaving Vim.
6677 * The machine specific code may override this again.
6678 */
6679 void
6680reset_cterm_colors()
6681{
6682 if (t_colors > 1)
6683 {
6684 /* set Normal cterm colors */
6685 if (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0)
6686 {
6687 out_str(T_OP);
6688 screen_attr = -1;
6689 }
6690 if (cterm_normal_fg_bold)
6691 {
6692 out_str(T_ME);
6693 screen_attr = -1;
6694 }
6695 }
6696}
6697
6698/*
6699 * Put character ScreenLines["off"] on the screen at position "row" and "col",
6700 * using the attributes from ScreenAttrs["off"].
6701 */
6702 static void
6703screen_char(off, row, col)
6704 unsigned off;
6705 int row;
6706 int col;
6707{
6708 int attr;
6709
6710 /* Check for illegal values, just in case (could happen just after
6711 * resizing). */
6712 if (row >= screen_Rows || col >= screen_Columns)
6713 return;
6714
6715 /* Outputting the last character on the screen may scrollup the screen.
6716 * Don't to it! Mark the character invalid (update it when scrolled up) */
6717 if (row == screen_Rows - 1 && col == screen_Columns - 1
6718#ifdef FEAT_RIGHTLEFT
6719 /* account for first command-line character in rightleft mode */
6720 && !cmdmsg_rl
6721#endif
6722 )
6723 {
6724 ScreenAttrs[off] = (sattr_T)-1;
6725 return;
6726 }
6727
6728 /*
6729 * Stop highlighting first, so it's easier to move the cursor.
6730 */
6731#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT)
6732 if (screen_char_attr != 0)
6733 attr = screen_char_attr;
6734 else
6735#endif
6736 attr = ScreenAttrs[off];
6737 if (screen_attr != attr)
6738 screen_stop_highlight();
6739
6740 windgoto(row, col);
6741
6742 if (screen_attr != attr)
6743 screen_start_highlight(attr);
6744
6745#ifdef FEAT_MBYTE
6746 if (enc_utf8 && ScreenLinesUC[off] != 0)
6747 {
6748 char_u buf[MB_MAXBYTES + 1];
6749
6750 /* Convert UTF-8 character to bytes and write it. */
6751
6752 buf[utfc_char2bytes(off, buf)] = NUL;
6753
6754 out_str(buf);
6755 if (utf_char2cells(ScreenLinesUC[off]) > 1)
6756 ++screen_cur_col;
6757 }
6758 else
6759#endif
6760 {
6761#ifdef FEAT_MBYTE
6762 out_flush_check();
6763#endif
6764 out_char(ScreenLines[off]);
6765#ifdef FEAT_MBYTE
6766 /* double-byte character in single-width cell */
6767 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
6768 out_char(ScreenLines2[off]);
6769#endif
6770 }
6771
6772 screen_cur_col++;
6773}
6774
6775#ifdef FEAT_MBYTE
6776
6777/*
6778 * Used for enc_dbcs only: Put one double-wide character at ScreenLines["off"]
6779 * on the screen at position 'row' and 'col'.
6780 * The attributes of the first byte is used for all. This is required to
6781 * output the two bytes of a double-byte character with nothing in between.
6782 */
6783 static void
6784screen_char_2(off, row, col)
6785 unsigned off;
6786 int row;
6787 int col;
6788{
6789 /* Check for illegal values (could be wrong when screen was resized). */
6790 if (off + 1 >= (unsigned)(screen_Rows * screen_Columns))
6791 return;
6792
6793 /* Outputting the last character on the screen may scrollup the screen.
6794 * Don't to it! Mark the character invalid (update it when scrolled up) */
6795 if (row == screen_Rows - 1 && col >= screen_Columns - 2)
6796 {
6797 ScreenAttrs[off] = (sattr_T)-1;
6798 return;
6799 }
6800
6801 /* Output the first byte normally (positions the cursor), then write the
6802 * second byte directly. */
6803 screen_char(off, row, col);
6804 out_char(ScreenLines[off + 1]);
6805 ++screen_cur_col;
6806}
6807#endif
6808
6809#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT) || defined(PROTO)
6810/*
6811 * Draw a rectangle of the screen, inverted when "invert" is TRUE.
6812 * This uses the contents of ScreenLines[] and doesn't change it.
6813 */
6814 void
6815screen_draw_rectangle(row, col, height, width, invert)
6816 int row;
6817 int col;
6818 int height;
6819 int width;
6820 int invert;
6821{
6822 int r, c;
6823 int off;
6824
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006825 /* Can't use ScreenLines unless initialized */
6826 if (ScreenLines == NULL)
6827 return;
6828
Bram Moolenaar071d4272004-06-13 20:20:40 +00006829 if (invert)
6830 screen_char_attr = HL_INVERSE;
6831 for (r = row; r < row + height; ++r)
6832 {
6833 off = LineOffset[r];
6834 for (c = col; c < col + width; ++c)
6835 {
6836#ifdef FEAT_MBYTE
6837 if (enc_dbcs != 0 && dbcs_off2cells(off + c) > 1)
6838 {
6839 screen_char_2(off + c, r, c);
6840 ++c;
6841 }
6842 else
6843#endif
6844 {
6845 screen_char(off + c, r, c);
6846#ifdef FEAT_MBYTE
6847 if (utf_off2cells(off + c) > 1)
6848 ++c;
6849#endif
6850 }
6851 }
6852 }
6853 screen_char_attr = 0;
6854}
6855#endif
6856
6857#ifdef FEAT_VERTSPLIT
6858/*
6859 * Redraw the characters for a vertically split window.
6860 */
6861 static void
6862redraw_block(row, end, wp)
6863 int row;
6864 int end;
6865 win_T *wp;
6866{
6867 int col;
6868 int width;
6869
6870# ifdef FEAT_CLIPBOARD
6871 clip_may_clear_selection(row, end - 1);
6872# endif
6873
6874 if (wp == NULL)
6875 {
6876 col = 0;
6877 width = Columns;
6878 }
6879 else
6880 {
6881 col = wp->w_wincol;
6882 width = wp->w_width;
6883 }
6884 screen_draw_rectangle(row, col, end - row, width, FALSE);
6885}
6886#endif
6887
6888/*
6889 * Fill the screen from 'start_row' to 'end_row', from 'start_col' to 'end_col'
6890 * with character 'c1' in first column followed by 'c2' in the other columns.
6891 * Use attributes 'attr'.
6892 */
6893 void
6894screen_fill(start_row, end_row, start_col, end_col, c1, c2, attr)
6895 int start_row, end_row;
6896 int start_col, end_col;
6897 int c1, c2;
6898 int attr;
6899{
6900 int row;
6901 int col;
6902 int off;
6903 int end_off;
6904 int did_delete;
6905 int c;
6906 int norm_term;
6907#if defined(FEAT_GUI) || defined(UNIX)
6908 int force_next = FALSE;
6909#endif
6910
6911 if (end_row > screen_Rows) /* safety check */
6912 end_row = screen_Rows;
6913 if (end_col > screen_Columns) /* safety check */
6914 end_col = screen_Columns;
6915 if (ScreenLines == NULL
6916 || start_row >= end_row
6917 || start_col >= end_col) /* nothing to do */
6918 return;
6919
6920 /* it's a "normal" terminal when not in a GUI or cterm */
6921 norm_term = (
6922#ifdef FEAT_GUI
6923 !gui.in_use &&
6924#endif
6925 t_colors <= 1);
6926 for (row = start_row; row < end_row; ++row)
6927 {
6928 /*
6929 * Try to use delete-line termcap code, when no attributes or in a
6930 * "normal" terminal, where a bold/italic space is just a
6931 * space.
6932 */
6933 did_delete = FALSE;
6934 if (c2 == ' '
6935 && end_col == Columns
6936 && can_clear(T_CE)
6937 && (attr == 0
6938 || (norm_term
6939 && attr <= HL_ALL
6940 && ((attr & ~(HL_BOLD | HL_ITALIC)) == 0))))
6941 {
6942 /*
6943 * check if we really need to clear something
6944 */
6945 col = start_col;
6946 if (c1 != ' ') /* don't clear first char */
6947 ++col;
6948
6949 off = LineOffset[row] + col;
6950 end_off = LineOffset[row] + end_col;
6951
6952 /* skip blanks (used often, keep it fast!) */
6953#ifdef FEAT_MBYTE
6954 if (enc_utf8)
6955 while (off < end_off && ScreenLines[off] == ' '
6956 && ScreenAttrs[off] == 0 && ScreenLinesUC[off] == 0)
6957 ++off;
6958 else
6959#endif
6960 while (off < end_off && ScreenLines[off] == ' '
6961 && ScreenAttrs[off] == 0)
6962 ++off;
6963 if (off < end_off) /* something to be cleared */
6964 {
6965 col = off - LineOffset[row];
6966 screen_stop_highlight();
6967 term_windgoto(row, col);/* clear rest of this screen line */
6968 out_str(T_CE);
6969 screen_start(); /* don't know where cursor is now */
6970 col = end_col - col;
6971 while (col--) /* clear chars in ScreenLines */
6972 {
6973 ScreenLines[off] = ' ';
6974#ifdef FEAT_MBYTE
6975 if (enc_utf8)
6976 ScreenLinesUC[off] = 0;
6977#endif
6978 ScreenAttrs[off] = 0;
6979 ++off;
6980 }
6981 }
6982 did_delete = TRUE; /* the chars are cleared now */
6983 }
6984
6985 off = LineOffset[row] + start_col;
6986 c = c1;
6987 for (col = start_col; col < end_col; ++col)
6988 {
6989 if (ScreenLines[off] != c
6990#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006991 || (enc_utf8 && (int)ScreenLinesUC[off]
6992 != (c >= 0x80 ? c : 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993#endif
6994 || ScreenAttrs[off] != attr
6995#if defined(FEAT_GUI) || defined(UNIX)
6996 || force_next
6997#endif
6998 )
6999 {
7000#if defined(FEAT_GUI) || defined(UNIX)
7001 /* The bold trick may make a single row of pixels appear in
7002 * the next character. When a bold character is removed, the
7003 * next character should be redrawn too. This happens for our
7004 * own GUI and for some xterms. */
7005 if (
7006# ifdef FEAT_GUI
7007 gui.in_use
7008# endif
7009# if defined(FEAT_GUI) && defined(UNIX)
7010 ||
7011# endif
7012# ifdef UNIX
7013 term_is_xterm
7014# endif
7015 )
7016 {
7017 if (ScreenLines[off] != ' '
7018 && (ScreenAttrs[off] > HL_ALL
7019 || ScreenAttrs[off] & HL_BOLD))
7020 force_next = TRUE;
7021 else
7022 force_next = FALSE;
7023 }
7024#endif
7025 ScreenLines[off] = c;
7026#ifdef FEAT_MBYTE
7027 if (enc_utf8)
7028 {
7029 if (c >= 0x80)
7030 {
7031 ScreenLinesUC[off] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007032 ScreenLinesC[0][off] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 }
7034 else
7035 ScreenLinesUC[off] = 0;
7036 }
7037#endif
7038 ScreenAttrs[off] = attr;
7039 if (!did_delete || c != ' ')
7040 screen_char(off, row, col);
7041 }
7042 ++off;
7043 if (col == start_col)
7044 {
7045 if (did_delete)
7046 break;
7047 c = c2;
7048 }
7049 }
7050 if (end_col == Columns)
7051 LineWraps[row] = FALSE;
7052 if (row == Rows - 1) /* overwritten the command line */
7053 {
7054 redraw_cmdline = TRUE;
7055 if (c1 == ' ' && c2 == ' ')
7056 clear_cmdline = FALSE; /* command line has been cleared */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00007057 if (start_col == 0)
7058 mode_displayed = FALSE; /* mode cleared or overwritten */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 }
7060 }
7061}
7062
7063/*
7064 * Check if there should be a delay. Used before clearing or redrawing the
7065 * screen or the command line.
7066 */
7067 void
7068check_for_delay(check_msg_scroll)
7069 int check_msg_scroll;
7070{
7071 if ((emsg_on_display || (check_msg_scroll && msg_scroll))
7072 && !did_wait_return
7073 && emsg_silent == 0)
7074 {
7075 out_flush();
7076 ui_delay(1000L, TRUE);
7077 emsg_on_display = FALSE;
7078 if (check_msg_scroll)
7079 msg_scroll = FALSE;
7080 }
7081}
7082
7083/*
7084 * screen_valid - allocate screen buffers if size changed
7085 * If "clear" is TRUE: clear screen if it has been resized.
7086 * Returns TRUE if there is a valid screen to write to.
7087 * Returns FALSE when starting up and screen not initialized yet.
7088 */
7089 int
7090screen_valid(clear)
7091 int clear;
7092{
7093 screenalloc(clear); /* allocate screen buffers if size changed */
7094 return (ScreenLines != NULL);
7095}
7096
7097/*
7098 * Resize the shell to Rows and Columns.
7099 * Allocate ScreenLines[] and associated items.
7100 *
7101 * There may be some time between setting Rows and Columns and (re)allocating
7102 * ScreenLines[]. This happens when starting up and when (manually) changing
7103 * the shell size. Always use screen_Rows and screen_Columns to access items
7104 * in ScreenLines[]. Use Rows and Columns for positioning text etc. where the
7105 * final size of the shell is needed.
7106 */
7107 void
7108screenalloc(clear)
7109 int clear;
7110{
7111 int new_row, old_row;
7112#ifdef FEAT_GUI
7113 int old_Rows;
7114#endif
7115 win_T *wp;
7116 int outofmem = FALSE;
7117 int len;
7118 schar_T *new_ScreenLines;
7119#ifdef FEAT_MBYTE
7120 u8char_T *new_ScreenLinesUC = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007121 u8char_T *new_ScreenLinesC[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 schar_T *new_ScreenLines2 = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007123 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124#endif
7125 sattr_T *new_ScreenAttrs;
7126 unsigned *new_LineOffset;
7127 char_u *new_LineWraps;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007128#ifdef FEAT_WINDOWS
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007129 short *new_TabPageIdxs;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007130 tabpage_T *tp;
7131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 static int entered = FALSE; /* avoid recursiveness */
Bram Moolenaar89d40322006-08-29 15:30:07 +00007133 static int done_outofmem_msg = FALSE; /* did outofmem message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134
7135 /*
7136 * Allocation of the screen buffers is done only when the size changes and
7137 * when Rows and Columns have been set and we have started doing full
7138 * screen stuff.
7139 */
7140 if ((ScreenLines != NULL
7141 && Rows == screen_Rows
7142 && Columns == screen_Columns
7143#ifdef FEAT_MBYTE
7144 && enc_utf8 == (ScreenLinesUC != NULL)
7145 && (enc_dbcs == DBCS_JPNU) == (ScreenLines2 != NULL)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007146 && p_mco == Screen_mco
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147#endif
7148 )
7149 || Rows == 0
7150 || Columns == 0
7151 || (!full_screen && ScreenLines == NULL))
7152 return;
7153
7154 /*
7155 * It's possible that we produce an out-of-memory message below, which
7156 * will cause this function to be called again. To break the loop, just
7157 * return here.
7158 */
7159 if (entered)
7160 return;
7161 entered = TRUE;
7162
Bram Moolenaara3f2ecd2006-07-11 21:01:01 +00007163 /*
7164 * Note that the window sizes are updated before reallocating the arrays,
7165 * thus we must not redraw here!
7166 */
7167 ++RedrawingDisabled;
7168
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169 win_new_shellsize(); /* fit the windows in the new sized shell */
7170
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 comp_col(); /* recompute columns for shown command and ruler */
7172
7173 /*
7174 * We're changing the size of the screen.
7175 * - Allocate new arrays for ScreenLines and ScreenAttrs.
7176 * - Move lines from the old arrays into the new arrays, clear extra
7177 * lines (unless the screen is going to be cleared).
7178 * - Free the old arrays.
7179 *
7180 * If anything fails, make ScreenLines NULL, so we don't do anything!
7181 * Continuing with the old ScreenLines may result in a crash, because the
7182 * size is wrong.
7183 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00007184 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185 win_free_lsize(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186
7187 new_ScreenLines = (schar_T *)lalloc((long_u)(
7188 (Rows + 1) * Columns * sizeof(schar_T)), FALSE);
7189#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007190 vim_memset(new_ScreenLinesC, 0, sizeof(u8char_T) * MAX_MCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191 if (enc_utf8)
7192 {
7193 new_ScreenLinesUC = (u8char_T *)lalloc((long_u)(
7194 (Rows + 1) * Columns * sizeof(u8char_T)), FALSE);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007195 for (i = 0; i < p_mco; ++i)
7196 new_ScreenLinesC[i] = (u8char_T *)lalloc((long_u)(
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197 (Rows + 1) * Columns * sizeof(u8char_T)), FALSE);
7198 }
7199 if (enc_dbcs == DBCS_JPNU)
7200 new_ScreenLines2 = (schar_T *)lalloc((long_u)(
7201 (Rows + 1) * Columns * sizeof(schar_T)), FALSE);
7202#endif
7203 new_ScreenAttrs = (sattr_T *)lalloc((long_u)(
7204 (Rows + 1) * Columns * sizeof(sattr_T)), FALSE);
7205 new_LineOffset = (unsigned *)lalloc((long_u)(
7206 Rows * sizeof(unsigned)), FALSE);
7207 new_LineWraps = (char_u *)lalloc((long_u)(Rows * sizeof(char_u)), FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007208#ifdef FEAT_WINDOWS
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007209 new_TabPageIdxs = (short *)lalloc((long_u)(Columns * sizeof(short)), FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007212 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213 {
7214 if (win_alloc_lines(wp) == FAIL)
7215 {
7216 outofmem = TRUE;
7217#ifdef FEAT_WINDOWS
7218 break;
7219#endif
7220 }
7221 }
7222
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007223#ifdef FEAT_MBYTE
7224 for (i = 0; i < p_mco; ++i)
7225 if (new_ScreenLinesC[i] == NULL)
7226 break;
7227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228 if (new_ScreenLines == NULL
7229#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007230 || (enc_utf8 && (new_ScreenLinesUC == NULL || i != p_mco))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007231 || (enc_dbcs == DBCS_JPNU && new_ScreenLines2 == NULL)
7232#endif
7233 || new_ScreenAttrs == NULL
7234 || new_LineOffset == NULL
7235 || new_LineWraps == NULL
Bram Moolenaarf740b292006-02-16 22:11:02 +00007236#ifdef FEAT_WINDOWS
7237 || new_TabPageIdxs == NULL
7238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239 || outofmem)
7240 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00007241 if (ScreenLines != NULL || !done_outofmem_msg)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007242 {
7243 /* guess the size */
7244 do_outofmem_msg((long_u)((Rows + 1) * Columns));
7245
7246 /* Remember we did this to avoid getting outofmem messages over
7247 * and over again. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00007248 done_outofmem_msg = TRUE;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 vim_free(new_ScreenLines);
7251 new_ScreenLines = NULL;
7252#ifdef FEAT_MBYTE
7253 vim_free(new_ScreenLinesUC);
7254 new_ScreenLinesUC = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007255 for (i = 0; i < p_mco; ++i)
7256 {
7257 vim_free(new_ScreenLinesC[i]);
7258 new_ScreenLinesC[i] = NULL;
7259 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 vim_free(new_ScreenLines2);
7261 new_ScreenLines2 = NULL;
7262#endif
7263 vim_free(new_ScreenAttrs);
7264 new_ScreenAttrs = NULL;
7265 vim_free(new_LineOffset);
7266 new_LineOffset = NULL;
7267 vim_free(new_LineWraps);
7268 new_LineWraps = NULL;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007269#ifdef FEAT_WINDOWS
7270 vim_free(new_TabPageIdxs);
7271 new_TabPageIdxs = NULL;
7272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007273 }
7274 else
7275 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00007276 done_outofmem_msg = FALSE;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007277
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 for (new_row = 0; new_row < Rows; ++new_row)
7279 {
7280 new_LineOffset[new_row] = new_row * Columns;
7281 new_LineWraps[new_row] = FALSE;
7282
7283 /*
7284 * If the screen is not going to be cleared, copy as much as
7285 * possible from the old screen to the new one and clear the rest
7286 * (used when resizing the window at the "--more--" prompt or when
7287 * executing an external command, for the GUI).
7288 */
7289 if (!clear)
7290 {
7291 (void)vim_memset(new_ScreenLines + new_row * Columns,
7292 ' ', (size_t)Columns * sizeof(schar_T));
7293#ifdef FEAT_MBYTE
7294 if (enc_utf8)
7295 {
7296 (void)vim_memset(new_ScreenLinesUC + new_row * Columns,
7297 0, (size_t)Columns * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007298 for (i = 0; i < p_mco; ++i)
7299 (void)vim_memset(new_ScreenLinesC[i]
7300 + new_row * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007301 0, (size_t)Columns * sizeof(u8char_T));
7302 }
7303 if (enc_dbcs == DBCS_JPNU)
7304 (void)vim_memset(new_ScreenLines2 + new_row * Columns,
7305 0, (size_t)Columns * sizeof(schar_T));
7306#endif
7307 (void)vim_memset(new_ScreenAttrs + new_row * Columns,
7308 0, (size_t)Columns * sizeof(sattr_T));
7309 old_row = new_row + (screen_Rows - Rows);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007310 if (old_row >= 0 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 {
7312 if (screen_Columns < Columns)
7313 len = screen_Columns;
7314 else
7315 len = Columns;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007316#ifdef FEAT_MBYTE
Bram Moolenaarf4d11452005-12-02 00:46:37 +00007317 /* When switching to utf-8 don't copy characters, they
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007318 * may be invalid now. Also when p_mco changes. */
7319 if (!(enc_utf8 && ScreenLinesUC == NULL)
7320 && p_mco == Screen_mco)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007321#endif
7322 mch_memmove(new_ScreenLines + new_LineOffset[new_row],
7323 ScreenLines + LineOffset[old_row],
7324 (size_t)len * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007325#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007326 if (enc_utf8 && ScreenLinesUC != NULL
7327 && p_mco == Screen_mco)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 {
7329 mch_memmove(new_ScreenLinesUC + new_LineOffset[new_row],
7330 ScreenLinesUC + LineOffset[old_row],
7331 (size_t)len * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007332 for (i = 0; i < p_mco; ++i)
7333 mch_memmove(new_ScreenLinesC[i]
7334 + new_LineOffset[new_row],
7335 ScreenLinesC[i] + LineOffset[old_row],
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336 (size_t)len * sizeof(u8char_T));
7337 }
7338 if (enc_dbcs == DBCS_JPNU && ScreenLines2 != NULL)
7339 mch_memmove(new_ScreenLines2 + new_LineOffset[new_row],
7340 ScreenLines2 + LineOffset[old_row],
7341 (size_t)len * sizeof(schar_T));
7342#endif
7343 mch_memmove(new_ScreenAttrs + new_LineOffset[new_row],
7344 ScreenAttrs + LineOffset[old_row],
7345 (size_t)len * sizeof(sattr_T));
7346 }
7347 }
7348 }
7349 /* Use the last line of the screen for the current line. */
7350 current_ScreenLine = new_ScreenLines + Rows * Columns;
7351 }
7352
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007353 free_screenlines();
7354
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355 ScreenLines = new_ScreenLines;
7356#ifdef FEAT_MBYTE
7357 ScreenLinesUC = new_ScreenLinesUC;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007358 for (i = 0; i < p_mco; ++i)
7359 ScreenLinesC[i] = new_ScreenLinesC[i];
7360 Screen_mco = p_mco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361 ScreenLines2 = new_ScreenLines2;
7362#endif
7363 ScreenAttrs = new_ScreenAttrs;
7364 LineOffset = new_LineOffset;
7365 LineWraps = new_LineWraps;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007366#ifdef FEAT_WINDOWS
7367 TabPageIdxs = new_TabPageIdxs;
7368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007369
7370 /* It's important that screen_Rows and screen_Columns reflect the actual
7371 * size of ScreenLines[]. Set them before calling anything. */
7372#ifdef FEAT_GUI
7373 old_Rows = screen_Rows;
7374#endif
7375 screen_Rows = Rows;
7376 screen_Columns = Columns;
7377
7378 must_redraw = CLEAR; /* need to clear the screen later */
7379 if (clear)
7380 screenclear2();
7381
7382#ifdef FEAT_GUI
7383 else if (gui.in_use
7384 && !gui.starting
7385 && ScreenLines != NULL
7386 && old_Rows != Rows)
7387 {
7388 (void)gui_redraw_block(0, 0, (int)Rows - 1, (int)Columns - 1, 0);
7389 /*
7390 * Adjust the position of the cursor, for when executing an external
7391 * command.
7392 */
7393 if (msg_row >= Rows) /* Rows got smaller */
7394 msg_row = Rows - 1; /* put cursor at last row */
7395 else if (Rows > old_Rows) /* Rows got bigger */
7396 msg_row += Rows - old_Rows; /* put cursor in same place */
7397 if (msg_col >= Columns) /* Columns got smaller */
7398 msg_col = Columns - 1; /* put cursor at last column */
7399 }
7400#endif
7401
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 entered = FALSE;
Bram Moolenaara3f2ecd2006-07-11 21:01:01 +00007403 --RedrawingDisabled;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00007404
7405#ifdef FEAT_AUTOCMD
7406 if (starting == 0)
7407 apply_autocmds(EVENT_VIMRESIZED, NULL, NULL, FALSE, curbuf);
7408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409}
7410
7411 void
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007412free_screenlines()
7413{
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007414#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007415 int i;
7416
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007417 vim_free(ScreenLinesUC);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007418 for (i = 0; i < Screen_mco; ++i)
7419 vim_free(ScreenLinesC[i]);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007420 vim_free(ScreenLines2);
7421#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007422 vim_free(ScreenLines);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007423 vim_free(ScreenAttrs);
7424 vim_free(LineOffset);
7425 vim_free(LineWraps);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007426#ifdef FEAT_WINDOWS
7427 vim_free(TabPageIdxs);
7428#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007429}
7430
7431 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432screenclear()
7433{
7434 check_for_delay(FALSE);
7435 screenalloc(FALSE); /* allocate screen buffers if size changed */
7436 screenclear2(); /* clear the screen */
7437}
7438
7439 static void
7440screenclear2()
7441{
7442 int i;
7443
7444 if (starting == NO_SCREEN || ScreenLines == NULL
7445#ifdef FEAT_GUI
7446 || (gui.in_use && gui.starting)
7447#endif
7448 )
7449 return;
7450
7451#ifdef FEAT_GUI
7452 if (!gui.in_use)
7453#endif
7454 screen_attr = -1; /* force setting the Normal colors */
7455 screen_stop_highlight(); /* don't want highlighting here */
7456
7457#ifdef FEAT_CLIPBOARD
7458 /* disable selection without redrawing it */
7459 clip_scroll_selection(9999);
7460#endif
7461
7462 /* blank out ScreenLines */
7463 for (i = 0; i < Rows; ++i)
7464 {
7465 lineclear(LineOffset[i], (int)Columns);
7466 LineWraps[i] = FALSE;
7467 }
7468
7469 if (can_clear(T_CL))
7470 {
7471 out_str(T_CL); /* clear the display */
7472 clear_cmdline = FALSE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00007473 mode_displayed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 }
7475 else
7476 {
7477 /* can't clear the screen, mark all chars with invalid attributes */
7478 for (i = 0; i < Rows; ++i)
7479 lineinvalid(LineOffset[i], (int)Columns);
7480 clear_cmdline = TRUE;
7481 }
7482
7483 screen_cleared = TRUE; /* can use contents of ScreenLines now */
7484
7485 win_rest_invalid(firstwin);
7486 redraw_cmdline = TRUE;
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00007487#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00007488 redraw_tabline = TRUE;
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00007489#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 if (must_redraw == CLEAR) /* no need to clear again */
7491 must_redraw = NOT_VALID;
7492 compute_cmdrow();
7493 msg_row = cmdline_row; /* put cursor on last line for messages */
7494 msg_col = 0;
7495 screen_start(); /* don't know where cursor is now */
7496 msg_scrolled = 0; /* can't scroll back */
7497 msg_didany = FALSE;
7498 msg_didout = FALSE;
7499}
7500
7501/*
7502 * Clear one line in ScreenLines.
7503 */
7504 static void
7505lineclear(off, width)
7506 unsigned off;
7507 int width;
7508{
7509 (void)vim_memset(ScreenLines + off, ' ', (size_t)width * sizeof(schar_T));
7510#ifdef FEAT_MBYTE
7511 if (enc_utf8)
7512 (void)vim_memset(ScreenLinesUC + off, 0,
7513 (size_t)width * sizeof(u8char_T));
7514#endif
7515 (void)vim_memset(ScreenAttrs + off, 0, (size_t)width * sizeof(sattr_T));
7516}
7517
7518/*
7519 * Mark one line in ScreenLines invalid by setting the attributes to an
7520 * invalid value.
7521 */
7522 static void
7523lineinvalid(off, width)
7524 unsigned off;
7525 int width;
7526{
7527 (void)vim_memset(ScreenAttrs + off, -1, (size_t)width * sizeof(sattr_T));
7528}
7529
7530#ifdef FEAT_VERTSPLIT
7531/*
7532 * Copy part of a Screenline for vertically split window "wp".
7533 */
7534 static void
7535linecopy(to, from, wp)
7536 int to;
7537 int from;
7538 win_T *wp;
7539{
7540 unsigned off_to = LineOffset[to] + wp->w_wincol;
7541 unsigned off_from = LineOffset[from] + wp->w_wincol;
7542
7543 mch_memmove(ScreenLines + off_to, ScreenLines + off_from,
7544 wp->w_width * sizeof(schar_T));
7545# ifdef FEAT_MBYTE
7546 if (enc_utf8)
7547 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007548 int i;
7549
Bram Moolenaar071d4272004-06-13 20:20:40 +00007550 mch_memmove(ScreenLinesUC + off_to, ScreenLinesUC + off_from,
7551 wp->w_width * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007552 for (i = 0; i < p_mco; ++i)
7553 mch_memmove(ScreenLinesC[i] + off_to, ScreenLinesC[i] + off_from,
7554 wp->w_width * sizeof(u8char_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555 }
7556 if (enc_dbcs == DBCS_JPNU)
7557 mch_memmove(ScreenLines2 + off_to, ScreenLines2 + off_from,
7558 wp->w_width * sizeof(schar_T));
7559# endif
7560 mch_memmove(ScreenAttrs + off_to, ScreenAttrs + off_from,
7561 wp->w_width * sizeof(sattr_T));
7562}
7563#endif
7564
7565/*
7566 * Return TRUE if clearing with term string "p" would work.
7567 * It can't work when the string is empty or it won't set the right background.
7568 */
7569 int
7570can_clear(p)
7571 char_u *p;
7572{
7573 return (*p != NUL && (t_colors <= 1
7574#ifdef FEAT_GUI
7575 || gui.in_use
7576#endif
7577 || cterm_normal_bg_color == 0 || *T_UT != NUL));
7578}
7579
7580/*
7581 * Reset cursor position. Use whenever cursor was moved because of outputting
7582 * something directly to the screen (shell commands) or a terminal control
7583 * code.
7584 */
7585 void
7586screen_start()
7587{
7588 screen_cur_row = screen_cur_col = 9999;
7589}
7590
7591/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 * Move the cursor to position "row","col" in the screen.
7593 * This tries to find the most efficient way to move, minimizing the number of
7594 * characters sent to the terminal.
7595 */
7596 void
7597windgoto(row, col)
7598 int row;
7599 int col;
7600{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00007601 sattr_T *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007602 int i;
7603 int plan;
7604 int cost;
7605 int wouldbe_col;
7606 int noinvcurs;
7607 char_u *bs;
7608 int goto_cost;
7609 int attr;
7610
7611#define GOTO_COST 7 /* asssume a term_windgoto() takes about 7 chars */
7612#define HIGHL_COST 5 /* assume unhighlight takes 5 chars */
7613
7614#define PLAN_LE 1
7615#define PLAN_CR 2
7616#define PLAN_NL 3
7617#define PLAN_WRITE 4
7618 /* Can't use ScreenLines unless initialized */
7619 if (ScreenLines == NULL)
7620 return;
7621
7622 if (col != screen_cur_col || row != screen_cur_row)
7623 {
7624 /* Check for valid position. */
7625 if (row < 0) /* window without text lines? */
7626 row = 0;
7627 if (row >= screen_Rows)
7628 row = screen_Rows - 1;
7629 if (col >= screen_Columns)
7630 col = screen_Columns - 1;
7631
7632 /* check if no cursor movement is allowed in highlight mode */
7633 if (screen_attr && *T_MS == NUL)
7634 noinvcurs = HIGHL_COST;
7635 else
7636 noinvcurs = 0;
7637 goto_cost = GOTO_COST + noinvcurs;
7638
7639 /*
7640 * Plan how to do the positioning:
7641 * 1. Use CR to move it to column 0, same row.
7642 * 2. Use T_LE to move it a few columns to the left.
7643 * 3. Use NL to move a few lines down, column 0.
7644 * 4. Move a few columns to the right with T_ND or by writing chars.
7645 *
7646 * Don't do this if the cursor went beyond the last column, the cursor
7647 * position is unknown then (some terminals wrap, some don't )
7648 *
7649 * First check if the highlighting attibutes allow us to write
7650 * characters to move the cursor to the right.
7651 */
7652 if (row >= screen_cur_row && screen_cur_col < Columns)
7653 {
7654 /*
7655 * If the cursor is in the same row, bigger col, we can use CR
7656 * or T_LE.
7657 */
7658 bs = NULL; /* init for GCC */
7659 attr = screen_attr;
7660 if (row == screen_cur_row && col < screen_cur_col)
7661 {
7662 /* "le" is preferred over "bc", because "bc" is obsolete */
7663 if (*T_LE)
7664 bs = T_LE; /* "cursor left" */
7665 else
7666 bs = T_BC; /* "backspace character (old) */
7667 if (*bs)
7668 cost = (screen_cur_col - col) * (int)STRLEN(bs);
7669 else
7670 cost = 999;
7671 if (col + 1 < cost) /* using CR is less characters */
7672 {
7673 plan = PLAN_CR;
7674 wouldbe_col = 0;
7675 cost = 1; /* CR is just one character */
7676 }
7677 else
7678 {
7679 plan = PLAN_LE;
7680 wouldbe_col = col;
7681 }
7682 if (noinvcurs) /* will stop highlighting */
7683 {
7684 cost += noinvcurs;
7685 attr = 0;
7686 }
7687 }
7688
7689 /*
7690 * If the cursor is above where we want to be, we can use CR LF.
7691 */
7692 else if (row > screen_cur_row)
7693 {
7694 plan = PLAN_NL;
7695 wouldbe_col = 0;
7696 cost = (row - screen_cur_row) * 2; /* CR LF */
7697 if (noinvcurs) /* will stop highlighting */
7698 {
7699 cost += noinvcurs;
7700 attr = 0;
7701 }
7702 }
7703
7704 /*
7705 * If the cursor is in the same row, smaller col, just use write.
7706 */
7707 else
7708 {
7709 plan = PLAN_WRITE;
7710 wouldbe_col = screen_cur_col;
7711 cost = 0;
7712 }
7713
7714 /*
7715 * Check if any characters that need to be written have the
7716 * correct attributes. Also avoid UTF-8 characters.
7717 */
7718 i = col - wouldbe_col;
7719 if (i > 0)
7720 cost += i;
7721 if (cost < goto_cost && i > 0)
7722 {
7723 /*
7724 * Check if the attributes are correct without additionally
7725 * stopping highlighting.
7726 */
7727 p = ScreenAttrs + LineOffset[row] + wouldbe_col;
7728 while (i && *p++ == attr)
7729 --i;
7730 if (i != 0)
7731 {
7732 /*
7733 * Try if it works when highlighting is stopped here.
7734 */
7735 if (*--p == 0)
7736 {
7737 cost += noinvcurs;
7738 while (i && *p++ == 0)
7739 --i;
7740 }
7741 if (i != 0)
7742 cost = 999; /* different attributes, don't do it */
7743 }
7744#ifdef FEAT_MBYTE
7745 if (enc_utf8)
7746 {
7747 /* Don't use an UTF-8 char for positioning, it's slow. */
7748 for (i = wouldbe_col; i < col; ++i)
7749 if (ScreenLinesUC[LineOffset[row] + i] != 0)
7750 {
7751 cost = 999;
7752 break;
7753 }
7754 }
7755#endif
7756 }
7757
7758 /*
7759 * We can do it without term_windgoto()!
7760 */
7761 if (cost < goto_cost)
7762 {
7763 if (plan == PLAN_LE)
7764 {
7765 if (noinvcurs)
7766 screen_stop_highlight();
7767 while (screen_cur_col > col)
7768 {
7769 out_str(bs);
7770 --screen_cur_col;
7771 }
7772 }
7773 else if (plan == PLAN_CR)
7774 {
7775 if (noinvcurs)
7776 screen_stop_highlight();
7777 out_char('\r');
7778 screen_cur_col = 0;
7779 }
7780 else if (plan == PLAN_NL)
7781 {
7782 if (noinvcurs)
7783 screen_stop_highlight();
7784 while (screen_cur_row < row)
7785 {
7786 out_char('\n');
7787 ++screen_cur_row;
7788 }
7789 screen_cur_col = 0;
7790 }
7791
7792 i = col - screen_cur_col;
7793 if (i > 0)
7794 {
7795 /*
7796 * Use cursor-right if it's one character only. Avoids
7797 * removing a line of pixels from the last bold char, when
7798 * using the bold trick in the GUI.
7799 */
7800 if (T_ND[0] != NUL && T_ND[1] == NUL)
7801 {
7802 while (i-- > 0)
7803 out_char(*T_ND);
7804 }
7805 else
7806 {
7807 int off;
7808
7809 off = LineOffset[row] + screen_cur_col;
7810 while (i-- > 0)
7811 {
7812 if (ScreenAttrs[off] != screen_attr)
7813 screen_stop_highlight();
7814#ifdef FEAT_MBYTE
7815 out_flush_check();
7816#endif
7817 out_char(ScreenLines[off]);
7818#ifdef FEAT_MBYTE
7819 if (enc_dbcs == DBCS_JPNU
7820 && ScreenLines[off] == 0x8e)
7821 out_char(ScreenLines2[off]);
7822#endif
7823 ++off;
7824 }
7825 }
7826 }
7827 }
7828 }
7829 else
7830 cost = 999;
7831
7832 if (cost >= goto_cost)
7833 {
7834 if (noinvcurs)
7835 screen_stop_highlight();
7836 if (row == screen_cur_row && (col > screen_cur_col) &&
7837 *T_CRI != NUL)
7838 term_cursor_right(col - screen_cur_col);
7839 else
7840 term_windgoto(row, col);
7841 }
7842 screen_cur_row = row;
7843 screen_cur_col = col;
7844 }
7845}
7846
7847/*
7848 * Set cursor to its position in the current window.
7849 */
7850 void
7851setcursor()
7852{
7853 if (redrawing())
7854 {
7855 validate_cursor();
7856 windgoto(W_WINROW(curwin) + curwin->w_wrow,
7857 W_WINCOL(curwin) + (
7858#ifdef FEAT_RIGHTLEFT
7859 curwin->w_p_rl ? ((int)W_WIDTH(curwin) - curwin->w_wcol - (
7860# ifdef FEAT_MBYTE
7861 has_mbyte ? (*mb_ptr2cells)(ml_get_cursor()) :
7862# endif
7863 1)) :
7864#endif
7865 curwin->w_wcol));
7866 }
7867}
7868
7869
7870/*
7871 * insert 'line_count' lines at 'row' in window 'wp'
7872 * if 'invalid' is TRUE the wp->w_lines[].wl_lnum is invalidated.
7873 * if 'mayclear' is TRUE the screen will be cleared if it is faster than
7874 * scrolling.
7875 * Returns FAIL if the lines are not inserted, OK for success.
7876 */
7877 int
7878win_ins_lines(wp, row, line_count, invalid, mayclear)
7879 win_T *wp;
7880 int row;
7881 int line_count;
7882 int invalid;
7883 int mayclear;
7884{
7885 int did_delete;
7886 int nextrow;
7887 int lastrow;
7888 int retval;
7889
7890 if (invalid)
7891 wp->w_lines_valid = 0;
7892
7893 if (wp->w_height < 5)
7894 return FAIL;
7895
7896 if (line_count > wp->w_height - row)
7897 line_count = wp->w_height - row;
7898
7899 retval = win_do_lines(wp, row, line_count, mayclear, FALSE);
7900 if (retval != MAYBE)
7901 return retval;
7902
7903 /*
7904 * If there is a next window or a status line, we first try to delete the
7905 * lines at the bottom to avoid messing what is after the window.
7906 * If this fails and there are following windows, don't do anything to avoid
7907 * messing up those windows, better just redraw.
7908 */
7909 did_delete = FALSE;
7910#ifdef FEAT_WINDOWS
7911 if (wp->w_next != NULL || wp->w_status_height)
7912 {
7913 if (screen_del_lines(0, W_WINROW(wp) + wp->w_height - line_count,
7914 line_count, (int)Rows, FALSE, NULL) == OK)
7915 did_delete = TRUE;
7916 else if (wp->w_next)
7917 return FAIL;
7918 }
7919#endif
7920 /*
7921 * if no lines deleted, blank the lines that will end up below the window
7922 */
7923 if (!did_delete)
7924 {
7925#ifdef FEAT_WINDOWS
7926 wp->w_redr_status = TRUE;
7927#endif
7928 redraw_cmdline = TRUE;
7929 nextrow = W_WINROW(wp) + wp->w_height + W_STATUS_HEIGHT(wp);
7930 lastrow = nextrow + line_count;
7931 if (lastrow > Rows)
7932 lastrow = Rows;
7933 screen_fill(nextrow - line_count, lastrow - line_count,
7934 W_WINCOL(wp), (int)W_ENDCOL(wp),
7935 ' ', ' ', 0);
7936 }
7937
7938 if (screen_ins_lines(0, W_WINROW(wp) + row, line_count, (int)Rows, NULL)
7939 == FAIL)
7940 {
7941 /* deletion will have messed up other windows */
7942 if (did_delete)
7943 {
7944#ifdef FEAT_WINDOWS
7945 wp->w_redr_status = TRUE;
7946#endif
7947 win_rest_invalid(W_NEXT(wp));
7948 }
7949 return FAIL;
7950 }
7951
7952 return OK;
7953}
7954
7955/*
7956 * delete "line_count" window lines at "row" in window "wp"
7957 * If "invalid" is TRUE curwin->w_lines[] is invalidated.
7958 * If "mayclear" is TRUE the screen will be cleared if it is faster than
7959 * scrolling
7960 * Return OK for success, FAIL if the lines are not deleted.
7961 */
7962 int
7963win_del_lines(wp, row, line_count, invalid, mayclear)
7964 win_T *wp;
7965 int row;
7966 int line_count;
7967 int invalid;
7968 int mayclear;
7969{
7970 int retval;
7971
7972 if (invalid)
7973 wp->w_lines_valid = 0;
7974
7975 if (line_count > wp->w_height - row)
7976 line_count = wp->w_height - row;
7977
7978 retval = win_do_lines(wp, row, line_count, mayclear, TRUE);
7979 if (retval != MAYBE)
7980 return retval;
7981
7982 if (screen_del_lines(0, W_WINROW(wp) + row, line_count,
7983 (int)Rows, FALSE, NULL) == FAIL)
7984 return FAIL;
7985
7986#ifdef FEAT_WINDOWS
7987 /*
7988 * If there are windows or status lines below, try to put them at the
7989 * correct place. If we can't do that, they have to be redrawn.
7990 */
7991 if (wp->w_next || wp->w_status_height || cmdline_row < Rows - 1)
7992 {
7993 if (screen_ins_lines(0, W_WINROW(wp) + wp->w_height - line_count,
7994 line_count, (int)Rows, NULL) == FAIL)
7995 {
7996 wp->w_redr_status = TRUE;
7997 win_rest_invalid(wp->w_next);
7998 }
7999 }
8000 /*
8001 * If this is the last window and there is no status line, redraw the
8002 * command line later.
8003 */
8004 else
8005#endif
8006 redraw_cmdline = TRUE;
8007 return OK;
8008}
8009
8010/*
8011 * Common code for win_ins_lines() and win_del_lines().
8012 * Returns OK or FAIL when the work has been done.
8013 * Returns MAYBE when not finished yet.
8014 */
8015 static int
8016win_do_lines(wp, row, line_count, mayclear, del)
8017 win_T *wp;
8018 int row;
8019 int line_count;
8020 int mayclear;
8021 int del;
8022{
8023 int retval;
8024
8025 if (!redrawing() || line_count <= 0)
8026 return FAIL;
8027
8028 /* only a few lines left: redraw is faster */
8029 if (mayclear && Rows - line_count < 5
8030#ifdef FEAT_VERTSPLIT
8031 && wp->w_width == Columns
8032#endif
8033 )
8034 {
8035 screenclear(); /* will set wp->w_lines_valid to 0 */
8036 return FAIL;
8037 }
8038
8039 /*
8040 * Delete all remaining lines
8041 */
8042 if (row + line_count >= wp->w_height)
8043 {
8044 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height,
8045 W_WINCOL(wp), (int)W_ENDCOL(wp),
8046 ' ', ' ', 0);
8047 return OK;
8048 }
8049
8050 /*
8051 * when scrolling, the message on the command line should be cleared,
8052 * otherwise it will stay there forever.
8053 */
8054 clear_cmdline = TRUE;
8055
8056 /*
8057 * If the terminal can set a scroll region, use that.
8058 * Always do this in a vertically split window. This will redraw from
8059 * ScreenLines[] when t_CV isn't defined. That's faster than using
8060 * win_line().
8061 * Don't use a scroll region when we are going to redraw the text, writing
8062 * a character in the lower right corner of the scroll region causes a
8063 * scroll-up in the DJGPP version.
8064 */
8065 if (scroll_region
8066#ifdef FEAT_VERTSPLIT
8067 || W_WIDTH(wp) != Columns
8068#endif
8069 )
8070 {
8071#ifdef FEAT_VERTSPLIT
8072 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
8073#endif
8074 scroll_region_set(wp, row);
8075 if (del)
8076 retval = screen_del_lines(W_WINROW(wp) + row, 0, line_count,
8077 wp->w_height - row, FALSE, wp);
8078 else
8079 retval = screen_ins_lines(W_WINROW(wp) + row, 0, line_count,
8080 wp->w_height - row, wp);
8081#ifdef FEAT_VERTSPLIT
8082 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
8083#endif
8084 scroll_region_reset();
8085 return retval;
8086 }
8087
8088#ifdef FEAT_WINDOWS
8089 if (wp->w_next != NULL && p_tf) /* don't delete/insert on fast terminal */
8090 return FAIL;
8091#endif
8092
8093 return MAYBE;
8094}
8095
8096/*
8097 * window 'wp' and everything after it is messed up, mark it for redraw
8098 */
8099 static void
8100win_rest_invalid(wp)
8101 win_T *wp;
8102{
8103#ifdef FEAT_WINDOWS
8104 while (wp != NULL)
8105#else
8106 if (wp != NULL)
8107#endif
8108 {
8109 redraw_win_later(wp, NOT_VALID);
8110#ifdef FEAT_WINDOWS
8111 wp->w_redr_status = TRUE;
8112 wp = wp->w_next;
8113#endif
8114 }
8115 redraw_cmdline = TRUE;
8116}
8117
8118/*
8119 * The rest of the routines in this file perform screen manipulations. The
8120 * given operation is performed physically on the screen. The corresponding
8121 * change is also made to the internal screen image. In this way, the editor
8122 * anticipates the effect of editing changes on the appearance of the screen.
8123 * That way, when we call screenupdate a complete redraw isn't usually
8124 * necessary. Another advantage is that we can keep adding code to anticipate
8125 * screen changes, and in the meantime, everything still works.
8126 */
8127
8128/*
8129 * types for inserting or deleting lines
8130 */
8131#define USE_T_CAL 1
8132#define USE_T_CDL 2
8133#define USE_T_AL 3
8134#define USE_T_CE 4
8135#define USE_T_DL 5
8136#define USE_T_SR 6
8137#define USE_NL 7
8138#define USE_T_CD 8
8139#define USE_REDRAW 9
8140
8141/*
8142 * insert lines on the screen and update ScreenLines[]
8143 * 'end' is the line after the scrolled part. Normally it is Rows.
8144 * When scrolling region used 'off' is the offset from the top for the region.
8145 * 'row' and 'end' are relative to the start of the region.
8146 *
8147 * return FAIL for failure, OK for success.
8148 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008149 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00008150screen_ins_lines(off, row, line_count, end, wp)
8151 int off;
8152 int row;
8153 int line_count;
8154 int end;
8155 win_T *wp; /* NULL or window to use width from */
8156{
8157 int i;
8158 int j;
8159 unsigned temp;
8160 int cursor_row;
8161 int type;
8162 int result_empty;
8163 int can_ce = can_clear(T_CE);
8164
8165 /*
8166 * FAIL if
8167 * - there is no valid screen
8168 * - the screen has to be redrawn completely
8169 * - the line count is less than one
8170 * - the line count is more than 'ttyscroll'
8171 */
8172 if (!screen_valid(TRUE) || line_count <= 0 || line_count > p_ttyscroll)
8173 return FAIL;
8174
8175 /*
8176 * There are seven ways to insert lines:
8177 * 0. When in a vertically split window and t_CV isn't set, redraw the
8178 * characters from ScreenLines[].
8179 * 1. Use T_CD (clear to end of display) if it exists and the result of
8180 * the insert is just empty lines
8181 * 2. Use T_CAL (insert multiple lines) if it exists and T_AL is not
8182 * present or line_count > 1. It looks better if we do all the inserts
8183 * at once.
8184 * 3. Use T_CDL (delete multiple lines) if it exists and the result of the
8185 * insert is just empty lines and T_CE is not present or line_count >
8186 * 1.
8187 * 4. Use T_AL (insert line) if it exists.
8188 * 5. Use T_CE (erase line) if it exists and the result of the insert is
8189 * just empty lines.
8190 * 6. Use T_DL (delete line) if it exists and the result of the insert is
8191 * just empty lines.
8192 * 7. Use T_SR (scroll reverse) if it exists and inserting at row 0 and
8193 * the 'da' flag is not set or we have clear line capability.
8194 * 8. redraw the characters from ScreenLines[].
8195 *
8196 * Careful: In a hpterm scroll reverse doesn't work as expected, it moves
8197 * the scrollbar for the window. It does have insert line, use that if it
8198 * exists.
8199 */
8200 result_empty = (row + line_count >= end);
8201#ifdef FEAT_VERTSPLIT
8202 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
8203 type = USE_REDRAW;
8204 else
8205#endif
8206 if (can_clear(T_CD) && result_empty)
8207 type = USE_T_CD;
8208 else if (*T_CAL != NUL && (line_count > 1 || *T_AL == NUL))
8209 type = USE_T_CAL;
8210 else if (*T_CDL != NUL && result_empty && (line_count > 1 || !can_ce))
8211 type = USE_T_CDL;
8212 else if (*T_AL != NUL)
8213 type = USE_T_AL;
8214 else if (can_ce && result_empty)
8215 type = USE_T_CE;
8216 else if (*T_DL != NUL && result_empty)
8217 type = USE_T_DL;
8218 else if (*T_SR != NUL && row == 0 && (*T_DA == NUL || can_ce))
8219 type = USE_T_SR;
8220 else
8221 return FAIL;
8222
8223 /*
8224 * For clearing the lines screen_del_lines() is used. This will also take
8225 * care of t_db if necessary.
8226 */
8227 if (type == USE_T_CD || type == USE_T_CDL ||
8228 type == USE_T_CE || type == USE_T_DL)
8229 return screen_del_lines(off, row, line_count, end, FALSE, wp);
8230
8231 /*
8232 * If text is retained below the screen, first clear or delete as many
8233 * lines at the bottom of the window as are about to be inserted so that
8234 * the deleted lines won't later surface during a screen_del_lines.
8235 */
8236 if (*T_DB)
8237 screen_del_lines(off, end - line_count, line_count, end, FALSE, wp);
8238
8239#ifdef FEAT_CLIPBOARD
8240 /* Remove a modeless selection when inserting lines halfway the screen
8241 * or not the full width of the screen. */
8242 if (off + row > 0
8243# ifdef FEAT_VERTSPLIT
8244 || (wp != NULL && wp->w_width != Columns)
8245# endif
8246 )
8247 clip_clear_selection();
8248 else
8249 clip_scroll_selection(-line_count);
8250#endif
8251
Bram Moolenaar071d4272004-06-13 20:20:40 +00008252#ifdef FEAT_GUI
8253 /* Don't update the GUI cursor here, ScreenLines[] is invalid until the
8254 * scrolling is actually carried out. */
8255 gui_dont_update_cursor();
8256#endif
8257
8258 if (*T_CCS != NUL) /* cursor relative to region */
8259 cursor_row = row;
8260 else
8261 cursor_row = row + off;
8262
8263 /*
8264 * Shift LineOffset[] line_count down to reflect the inserted lines.
8265 * Clear the inserted lines in ScreenLines[].
8266 */
8267 row += off;
8268 end += off;
8269 for (i = 0; i < line_count; ++i)
8270 {
8271#ifdef FEAT_VERTSPLIT
8272 if (wp != NULL && wp->w_width != Columns)
8273 {
8274 /* need to copy part of a line */
8275 j = end - 1 - i;
8276 while ((j -= line_count) >= row)
8277 linecopy(j + line_count, j, wp);
8278 j += line_count;
8279 if (can_clear((char_u *)" "))
8280 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width);
8281 else
8282 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width);
8283 LineWraps[j] = FALSE;
8284 }
8285 else
8286#endif
8287 {
8288 j = end - 1 - i;
8289 temp = LineOffset[j];
8290 while ((j -= line_count) >= row)
8291 {
8292 LineOffset[j + line_count] = LineOffset[j];
8293 LineWraps[j + line_count] = LineWraps[j];
8294 }
8295 LineOffset[j + line_count] = temp;
8296 LineWraps[j + line_count] = FALSE;
8297 if (can_clear((char_u *)" "))
8298 lineclear(temp, (int)Columns);
8299 else
8300 lineinvalid(temp, (int)Columns);
8301 }
8302 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008303
8304 screen_stop_highlight();
8305 windgoto(cursor_row, 0);
8306
8307#ifdef FEAT_VERTSPLIT
8308 /* redraw the characters */
8309 if (type == USE_REDRAW)
8310 redraw_block(row, end, wp);
8311 else
8312#endif
8313 if (type == USE_T_CAL)
8314 {
8315 term_append_lines(line_count);
8316 screen_start(); /* don't know where cursor is now */
8317 }
8318 else
8319 {
8320 for (i = 0; i < line_count; i++)
8321 {
8322 if (type == USE_T_AL)
8323 {
8324 if (i && cursor_row != 0)
8325 windgoto(cursor_row, 0);
8326 out_str(T_AL);
8327 }
8328 else /* type == USE_T_SR */
8329 out_str(T_SR);
8330 screen_start(); /* don't know where cursor is now */
8331 }
8332 }
8333
8334 /*
8335 * With scroll-reverse and 'da' flag set we need to clear the lines that
8336 * have been scrolled down into the region.
8337 */
8338 if (type == USE_T_SR && *T_DA)
8339 {
8340 for (i = 0; i < line_count; ++i)
8341 {
8342 windgoto(off + i, 0);
8343 out_str(T_CE);
8344 screen_start(); /* don't know where cursor is now */
8345 }
8346 }
8347
8348#ifdef FEAT_GUI
8349 gui_can_update_cursor();
8350 if (gui.in_use)
8351 out_flush(); /* always flush after a scroll */
8352#endif
8353 return OK;
8354}
8355
8356/*
8357 * delete lines on the screen and update ScreenLines[]
8358 * 'end' is the line after the scrolled part. Normally it is Rows.
8359 * When scrolling region used 'off' is the offset from the top for the region.
8360 * 'row' and 'end' are relative to the start of the region.
8361 *
8362 * Return OK for success, FAIL if the lines are not deleted.
8363 */
8364/*ARGSUSED*/
8365 int
8366screen_del_lines(off, row, line_count, end, force, wp)
8367 int off;
8368 int row;
8369 int line_count;
8370 int end;
8371 int force; /* even when line_count > p_ttyscroll */
8372 win_T *wp; /* NULL or window to use width from */
8373{
8374 int j;
8375 int i;
8376 unsigned temp;
8377 int cursor_row;
8378 int cursor_end;
8379 int result_empty; /* result is empty until end of region */
8380 int can_delete; /* deleting line codes can be used */
8381 int type;
8382
8383 /*
8384 * FAIL if
8385 * - there is no valid screen
8386 * - the screen has to be redrawn completely
8387 * - the line count is less than one
8388 * - the line count is more than 'ttyscroll'
8389 */
8390 if (!screen_valid(TRUE) || line_count <= 0 ||
8391 (!force && line_count > p_ttyscroll))
8392 return FAIL;
8393
8394 /*
8395 * Check if the rest of the current region will become empty.
8396 */
8397 result_empty = row + line_count >= end;
8398
8399 /*
8400 * We can delete lines only when 'db' flag not set or when 'ce' option
8401 * available.
8402 */
8403 can_delete = (*T_DB == NUL || can_clear(T_CE));
8404
8405 /*
8406 * There are six ways to delete lines:
8407 * 0. When in a vertically split window and t_CV isn't set, redraw the
8408 * characters from ScreenLines[].
8409 * 1. Use T_CD if it exists and the result is empty.
8410 * 2. Use newlines if row == 0 and count == 1 or T_CDL does not exist.
8411 * 3. Use T_CDL (delete multiple lines) if it exists and line_count > 1 or
8412 * none of the other ways work.
8413 * 4. Use T_CE (erase line) if the result is empty.
8414 * 5. Use T_DL (delete line) if it exists.
8415 * 6. redraw the characters from ScreenLines[].
8416 */
8417#ifdef FEAT_VERTSPLIT
8418 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
8419 type = USE_REDRAW;
8420 else
8421#endif
8422 if (can_clear(T_CD) && result_empty)
8423 type = USE_T_CD;
8424#if defined(__BEOS__) && defined(BEOS_DR8)
8425 /*
8426 * USE_NL does not seem to work in Terminal of DR8 so we set T_DB="" in
8427 * its internal termcap... this works okay for tests which test *T_DB !=
8428 * NUL. It has the disadvantage that the user cannot use any :set t_*
8429 * command to get T_DB (back) to empty_option, only :set term=... will do
8430 * the trick...
8431 * Anyway, this hack will hopefully go away with the next OS release.
8432 * (Olaf Seibert)
8433 */
8434 else if (row == 0 && T_DB == empty_option
8435 && (line_count == 1 || *T_CDL == NUL))
8436#else
8437 else if (row == 0 && (
8438#ifndef AMIGA
8439 /* On the Amiga, somehow '\n' on the last line doesn't always scroll
8440 * up, so use delete-line command */
8441 line_count == 1 ||
8442#endif
8443 *T_CDL == NUL))
8444#endif
8445 type = USE_NL;
8446 else if (*T_CDL != NUL && line_count > 1 && can_delete)
8447 type = USE_T_CDL;
8448 else if (can_clear(T_CE) && result_empty
8449#ifdef FEAT_VERTSPLIT
8450 && (wp == NULL || wp->w_width == Columns)
8451#endif
8452 )
8453 type = USE_T_CE;
8454 else if (*T_DL != NUL && can_delete)
8455 type = USE_T_DL;
8456 else if (*T_CDL != NUL && can_delete)
8457 type = USE_T_CDL;
8458 else
8459 return FAIL;
8460
8461#ifdef FEAT_CLIPBOARD
8462 /* Remove a modeless selection when deleting lines halfway the screen or
8463 * not the full width of the screen. */
8464 if (off + row > 0
8465# ifdef FEAT_VERTSPLIT
8466 || (wp != NULL && wp->w_width != Columns)
8467# endif
8468 )
8469 clip_clear_selection();
8470 else
8471 clip_scroll_selection(line_count);
8472#endif
8473
Bram Moolenaar071d4272004-06-13 20:20:40 +00008474#ifdef FEAT_GUI
8475 /* Don't update the GUI cursor here, ScreenLines[] is invalid until the
8476 * scrolling is actually carried out. */
8477 gui_dont_update_cursor();
8478#endif
8479
8480 if (*T_CCS != NUL) /* cursor relative to region */
8481 {
8482 cursor_row = row;
8483 cursor_end = end;
8484 }
8485 else
8486 {
8487 cursor_row = row + off;
8488 cursor_end = end + off;
8489 }
8490
8491 /*
8492 * Now shift LineOffset[] line_count up to reflect the deleted lines.
8493 * Clear the inserted lines in ScreenLines[].
8494 */
8495 row += off;
8496 end += off;
8497 for (i = 0; i < line_count; ++i)
8498 {
8499#ifdef FEAT_VERTSPLIT
8500 if (wp != NULL && wp->w_width != Columns)
8501 {
8502 /* need to copy part of a line */
8503 j = row + i;
8504 while ((j += line_count) <= end - 1)
8505 linecopy(j - line_count, j, wp);
8506 j -= line_count;
8507 if (can_clear((char_u *)" "))
8508 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width);
8509 else
8510 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width);
8511 LineWraps[j] = FALSE;
8512 }
8513 else
8514#endif
8515 {
8516 /* whole width, moving the line pointers is faster */
8517 j = row + i;
8518 temp = LineOffset[j];
8519 while ((j += line_count) <= end - 1)
8520 {
8521 LineOffset[j - line_count] = LineOffset[j];
8522 LineWraps[j - line_count] = LineWraps[j];
8523 }
8524 LineOffset[j - line_count] = temp;
8525 LineWraps[j - line_count] = FALSE;
8526 if (can_clear((char_u *)" "))
8527 lineclear(temp, (int)Columns);
8528 else
8529 lineinvalid(temp, (int)Columns);
8530 }
8531 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008532
8533 screen_stop_highlight();
8534
8535#ifdef FEAT_VERTSPLIT
8536 /* redraw the characters */
8537 if (type == USE_REDRAW)
8538 redraw_block(row, end, wp);
8539 else
8540#endif
8541 if (type == USE_T_CD) /* delete the lines */
8542 {
8543 windgoto(cursor_row, 0);
8544 out_str(T_CD);
8545 screen_start(); /* don't know where cursor is now */
8546 }
8547 else if (type == USE_T_CDL)
8548 {
8549 windgoto(cursor_row, 0);
8550 term_delete_lines(line_count);
8551 screen_start(); /* don't know where cursor is now */
8552 }
8553 /*
8554 * Deleting lines at top of the screen or scroll region: Just scroll
8555 * the whole screen (scroll region) up by outputting newlines on the
8556 * last line.
8557 */
8558 else if (type == USE_NL)
8559 {
8560 windgoto(cursor_end - 1, 0);
8561 for (i = line_count; --i >= 0; )
8562 out_char('\n'); /* cursor will remain on same line */
8563 }
8564 else
8565 {
8566 for (i = line_count; --i >= 0; )
8567 {
8568 if (type == USE_T_DL)
8569 {
8570 windgoto(cursor_row, 0);
8571 out_str(T_DL); /* delete a line */
8572 }
8573 else /* type == USE_T_CE */
8574 {
8575 windgoto(cursor_row + i, 0);
8576 out_str(T_CE); /* erase a line */
8577 }
8578 screen_start(); /* don't know where cursor is now */
8579 }
8580 }
8581
8582 /*
8583 * If the 'db' flag is set, we need to clear the lines that have been
8584 * scrolled up at the bottom of the region.
8585 */
8586 if (*T_DB && (type == USE_T_DL || type == USE_T_CDL))
8587 {
8588 for (i = line_count; i > 0; --i)
8589 {
8590 windgoto(cursor_end - i, 0);
8591 out_str(T_CE); /* erase a line */
8592 screen_start(); /* don't know where cursor is now */
8593 }
8594 }
8595
8596#ifdef FEAT_GUI
8597 gui_can_update_cursor();
8598 if (gui.in_use)
8599 out_flush(); /* always flush after a scroll */
8600#endif
8601
8602 return OK;
8603}
8604
8605/*
8606 * show the current mode and ruler
8607 *
8608 * If clear_cmdline is TRUE, clear the rest of the cmdline.
8609 * If clear_cmdline is FALSE there may be a message there that needs to be
8610 * cleared only if a mode is shown.
8611 * Return the length of the message (0 if no message).
8612 */
8613 int
8614showmode()
8615{
8616 int need_clear;
8617 int length = 0;
8618 int do_mode;
8619 int attr;
8620 int nwr_save;
8621#ifdef FEAT_INS_EXPAND
8622 int sub_attr;
8623#endif
8624
Bram Moolenaar7df351e2006-01-23 22:30:28 +00008625 do_mode = ((p_smd && msg_silent == 0)
8626 && ((State & INSERT)
8627 || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +00008628#ifdef FEAT_VISUAL
8629 || VIsual_active
8630#endif
8631 ));
8632 if (do_mode || Recording)
8633 {
8634 /*
8635 * Don't show mode right now, when not redrawing or inside a mapping.
8636 * Call char_avail() only when we are going to show something, because
8637 * it takes a bit of time.
8638 */
8639 if (!redrawing() || (char_avail() && !KeyTyped) || msg_silent != 0)
8640 {
8641 redraw_cmdline = TRUE; /* show mode later */
8642 return 0;
8643 }
8644
8645 nwr_save = need_wait_return;
8646
8647 /* wait a bit before overwriting an important message */
8648 check_for_delay(FALSE);
8649
8650 /* if the cmdline is more than one line high, erase top lines */
8651 need_clear = clear_cmdline;
8652 if (clear_cmdline && cmdline_row < Rows - 1)
8653 msg_clr_cmdline(); /* will reset clear_cmdline */
8654
8655 /* Position on the last line in the window, column 0 */
8656 msg_pos_mode();
8657 cursor_off();
8658 attr = hl_attr(HLF_CM); /* Highlight mode */
8659 if (do_mode)
8660 {
8661 MSG_PUTS_ATTR("--", attr);
8662#if defined(FEAT_XIM)
8663 if (xic != NULL && im_get_status() && !p_imdisable
8664 && curbuf->b_p_iminsert == B_IMODE_IM)
8665# ifdef HAVE_GTK2 /* most of the time, it's not XIM being used */
8666 MSG_PUTS_ATTR(" IM", attr);
8667# else
8668 MSG_PUTS_ATTR(" XIM", attr);
8669# endif
8670#endif
8671#if defined(FEAT_HANGULIN) && defined(FEAT_GUI)
8672 if (gui.in_use)
8673 {
8674 if (hangul_input_state_get())
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008675 MSG_PUTS_ATTR(" \307\321\261\333", attr); /* HANGUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008676 }
8677#endif
8678#ifdef FEAT_INS_EXPAND
8679 if (edit_submode != NULL) /* CTRL-X in Insert mode */
8680 {
8681 /* These messages can get long, avoid a wrap in a narrow
8682 * window. Prefer showing edit_submode_extra. */
8683 length = (Rows - msg_row) * Columns - 3;
8684 if (edit_submode_extra != NULL)
8685 length -= vim_strsize(edit_submode_extra);
8686 if (length > 0)
8687 {
8688 if (edit_submode_pre != NULL)
8689 length -= vim_strsize(edit_submode_pre);
8690 if (length - vim_strsize(edit_submode) > 0)
8691 {
8692 if (edit_submode_pre != NULL)
8693 msg_puts_attr(edit_submode_pre, attr);
8694 msg_puts_attr(edit_submode, attr);
8695 }
8696 if (edit_submode_extra != NULL)
8697 {
8698 MSG_PUTS_ATTR(" ", attr); /* add a space in between */
8699 if ((int)edit_submode_highl < (int)HLF_COUNT)
8700 sub_attr = hl_attr(edit_submode_highl);
8701 else
8702 sub_attr = attr;
8703 msg_puts_attr(edit_submode_extra, sub_attr);
8704 }
8705 }
8706 length = 0;
8707 }
8708 else
8709#endif
8710 {
8711#ifdef FEAT_VREPLACE
8712 if (State & VREPLACE_FLAG)
8713 MSG_PUTS_ATTR(_(" VREPLACE"), attr);
8714 else
8715#endif
8716 if (State & REPLACE_FLAG)
8717 MSG_PUTS_ATTR(_(" REPLACE"), attr);
8718 else if (State & INSERT)
8719 {
8720#ifdef FEAT_RIGHTLEFT
8721 if (p_ri)
8722 MSG_PUTS_ATTR(_(" REVERSE"), attr);
8723#endif
8724 MSG_PUTS_ATTR(_(" INSERT"), attr);
8725 }
8726 else if (restart_edit == 'I')
8727 MSG_PUTS_ATTR(_(" (insert)"), attr);
8728 else if (restart_edit == 'R')
8729 MSG_PUTS_ATTR(_(" (replace)"), attr);
8730 else if (restart_edit == 'V')
8731 MSG_PUTS_ATTR(_(" (vreplace)"), attr);
8732#ifdef FEAT_RIGHTLEFT
8733 if (p_hkmap)
8734 MSG_PUTS_ATTR(_(" Hebrew"), attr);
8735# ifdef FEAT_FKMAP
8736 if (p_fkmap)
8737 MSG_PUTS_ATTR(farsi_text_5, attr);
8738# endif
8739#endif
8740#ifdef FEAT_KEYMAP
8741 if (State & LANGMAP)
8742 {
8743# ifdef FEAT_ARABIC
8744 if (curwin->w_p_arab)
8745 MSG_PUTS_ATTR(_(" Arabic"), attr);
8746 else
8747# endif
8748 MSG_PUTS_ATTR(_(" (lang)"), attr);
8749 }
8750#endif
8751 if ((State & INSERT) && p_paste)
8752 MSG_PUTS_ATTR(_(" (paste)"), attr);
8753
8754#ifdef FEAT_VISUAL
8755 if (VIsual_active)
8756 {
8757 char *p;
8758
8759 /* Don't concatenate separate words to avoid translation
8760 * problems. */
8761 switch ((VIsual_select ? 4 : 0)
8762 + (VIsual_mode == Ctrl_V) * 2
8763 + (VIsual_mode == 'V'))
8764 {
8765 case 0: p = N_(" VISUAL"); break;
8766 case 1: p = N_(" VISUAL LINE"); break;
8767 case 2: p = N_(" VISUAL BLOCK"); break;
8768 case 4: p = N_(" SELECT"); break;
8769 case 5: p = N_(" SELECT LINE"); break;
8770 default: p = N_(" SELECT BLOCK"); break;
8771 }
8772 MSG_PUTS_ATTR(_(p), attr);
8773 }
8774#endif
8775 MSG_PUTS_ATTR(" --", attr);
8776 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00008777
Bram Moolenaar071d4272004-06-13 20:20:40 +00008778 need_clear = TRUE;
8779 }
8780 if (Recording
8781#ifdef FEAT_INS_EXPAND
8782 && edit_submode == NULL /* otherwise it gets too long */
8783#endif
8784 )
8785 {
8786 MSG_PUTS_ATTR(_("recording"), attr);
8787 need_clear = TRUE;
8788 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00008789
8790 mode_displayed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008791 if (need_clear || clear_cmdline)
8792 msg_clr_eos();
8793 msg_didout = FALSE; /* overwrite this message */
8794 length = msg_col;
8795 msg_col = 0;
8796 need_wait_return = nwr_save; /* never ask for hit-return for this */
8797 }
8798 else if (clear_cmdline && msg_silent == 0)
8799 /* Clear the whole command line. Will reset "clear_cmdline". */
8800 msg_clr_cmdline();
8801
8802#ifdef FEAT_CMDL_INFO
8803# ifdef FEAT_VISUAL
8804 /* In Visual mode the size of the selected area must be redrawn. */
8805 if (VIsual_active)
8806 clear_showcmd();
8807# endif
8808
8809 /* If the last window has no status line, the ruler is after the mode
8810 * message and must be redrawn */
8811 if (redrawing()
8812# ifdef FEAT_WINDOWS
8813 && lastwin->w_status_height == 0
8814# endif
8815 )
8816 win_redr_ruler(lastwin, TRUE);
8817#endif
8818 redraw_cmdline = FALSE;
8819 clear_cmdline = FALSE;
8820
8821 return length;
8822}
8823
8824/*
8825 * Position for a mode message.
8826 */
8827 static void
8828msg_pos_mode()
8829{
8830 msg_col = 0;
8831 msg_row = Rows - 1;
8832}
8833
8834/*
8835 * Delete mode message. Used when ESC is typed which is expected to end
8836 * Insert mode (but Insert mode didn't end yet!).
Bram Moolenaard12f5c12006-01-25 22:10:52 +00008837 * Caller should check "mode_displayed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008838 */
8839 void
8840unshowmode(force)
8841 int force;
8842{
8843 /*
8844 * Don't delete it right now, when not redrawing or insided a mapping.
8845 */
8846 if (!redrawing() || (!force && char_avail() && !KeyTyped))
8847 redraw_cmdline = TRUE; /* delete mode later */
8848 else
8849 {
8850 msg_pos_mode();
8851 if (Recording)
8852 MSG_PUTS_ATTR(_("recording"), hl_attr(HLF_CM));
8853 msg_clr_eos();
8854 }
8855}
8856
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008857#if defined(FEAT_WINDOWS)
8858/*
8859 * Draw the tab pages line at the top of the Vim window.
8860 */
8861 static void
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008862draw_tabline()
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008863{
8864 int tabcount = 0;
8865 tabpage_T *tp;
8866 int tabwidth;
8867 int col = 0;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00008868 int scol = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008869 int attr;
8870 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00008871 win_T *cwp;
8872 int wincount;
8873 int modified;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008874 int c;
8875 int len;
8876 int attr_sel = hl_attr(HLF_TPS);
8877 int attr_nosel = hl_attr(HLF_TP);
8878 int attr_fill = hl_attr(HLF_TPF);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00008879 char_u *p;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008880 int room;
8881 int use_sep_chars = (t_colors < 8
8882#ifdef FEAT_GUI
8883 && !gui.in_use
8884#endif
8885 );
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008886
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00008887 redraw_tabline = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008888
Bram Moolenaar32466aa2006-02-24 23:53:04 +00008889#ifdef FEAT_GUI_TABLINE
Bram Moolenaardb552d602006-03-23 22:59:57 +00008890 /* Take care of a GUI tabline. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00008891 if (gui_use_tabline())
8892 {
8893 gui_update_tabline();
8894 return;
8895 }
8896#endif
8897
8898 if (tabline_height() < 1)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008899 return;
8900
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008901#if defined(FEAT_STL_OPT)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008902
8903 /* Init TabPageIdxs[] to zero: Clicking outside of tabs has no effect. */
8904 for (scol = 0; scol < Columns; ++scol)
8905 TabPageIdxs[scol] = 0;
8906
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008907 /* Use the 'tabline' option if it's set. */
8908 if (*p_tal != NUL)
8909 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00008910 int save_called_emsg = called_emsg;
8911
8912 /* Check for an error. If there is one we would loop in redrawing the
8913 * screen. Avoid that by making 'tabline' empty. */
8914 called_emsg = FALSE;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008915 win_redr_custom(NULL, FALSE);
Bram Moolenaar238a5642006-02-21 22:12:05 +00008916 if (called_emsg)
8917 set_string_option_direct((char_u *)"tabline", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008918 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaar238a5642006-02-21 22:12:05 +00008919 called_emsg |= save_called_emsg;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008920 }
Bram Moolenaar238a5642006-02-21 22:12:05 +00008921 else
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008922#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008923 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00008924 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
8925 ++tabcount;
Bram Moolenaarf740b292006-02-16 22:11:02 +00008926
Bram Moolenaar238a5642006-02-21 22:12:05 +00008927 tabwidth = (Columns - 1 + tabcount / 2) / tabcount;
8928 if (tabwidth < 6)
8929 tabwidth = 6;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008930
Bram Moolenaar238a5642006-02-21 22:12:05 +00008931 attr = attr_nosel;
8932 tabcount = 0;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008933 scol = 0;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00008934 for (tp = first_tabpage; tp != NULL && col < Columns - 4;
8935 tp = tp->tp_next)
Bram Moolenaarf740b292006-02-16 22:11:02 +00008936 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00008937 scol = col;
Bram Moolenaarf740b292006-02-16 22:11:02 +00008938
Bram Moolenaar238a5642006-02-21 22:12:05 +00008939 if (tp->tp_topframe == topframe)
8940 attr = attr_sel;
8941 if (use_sep_chars && col > 0)
8942 screen_putchar('|', 0, col++, attr);
8943
8944 if (tp->tp_topframe != topframe)
8945 attr = attr_nosel;
8946
8947 screen_putchar(' ', 0, col++, attr);
8948
8949 if (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00008950 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00008951 cwp = curwin;
8952 wp = firstwin;
8953 }
8954 else
8955 {
8956 cwp = tp->tp_curwin;
8957 wp = tp->tp_firstwin;
8958 }
8959
8960 modified = FALSE;
8961 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
8962 if (bufIsChanged(wp->w_buffer))
8963 modified = TRUE;
8964 if (modified || wincount > 1)
8965 {
8966 if (wincount > 1)
8967 {
8968 vim_snprintf((char *)NameBuff, MAXPATHL, "%d", wincount);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008969 len = (int)STRLEN(NameBuff);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00008970 if (col + len >= Columns - 3)
8971 break;
Bram Moolenaar238a5642006-02-21 22:12:05 +00008972 screen_puts_len(NameBuff, len, 0, col,
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008973#if defined(FEAT_SYN_HL)
Bram Moolenaar238a5642006-02-21 22:12:05 +00008974 hl_combine_attr(attr, hl_attr(HLF_T))
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008975#else
Bram Moolenaar238a5642006-02-21 22:12:05 +00008976 attr
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00008977#endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00008978 );
8979 col += len;
8980 }
8981 if (modified)
8982 screen_puts_len((char_u *)"+", 1, 0, col++, attr);
8983 screen_putchar(' ', 0, col++, attr);
8984 }
8985
8986 room = scol - col + tabwidth - 1;
8987 if (room > 0)
8988 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00008989 /* Get buffer name in NameBuff[] */
8990 get_trans_bufname(cwp->w_buffer);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00008991 shorten_dir(NameBuff);
Bram Moolenaar238a5642006-02-21 22:12:05 +00008992 len = vim_strsize(NameBuff);
8993 p = NameBuff;
8994#ifdef FEAT_MBYTE
8995 if (has_mbyte)
8996 while (len > room)
8997 {
8998 len -= ptr2cells(p);
8999 mb_ptr_adv(p);
9000 }
9001 else
9002#endif
9003 if (len > room)
9004 {
9005 p += len - room;
9006 len = room;
9007 }
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00009008 if (len > Columns - col - 1)
9009 len = Columns - col - 1;
Bram Moolenaar238a5642006-02-21 22:12:05 +00009010
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009011 screen_puts_len(p, (int)STRLEN(p), 0, col, attr);
Bram Moolenaarf740b292006-02-16 22:11:02 +00009012 col += len;
9013 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00009014 screen_putchar(' ', 0, col++, attr);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009015
9016 /* Store the tab page number in TabPageIdxs[], so that
9017 * jump_to_mouse() knows where each one is. */
9018 ++tabcount;
9019 while (scol < col)
9020 TabPageIdxs[scol++] = tabcount;
Bram Moolenaarf740b292006-02-16 22:11:02 +00009021 }
9022
Bram Moolenaar238a5642006-02-21 22:12:05 +00009023 if (use_sep_chars)
9024 c = '_';
9025 else
9026 c = ' ';
9027 screen_fill(0, 1, col, (int)Columns, c, c, attr_fill);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009028
9029 /* Put an "X" for closing the current tab if there are several. */
9030 if (first_tabpage->tp_next != NULL)
9031 {
9032 screen_putchar('X', 0, (int)Columns - 1, attr_nosel);
9033 TabPageIdxs[Columns - 1] = -999;
9034 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009035 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +00009036
9037 /* Reset the flag here again, in case evaluating 'tabline' causes it to be
9038 * set. */
9039 redraw_tabline = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009040}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00009041
9042/*
9043 * Get buffer name for "buf" into NameBuff[].
9044 * Takes care of special buffer names and translates special characters.
9045 */
9046 void
9047get_trans_bufname(buf)
9048 buf_T *buf;
9049{
9050 if (buf_spname(buf) != NULL)
9051 STRCPY(NameBuff, buf_spname(buf));
9052 else
9053 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
9054 trans_characters(NameBuff, MAXPATHL);
9055}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009056#endif
9057
Bram Moolenaar071d4272004-06-13 20:20:40 +00009058#if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT)
9059/*
9060 * Get the character to use in a status line. Get its attributes in "*attr".
9061 */
9062 static int
9063fillchar_status(attr, is_curwin)
9064 int *attr;
9065 int is_curwin;
9066{
9067 int fill;
9068 if (is_curwin)
9069 {
9070 *attr = hl_attr(HLF_S);
9071 fill = fill_stl;
9072 }
9073 else
9074 {
9075 *attr = hl_attr(HLF_SNC);
9076 fill = fill_stlnc;
9077 }
9078 /* Use fill when there is highlighting, and highlighting of current
9079 * window differs, or the fillchars differ, or this is not the
9080 * current window */
9081 if (*attr != 0 && ((hl_attr(HLF_S) != hl_attr(HLF_SNC)
9082 || !is_curwin || firstwin == lastwin)
9083 || (fill_stl != fill_stlnc)))
9084 return fill;
9085 if (is_curwin)
9086 return '^';
9087 return '=';
9088}
9089#endif
9090
9091#ifdef FEAT_VERTSPLIT
9092/*
9093 * Get the character to use in a separator between vertically split windows.
9094 * Get its attributes in "*attr".
9095 */
9096 static int
9097fillchar_vsep(attr)
9098 int *attr;
9099{
9100 *attr = hl_attr(HLF_C);
9101 if (*attr == 0 && fill_vert == ' ')
9102 return '|';
9103 else
9104 return fill_vert;
9105}
9106#endif
9107
9108/*
9109 * Return TRUE if redrawing should currently be done.
9110 */
9111 int
9112redrawing()
9113{
9114 return (!RedrawingDisabled
9115 && !(p_lz && char_avail() && !KeyTyped && !do_redraw));
9116}
9117
9118/*
9119 * Return TRUE if printing messages should currently be done.
9120 */
9121 int
9122messaging()
9123{
9124 return (!(p_lz && char_avail() && !KeyTyped));
9125}
9126
9127/*
9128 * Show current status info in ruler and various other places
9129 * If always is FALSE, only show ruler if position has changed.
9130 */
9131 void
9132showruler(always)
9133 int always;
9134{
9135 if (!always && !redrawing())
9136 return;
Bram Moolenaar9372a112005-12-06 19:59:18 +00009137#ifdef FEAT_INS_EXPAND
9138 if (pum_visible())
9139 {
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00009140# ifdef FEAT_WINDOWS
Bram Moolenaar9372a112005-12-06 19:59:18 +00009141 /* Don't redraw right now, do it later. */
9142 curwin->w_redr_status = TRUE;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00009143# endif
Bram Moolenaar9372a112005-12-06 19:59:18 +00009144 return;
9145 }
9146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009147#if defined(FEAT_STL_OPT) && defined(FEAT_WINDOWS)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009148 if ((*p_stl != NUL || *curwin->w_p_stl != NUL) && curwin->w_status_height)
Bram Moolenaar238a5642006-02-21 22:12:05 +00009149 {
9150 redraw_custum_statusline(curwin);
9151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009152 else
9153#endif
9154#ifdef FEAT_CMDL_INFO
9155 win_redr_ruler(curwin, always);
9156#endif
9157
9158#ifdef FEAT_TITLE
9159 if (need_maketitle
9160# ifdef FEAT_STL_OPT
9161 || (p_icon && (stl_syntax & STL_IN_ICON))
9162 || (p_title && (stl_syntax & STL_IN_TITLE))
9163# endif
9164 )
9165 maketitle();
9166#endif
9167}
9168
9169#ifdef FEAT_CMDL_INFO
9170 static void
9171win_redr_ruler(wp, always)
9172 win_T *wp;
9173 int always;
9174{
9175 char_u buffer[70];
9176 int row;
9177 int fillchar;
9178 int attr;
9179 int empty_line = FALSE;
9180 colnr_T virtcol;
9181 int i;
9182 int o;
9183#ifdef FEAT_VERTSPLIT
9184 int this_ru_col;
9185 int off = 0;
9186 int width = Columns;
9187# define WITH_OFF(x) x
9188# define WITH_WIDTH(x) x
9189#else
9190# define WITH_OFF(x) 0
9191# define WITH_WIDTH(x) Columns
9192# define this_ru_col ru_col
9193#endif
9194
9195 /* If 'ruler' off or redrawing disabled, don't do anything */
9196 if (!p_ru)
9197 return;
9198
9199 /*
9200 * Check if cursor.lnum is valid, since win_redr_ruler() may be called
9201 * after deleting lines, before cursor.lnum is corrected.
9202 */
9203 if (wp->w_cursor.lnum > wp->w_buffer->b_ml.ml_line_count)
9204 return;
9205
9206#ifdef FEAT_INS_EXPAND
9207 /* Don't draw the ruler while doing insert-completion, it might overwrite
9208 * the (long) mode message. */
9209# ifdef FEAT_WINDOWS
9210 if (wp == lastwin && lastwin->w_status_height == 0)
9211# endif
9212 if (edit_submode != NULL)
9213 return;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00009214 /* Don't draw the ruler when the popup menu is visible, it may overlap. */
9215 if (pum_visible())
9216 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009217#endif
9218
9219#ifdef FEAT_STL_OPT
9220 if (*p_ruf)
9221 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00009222 int save_called_emsg = called_emsg;
9223
9224 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009225 win_redr_custom(wp, TRUE);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009226 if (called_emsg)
9227 set_string_option_direct((char_u *)"rulerformat", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00009228 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009229 called_emsg |= save_called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009230 return;
9231 }
9232#endif
9233
9234 /*
9235 * Check if not in Insert mode and the line is empty (will show "0-1").
9236 */
9237 if (!(State & INSERT)
9238 && *ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE) == NUL)
9239 empty_line = TRUE;
9240
9241 /*
9242 * Only draw the ruler when something changed.
9243 */
9244 validate_virtcol_win(wp);
9245 if ( redraw_cmdline
9246 || always
9247 || wp->w_cursor.lnum != wp->w_ru_cursor.lnum
9248 || wp->w_cursor.col != wp->w_ru_cursor.col
9249 || wp->w_virtcol != wp->w_ru_virtcol
9250#ifdef FEAT_VIRTUALEDIT
9251 || wp->w_cursor.coladd != wp->w_ru_cursor.coladd
9252#endif
9253 || wp->w_topline != wp->w_ru_topline
9254 || wp->w_buffer->b_ml.ml_line_count != wp->w_ru_line_count
9255#ifdef FEAT_DIFF
9256 || wp->w_topfill != wp->w_ru_topfill
9257#endif
9258 || empty_line != wp->w_ru_empty)
9259 {
9260 cursor_off();
9261#ifdef FEAT_WINDOWS
9262 if (wp->w_status_height)
9263 {
9264 row = W_WINROW(wp) + wp->w_height;
9265 fillchar = fillchar_status(&attr, wp == curwin);
9266# ifdef FEAT_VERTSPLIT
9267 off = W_WINCOL(wp);
9268 width = W_WIDTH(wp);
9269# endif
9270 }
9271 else
9272#endif
9273 {
9274 row = Rows - 1;
9275 fillchar = ' ';
9276 attr = 0;
9277#ifdef FEAT_VERTSPLIT
9278 width = Columns;
9279 off = 0;
9280#endif
9281 }
9282
9283 /* In list mode virtcol needs to be recomputed */
9284 virtcol = wp->w_virtcol;
9285 if (wp->w_p_list && lcs_tab1 == NUL)
9286 {
9287 wp->w_p_list = FALSE;
9288 getvvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
9289 wp->w_p_list = TRUE;
9290 }
9291
9292 /*
9293 * Some sprintfs return the length, some return a pointer.
9294 * To avoid portability problems we use strlen() here.
9295 */
9296 sprintf((char *)buffer, "%ld,",
9297 (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
9298 ? 0L
9299 : (long)(wp->w_cursor.lnum));
9300 col_print(buffer + STRLEN(buffer),
9301 empty_line ? 0 : (int)wp->w_cursor.col + 1,
9302 (int)virtcol + 1);
9303
9304 /*
9305 * Add a "50%" if there is room for it.
9306 * On the last line, don't print in the last column (scrolls the
9307 * screen up on some terminals).
9308 */
9309 i = (int)STRLEN(buffer);
9310 get_rel_pos(wp, buffer + i + 1);
9311 o = i + vim_strsize(buffer + i + 1);
9312#ifdef FEAT_WINDOWS
9313 if (wp->w_status_height == 0) /* can't use last char of screen */
9314#endif
9315 ++o;
9316#ifdef FEAT_VERTSPLIT
9317 this_ru_col = ru_col - (Columns - width);
9318 if (this_ru_col < 0)
9319 this_ru_col = 0;
9320#endif
9321 /* Never use more than half the window/screen width, leave the other
9322 * half for the filename. */
9323 if (this_ru_col < (WITH_WIDTH(width) + 1) / 2)
9324 this_ru_col = (WITH_WIDTH(width) + 1) / 2;
9325 if (this_ru_col + o < WITH_WIDTH(width))
9326 {
9327 while (this_ru_col + o < WITH_WIDTH(width))
9328 {
9329#ifdef FEAT_MBYTE
9330 if (has_mbyte)
9331 i += (*mb_char2bytes)(fillchar, buffer + i);
9332 else
9333#endif
9334 buffer[i++] = fillchar;
9335 ++o;
9336 }
9337 get_rel_pos(wp, buffer + i);
9338 }
9339 /* Truncate at window boundary. */
9340#ifdef FEAT_MBYTE
9341 if (has_mbyte)
9342 {
9343 o = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009344 for (i = 0; buffer[i] != NUL; i += (*mb_ptr2len)(buffer + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009345 {
9346 o += (*mb_ptr2cells)(buffer + i);
9347 if (this_ru_col + o > WITH_WIDTH(width))
9348 {
9349 buffer[i] = NUL;
9350 break;
9351 }
9352 }
9353 }
9354 else
9355#endif
9356 if (this_ru_col + (int)STRLEN(buffer) > WITH_WIDTH(width))
9357 buffer[WITH_WIDTH(width) - this_ru_col] = NUL;
9358
9359 screen_puts(buffer, row, this_ru_col + WITH_OFF(off), attr);
9360 i = redraw_cmdline;
9361 screen_fill(row, row + 1,
9362 this_ru_col + WITH_OFF(off) + (int)STRLEN(buffer),
9363 (int)(WITH_OFF(off) + WITH_WIDTH(width)),
9364 fillchar, fillchar, attr);
9365 /* don't redraw the cmdline because of showing the ruler */
9366 redraw_cmdline = i;
9367 wp->w_ru_cursor = wp->w_cursor;
9368 wp->w_ru_virtcol = wp->w_virtcol;
9369 wp->w_ru_empty = empty_line;
9370 wp->w_ru_topline = wp->w_topline;
9371 wp->w_ru_line_count = wp->w_buffer->b_ml.ml_line_count;
9372#ifdef FEAT_DIFF
9373 wp->w_ru_topfill = wp->w_topfill;
9374#endif
9375 }
9376}
9377#endif
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009378
9379#if defined(FEAT_LINEBREAK) || defined(PROTO)
9380/*
9381 * Return the width of the 'number' column.
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009382 * Caller may need to check if 'number' is set.
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009383 * Otherwise it depends on 'numberwidth' and the line count.
9384 */
9385 int
9386number_width(wp)
9387 win_T *wp;
9388{
9389 int n;
9390 linenr_T lnum;
9391
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009392 lnum = wp->w_buffer->b_ml.ml_line_count;
9393 if (lnum == wp->w_nrwidth_line_count)
9394 return wp->w_nrwidth_width;
9395 wp->w_nrwidth_line_count = lnum;
9396
9397 n = 0;
9398 do
9399 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009400 lnum /= 10;
9401 ++n;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009402 } while (lnum > 0);
9403
9404 /* 'numberwidth' gives the minimal width plus one */
9405 if (n < wp->w_p_nuw - 1)
9406 n = wp->w_p_nuw - 1;
9407
9408 wp->w_nrwidth_width = n;
9409 return n;
9410}
9411#endif