blob: 66d50a542a7210a7210db9e1ae6dadd9bae2cffd [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
Bram Moolenaar2c7a7632007-05-10 18:19:11 +000040 * called from other places when an immediate screen update is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +000041 *
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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103static match_T search_hl; /* used for 'hlsearch' highlight matching */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#endif
105
106#ifdef FEAT_FOLDING
107static foldinfo_T win_foldinfo; /* info for 'foldcolumn' */
108#endif
109
110/*
111 * Buffer for one screen line (characters and attributes).
112 */
113static schar_T *current_ScreenLine;
114
115static void win_update __ARGS((win_T *wp));
Bram Moolenaar482aaeb2005-09-29 18:26:07 +0000116static 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 +0000117#ifdef FEAT_FOLDING
118static void fold_line __ARGS((win_T *wp, long fold_count, foldinfo_T *foldinfo, linenr_T lnum, int row));
119static void fill_foldcolumn __ARGS((char_u *p, win_T *wp, int closed, linenr_T lnum));
120static void copy_text_attr __ARGS((int off, char_u *buf, int len, int attr));
121#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000122static int win_line __ARGS((win_T *, linenr_T, int, int, int nochange));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123static int char_needs_redraw __ARGS((int off_from, int off_to, int cols));
124#ifdef FEAT_RIGHTLEFT
125static void screen_line __ARGS((int row, int coloff, int endcol, int clear_width, int rlflag));
126# define SCREEN_LINE(r, o, e, c, rl) screen_line((r), (o), (e), (c), (rl))
127#else
128static void screen_line __ARGS((int row, int coloff, int endcol, int clear_width));
129# define SCREEN_LINE(r, o, e, c, rl) screen_line((r), (o), (e), (c))
130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#ifdef FEAT_VERTSPLIT
132static void draw_vsep_win __ARGS((win_T *wp, int row));
133#endif
Bram Moolenaar238a5642006-02-21 22:12:05 +0000134#ifdef FEAT_STL_OPT
135static void redraw_custum_statusline __ARGS((win_T *wp));
136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000138#define SEARCH_HL_PRIORITY 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139static void start_search_hl __ARGS((void));
140static void end_search_hl __ARGS((void));
141static void prepare_search_hl __ARGS((win_T *wp, linenr_T lnum));
142static void next_search_hl __ARGS((win_T *win, match_T *shl, linenr_T lnum, colnr_T mincol));
143#endif
144static void screen_start_highlight __ARGS((int attr));
145static void screen_char __ARGS((unsigned off, int row, int col));
146#ifdef FEAT_MBYTE
147static void screen_char_2 __ARGS((unsigned off, int row, int col));
148#endif
149static void screenclear2 __ARGS((void));
150static void lineclear __ARGS((unsigned off, int width));
151static void lineinvalid __ARGS((unsigned off, int width));
152#ifdef FEAT_VERTSPLIT
153static void linecopy __ARGS((int to, int from, win_T *wp));
154static void redraw_block __ARGS((int row, int end, win_T *wp));
155#endif
156static int win_do_lines __ARGS((win_T *wp, int row, int line_count, int mayclear, int del));
157static void win_rest_invalid __ARGS((win_T *wp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158static void msg_pos_mode __ARGS((void));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000159#if defined(FEAT_WINDOWS)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000160static void draw_tabline __ARGS((void));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000161#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162#if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT)
163static int fillchar_status __ARGS((int *attr, int is_curwin));
164#endif
165#ifdef FEAT_VERTSPLIT
166static int fillchar_vsep __ARGS((int *attr));
167#endif
168#ifdef FEAT_STL_OPT
Bram Moolenaar9372a112005-12-06 19:59:18 +0000169static void win_redr_custom __ARGS((win_T *wp, int draw_ruler));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170#endif
171#ifdef FEAT_CMDL_INFO
172static void win_redr_ruler __ARGS((win_T *wp, int always));
173#endif
174
175#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT)
176/* Ugly global: overrule attribute used by screen_char() */
177static int screen_char_attr = 0;
178#endif
179
180/*
181 * Redraw the current window later, with update_screen(type).
182 * Set must_redraw only if not already set to a higher value.
183 * e.g. if must_redraw is CLEAR, type NOT_VALID will do nothing.
184 */
185 void
186redraw_later(type)
187 int type;
188{
189 redraw_win_later(curwin, type);
190}
191
192 void
193redraw_win_later(wp, type)
194 win_T *wp;
195 int type;
196{
197 if (wp->w_redr_type < type)
198 {
199 wp->w_redr_type = type;
200 if (type >= NOT_VALID)
201 wp->w_lines_valid = 0;
202 if (must_redraw < type) /* must_redraw is the maximum of all windows */
203 must_redraw = type;
204 }
205}
206
207/*
208 * Force a complete redraw later. Also resets the highlighting. To be used
209 * after executing a shell command that messes up the screen.
210 */
211 void
212redraw_later_clear()
213{
214 redraw_all_later(CLEAR);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000215#ifdef FEAT_GUI
216 if (gui.in_use)
217 /* Use a code that will reset gui.highlight_mask in
218 * gui_stop_highlight(). */
219 screen_attr = HL_ALL + 1;
220 else
221#endif
222 /* Use attributes that is very unlikely to appear in text. */
223 screen_attr = HL_BOLD | HL_UNDERLINE | HL_INVERSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224}
225
226/*
227 * Mark all windows to be redrawn later.
228 */
229 void
230redraw_all_later(type)
231 int type;
232{
233 win_T *wp;
234
235 FOR_ALL_WINDOWS(wp)
236 {
237 redraw_win_later(wp, type);
238 }
239}
240
241/*
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000242 * Mark all windows that are editing the current buffer to be updated later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 */
244 void
245redraw_curbuf_later(type)
246 int type;
247{
248 redraw_buf_later(curbuf, type);
249}
250
251 void
252redraw_buf_later(buf, type)
253 buf_T *buf;
254 int type;
255{
256 win_T *wp;
257
258 FOR_ALL_WINDOWS(wp)
259 {
260 if (wp->w_buffer == buf)
261 redraw_win_later(wp, type);
262 }
263}
264
265/*
266 * Changed something in the current window, at buffer line "lnum", that
267 * requires that line and possibly other lines to be redrawn.
268 * Used when entering/leaving Insert mode with the cursor on a folded line.
269 * Used to remove the "$" from a change command.
270 * Note that when also inserting/deleting lines w_redraw_top and w_redraw_bot
271 * may become invalid and the whole window will have to be redrawn.
272 */
273/*ARGSUSED*/
274 void
275redrawWinline(lnum, invalid)
276 linenr_T lnum;
277 int invalid; /* window line height is invalid now */
278{
279#ifdef FEAT_FOLDING
280 int i;
281#endif
282
283 if (curwin->w_redraw_top == 0 || curwin->w_redraw_top > lnum)
284 curwin->w_redraw_top = lnum;
285 if (curwin->w_redraw_bot == 0 || curwin->w_redraw_bot < lnum)
286 curwin->w_redraw_bot = lnum;
287 redraw_later(VALID);
288
289#ifdef FEAT_FOLDING
290 if (invalid)
291 {
292 /* A w_lines[] entry for this lnum has become invalid. */
293 i = find_wl_entry(curwin, lnum);
294 if (i >= 0)
295 curwin->w_lines[i].wl_valid = FALSE;
296 }
297#endif
298}
299
300/*
301 * update all windows that are editing the current buffer
302 */
303 void
304update_curbuf(type)
305 int type;
306{
307 redraw_curbuf_later(type);
308 update_screen(type);
309}
310
311/*
312 * update_screen()
313 *
314 * Based on the current value of curwin->w_topline, transfer a screenfull
315 * of stuff from Filemem to ScreenLines[], and update curwin->w_botline.
316 */
317 void
318update_screen(type)
319 int type;
320{
321 win_T *wp;
322 static int did_intro = FALSE;
323#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CLIPBOARD)
324 int did_one;
325#endif
326
327 if (!screen_valid(TRUE))
328 return;
329
330 if (must_redraw)
331 {
332 if (type < must_redraw) /* use maximal type */
333 type = must_redraw;
Bram Moolenaar943fae42007-07-30 20:00:38 +0000334
335 /* must_redraw is reset here, so that when we run into some weird
336 * reason to redraw while busy redrawing (e.g., asynchronous
337 * scrolling), or update_topline() in win_update() will cause a
338 * scroll, the screen will be redrawn later or in win_update(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 must_redraw = 0;
340 }
341
342 /* Need to update w_lines[]. */
343 if (curwin->w_lines_valid == 0 && type < NOT_VALID)
344 type = NOT_VALID;
345
346 if (!redrawing())
347 {
348 redraw_later(type); /* remember type for next time */
349 must_redraw = type;
350 if (type > INVERTED_ALL)
351 curwin->w_lines_valid = 0; /* don't use w_lines[].wl_size now */
352 return;
353 }
354
355 updating_screen = TRUE;
356#ifdef FEAT_SYN_HL
357 ++display_tick; /* let syntax code know we're in a next round of
358 * display updating */
359#endif
360
361 /*
362 * if the screen was scrolled up when displaying a message, scroll it down
363 */
364 if (msg_scrolled)
365 {
366 clear_cmdline = TRUE;
367 if (msg_scrolled > Rows - 5) /* clearing is faster */
368 type = CLEAR;
369 else if (type != CLEAR)
370 {
371 check_for_delay(FALSE);
372 if (screen_ins_lines(0, 0, msg_scrolled, (int)Rows, NULL) == FAIL)
373 type = CLEAR;
374 FOR_ALL_WINDOWS(wp)
375 {
376 if (W_WINROW(wp) < msg_scrolled)
377 {
378 if (W_WINROW(wp) + wp->w_height > msg_scrolled
379 && wp->w_redr_type < REDRAW_TOP
380 && wp->w_lines_valid > 0
381 && wp->w_topline == wp->w_lines[0].wl_lnum)
382 {
383 wp->w_upd_rows = msg_scrolled - W_WINROW(wp);
384 wp->w_redr_type = REDRAW_TOP;
385 }
386 else
387 {
388 wp->w_redr_type = NOT_VALID;
389#ifdef FEAT_WINDOWS
390 if (W_WINROW(wp) + wp->w_height + W_STATUS_HEIGHT(wp)
391 <= msg_scrolled)
392 wp->w_redr_status = TRUE;
393#endif
394 }
395 }
396 }
397 redraw_cmdline = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000398#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +0000399 redraw_tabline = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 }
402 msg_scrolled = 0;
403 need_wait_return = FALSE;
404 }
405
406 /* reset cmdline_row now (may have been changed temporarily) */
407 compute_cmdrow();
408
409 /* Check for changed highlighting */
410 if (need_highlight_changed)
411 highlight_changed();
412
413 if (type == CLEAR) /* first clear screen */
414 {
415 screenclear(); /* will reset clear_cmdline */
416 type = NOT_VALID;
417 }
418
419 if (clear_cmdline) /* going to clear cmdline (done below) */
420 check_for_delay(FALSE);
421
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000422#ifdef FEAT_LINEBREAK
423 /* Force redraw when width of 'number' column changes. */
424 if (curwin->w_redr_type < NOT_VALID
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000425 && curwin->w_nrwidth != (curwin->w_p_nu ? number_width(curwin) : 0))
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000426 curwin->w_redr_type = NOT_VALID;
427#endif
428
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 /*
430 * Only start redrawing if there is really something to do.
431 */
432 if (type == INVERTED)
433 update_curswant();
434 if (curwin->w_redr_type < type
435 && !((type == VALID
436 && curwin->w_lines[0].wl_valid
437#ifdef FEAT_DIFF
438 && curwin->w_topfill == curwin->w_old_topfill
439 && curwin->w_botfill == curwin->w_old_botfill
440#endif
441 && curwin->w_topline == curwin->w_lines[0].wl_lnum)
442#ifdef FEAT_VISUAL
443 || (type == INVERTED
Bram Moolenaarb0c9a852006-11-28 15:14:56 +0000444 && VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 && curwin->w_old_cursor_lnum == curwin->w_cursor.lnum
446 && curwin->w_old_visual_mode == VIsual_mode
447 && (curwin->w_valid & VALID_VIRTCOL)
448 && curwin->w_old_curswant == curwin->w_curswant)
449#endif
450 ))
451 curwin->w_redr_type = type;
452
Bram Moolenaar5a305422006-04-28 22:38:25 +0000453#ifdef FEAT_WINDOWS
454 /* Redraw the tab pages line if needed. */
455 if (redraw_tabline || type >= NOT_VALID)
456 draw_tabline();
457#endif
458
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459#ifdef FEAT_SYN_HL
460 /*
461 * Correct stored syntax highlighting info for changes in each displayed
462 * buffer. Each buffer must only be done once.
463 */
464 FOR_ALL_WINDOWS(wp)
465 {
466 if (wp->w_buffer->b_mod_set)
467 {
468# ifdef FEAT_WINDOWS
469 win_T *wwp;
470
471 /* Check if we already did this buffer. */
472 for (wwp = firstwin; wwp != wp; wwp = wwp->w_next)
473 if (wwp->w_buffer == wp->w_buffer)
474 break;
475# endif
476 if (
477# ifdef FEAT_WINDOWS
478 wwp == wp &&
479# endif
480 syntax_present(wp->w_buffer))
481 syn_stack_apply_changes(wp->w_buffer);
482 }
483 }
484#endif
485
486 /*
487 * Go from top to bottom through the windows, redrawing the ones that need
488 * it.
489 */
490#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CLIPBOARD)
491 did_one = FALSE;
492#endif
493#ifdef FEAT_SEARCH_EXTRA
494 search_hl.rm.regprog = NULL;
495#endif
496 FOR_ALL_WINDOWS(wp)
497 {
498 if (wp->w_redr_type != 0)
499 {
500 cursor_off();
501#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CLIPBOARD)
502 if (!did_one)
503 {
504 did_one = TRUE;
505# ifdef FEAT_SEARCH_EXTRA
506 start_search_hl();
507# endif
508# ifdef FEAT_CLIPBOARD
509 /* When Visual area changed, may have to update selection. */
510 if (clip_star.available && clip_isautosel())
511 clip_update_selection();
512# endif
513#ifdef FEAT_GUI
514 /* Remove the cursor before starting to do anything, because
515 * scrolling may make it difficult to redraw the text under
516 * it. */
517 if (gui.in_use)
518 gui_undraw_cursor();
519#endif
520 }
521#endif
522 win_update(wp);
523 }
524
525#ifdef FEAT_WINDOWS
526 /* redraw status line after the window to minimize cursor movement */
527 if (wp->w_redr_status)
528 {
529 cursor_off();
530 win_redr_status(wp);
531 }
532#endif
533 }
534#if defined(FEAT_SEARCH_EXTRA)
535 end_search_hl();
536#endif
537
538#ifdef FEAT_WINDOWS
539 /* Reset b_mod_set flags. Going through all windows is probably faster
540 * than going through all buffers (there could be many buffers). */
541 for (wp = firstwin; wp != NULL; wp = wp->w_next)
542 wp->w_buffer->b_mod_set = FALSE;
543#else
544 curbuf->b_mod_set = FALSE;
545#endif
546
547 updating_screen = FALSE;
548#ifdef FEAT_GUI
549 gui_may_resize_shell();
550#endif
551
552 /* Clear or redraw the command line. Done last, because scrolling may
553 * mess up the command line. */
554 if (clear_cmdline || redraw_cmdline)
555 showmode();
556
557 /* May put up an introductory message when not editing a file */
558 if (!did_intro && bufempty()
559 && curbuf->b_fname == NULL
560#ifdef FEAT_WINDOWS
561 && firstwin->w_next == NULL
562#endif
563 && vim_strchr(p_shm, SHM_INTRO) == NULL)
564 intro_message(FALSE);
565 did_intro = TRUE;
566
567#ifdef FEAT_GUI
568 /* Redraw the cursor and update the scrollbars when all screen updating is
569 * done. */
570 if (gui.in_use)
571 {
572 out_flush(); /* required before updating the cursor */
573 if (did_one)
574 gui_update_cursor(FALSE, FALSE);
575 gui_update_scrollbars(FALSE);
576 }
577#endif
578}
579
580#if defined(FEAT_SIGNS) || defined(FEAT_GUI)
581static void update_prepare __ARGS((void));
582static void update_finish __ARGS((void));
583
584/*
585 * Prepare for updating one or more windows.
586 */
587 static void
588update_prepare()
589{
590 cursor_off();
591 updating_screen = TRUE;
592#ifdef FEAT_GUI
593 /* Remove the cursor before starting to do anything, because scrolling may
594 * make it difficult to redraw the text under it. */
595 if (gui.in_use)
596 gui_undraw_cursor();
597#endif
598#ifdef FEAT_SEARCH_EXTRA
599 start_search_hl();
600#endif
601}
602
603/*
604 * Finish updating one or more windows.
605 */
606 static void
607update_finish()
608{
609 if (redraw_cmdline)
610 showmode();
611
612# ifdef FEAT_SEARCH_EXTRA
613 end_search_hl();
614# endif
615
616 updating_screen = FALSE;
617
618# ifdef FEAT_GUI
619 gui_may_resize_shell();
620
621 /* Redraw the cursor and update the scrollbars when all screen updating is
622 * done. */
623 if (gui.in_use)
624 {
625 out_flush(); /* required before updating the cursor */
626 gui_update_cursor(FALSE, FALSE);
627 gui_update_scrollbars(FALSE);
628 }
629# endif
630}
631#endif
632
633#if defined(FEAT_SIGNS) || defined(PROTO)
634 void
635update_debug_sign(buf, lnum)
636 buf_T *buf;
637 linenr_T lnum;
638{
639 win_T *wp;
640 int doit = FALSE;
641
642# ifdef FEAT_FOLDING
643 win_foldinfo.fi_level = 0;
644# endif
645
646 /* update/delete a specific mark */
647 FOR_ALL_WINDOWS(wp)
648 {
649 if (buf != NULL && lnum > 0)
650 {
651 if (wp->w_buffer == buf && lnum >= wp->w_topline
652 && lnum < wp->w_botline)
653 {
654 if (wp->w_redraw_top == 0 || wp->w_redraw_top > lnum)
655 wp->w_redraw_top = lnum;
656 if (wp->w_redraw_bot == 0 || wp->w_redraw_bot < lnum)
657 wp->w_redraw_bot = lnum;
658 redraw_win_later(wp, VALID);
659 }
660 }
661 else
662 redraw_win_later(wp, VALID);
663 if (wp->w_redr_type != 0)
664 doit = TRUE;
665 }
666
667 if (!doit)
668 return;
669
670 /* update all windows that need updating */
671 update_prepare();
672
673# ifdef FEAT_WINDOWS
674 for (wp = firstwin; wp; wp = wp->w_next)
675 {
676 if (wp->w_redr_type != 0)
677 win_update(wp);
678 if (wp->w_redr_status)
679 win_redr_status(wp);
680 }
681# else
682 if (curwin->w_redr_type != 0)
683 win_update(curwin);
684# endif
685
686 update_finish();
687}
688#endif
689
690
691#if defined(FEAT_GUI) || defined(PROTO)
692/*
693 * Update a single window, its status line and maybe the command line msg.
694 * Used for the GUI scrollbar.
695 */
696 void
697updateWindow(wp)
698 win_T *wp;
699{
700 update_prepare();
701
702#ifdef FEAT_CLIPBOARD
703 /* When Visual area changed, may have to update selection. */
704 if (clip_star.available && clip_isautosel())
705 clip_update_selection();
706#endif
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000707
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 win_update(wp);
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000709
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710#ifdef FEAT_WINDOWS
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000711 /* When the screen was cleared redraw the tab pages line. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +0000712 if (redraw_tabline)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000713 draw_tabline();
Bram Moolenaar4c7ed462006-02-15 22:18:42 +0000714
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 if (wp->w_redr_status
716# ifdef FEAT_CMDL_INFO
717 || p_ru
718# endif
719# ifdef FEAT_STL_OPT
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000720 || *p_stl != NUL || *wp->w_p_stl != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721# endif
722 )
723 win_redr_status(wp);
724#endif
725
726 update_finish();
727}
728#endif
729
730/*
731 * Update a single window.
732 *
733 * This may cause the windows below it also to be redrawn (when clearing the
734 * screen or scrolling lines).
735 *
736 * How the window is redrawn depends on wp->w_redr_type. Each type also
737 * implies the one below it.
738 * NOT_VALID redraw the whole window
Bram Moolenaar600dddc2006-03-12 22:05:10 +0000739 * SOME_VALID redraw the whole window but do scroll when possible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 * REDRAW_TOP redraw the top w_upd_rows window lines, otherwise like VALID
741 * INVERTED redraw the changed part of the Visual area
742 * INVERTED_ALL redraw the whole Visual area
743 * VALID 1. scroll up/down to adjust for a changed w_topline
744 * 2. update lines at the top when scrolled down
745 * 3. redraw changed text:
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000746 * - if wp->w_buffer->b_mod_set set, update lines between
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 * b_mod_top and b_mod_bot.
748 * - if wp->w_redraw_top non-zero, redraw lines between
749 * wp->w_redraw_top and wp->w_redr_bot.
750 * - continue redrawing when syntax status is invalid.
751 * 4. if scrolled up, update lines at the bottom.
752 * This results in three areas that may need updating:
753 * top: from first row to top_end (when scrolled down)
754 * mid: from mid_start to mid_end (update inversion or changed text)
755 * bot: from bot_start to last row (when scrolled up)
756 */
757 static void
758win_update(wp)
759 win_T *wp;
760{
761 buf_T *buf = wp->w_buffer;
762 int type;
763 int top_end = 0; /* Below last row of the top area that needs
764 updating. 0 when no top area updating. */
765 int mid_start = 999;/* first row of the mid area that needs
766 updating. 999 when no mid area updating. */
767 int mid_end = 0; /* Below last row of the mid area that needs
768 updating. 0 when no mid area updating. */
769 int bot_start = 999;/* first row of the bot area that needs
770 updating. 999 when no bot area updating */
771#ifdef FEAT_VISUAL
772 int scrolled_down = FALSE; /* TRUE when scrolled down when
773 w_topline got smaller a bit */
774#endif
775#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000776 matchitem_T *cur; /* points to the match list */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 int top_to_mod = FALSE; /* redraw above mod_top */
778#endif
779
780 int row; /* current window row to display */
781 linenr_T lnum; /* current buffer lnum to display */
782 int idx; /* current index in w_lines[] */
783 int srow; /* starting row of the current line */
784
785 int eof = FALSE; /* if TRUE, we hit the end of the file */
786 int didline = FALSE; /* if TRUE, we finished the last line */
787 int i;
788 long j;
789 static int recursive = FALSE; /* being called recursively */
790 int old_botline = wp->w_botline;
791#ifdef FEAT_FOLDING
792 long fold_count;
793#endif
794#ifdef FEAT_SYN_HL
795 /* remember what happened to the previous line, to know if
796 * check_visual_highlight() can be used */
797#define DID_NONE 1 /* didn't update a line */
798#define DID_LINE 2 /* updated a normal line */
799#define DID_FOLD 3 /* updated a folded line */
800 int did_update = DID_NONE;
801 linenr_T syntax_last_parsed = 0; /* last parsed text line */
802#endif
803 linenr_T mod_top = 0;
804 linenr_T mod_bot = 0;
805#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA)
806 int save_got_int;
807#endif
808
809 type = wp->w_redr_type;
810
811 if (type == NOT_VALID)
812 {
813#ifdef FEAT_WINDOWS
814 wp->w_redr_status = TRUE;
815#endif
816 wp->w_lines_valid = 0;
817 }
818
819 /* Window is zero-height: nothing to draw. */
820 if (wp->w_height == 0)
821 {
822 wp->w_redr_type = 0;
823 return;
824 }
825
826#ifdef FEAT_VERTSPLIT
827 /* Window is zero-width: Only need to draw the separator. */
828 if (wp->w_width == 0)
829 {
830 /* draw the vertical separator right of this window */
831 draw_vsep_win(wp, 0);
832 wp->w_redr_type = 0;
833 return;
834 }
835#endif
836
837#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000838 /* Setup for match and 'hlsearch' highlighting. Disable any previous
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000839 * match */
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000840 cur = wp->w_match_head;
841 while (cur != NULL)
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000842 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000843 cur->hl.rm = cur->match;
844 if (cur->hlg_id == 0)
845 cur->hl.attr = 0;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000846 else
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000847 cur->hl.attr = syn_id2attr(cur->hlg_id);
848 cur->hl.buf = buf;
849 cur->hl.lnum = 0;
850 cur->hl.first_lnum = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000851# ifdef FEAT_RELTIME
852 /* Set the time limit to 'redrawtime'. */
853 profile_setlimit(p_rdt, &(cur->hl.tm));
854# endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000855 cur = cur->next;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 search_hl.buf = buf;
858 search_hl.lnum = 0;
859 search_hl.first_lnum = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000860 /* time limit is set at the toplevel, for all windows */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861#endif
862
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000863#ifdef FEAT_LINEBREAK
864 /* Force redraw when width of 'number' column changes. */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000865 i = wp->w_p_nu ? number_width(wp) : 0;
866 if (wp->w_nrwidth != i)
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000867 {
868 type = NOT_VALID;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000869 wp->w_nrwidth = i;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000870 }
871 else
872#endif
873
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 if (buf->b_mod_set && buf->b_mod_xlines != 0 && wp->w_redraw_top != 0)
875 {
876 /*
877 * When there are both inserted/deleted lines and specific lines to be
878 * redrawn, w_redraw_top and w_redraw_bot may be invalid, just redraw
879 * everything (only happens when redrawing is off for while).
880 */
881 type = NOT_VALID;
882 }
883 else
884 {
885 /*
886 * Set mod_top to the first line that needs displaying because of
887 * changes. Set mod_bot to the first line after the changes.
888 */
889 mod_top = wp->w_redraw_top;
890 if (wp->w_redraw_bot != 0)
891 mod_bot = wp->w_redraw_bot + 1;
892 else
893 mod_bot = 0;
894 wp->w_redraw_top = 0; /* reset for next time */
895 wp->w_redraw_bot = 0;
896 if (buf->b_mod_set)
897 {
898 if (mod_top == 0 || mod_top > buf->b_mod_top)
899 {
900 mod_top = buf->b_mod_top;
901#ifdef FEAT_SYN_HL
902 /* Need to redraw lines above the change that may be included
903 * in a pattern match. */
904 if (syntax_present(buf))
905 {
906 mod_top -= buf->b_syn_sync_linebreaks;
907 if (mod_top < 1)
908 mod_top = 1;
909 }
910#endif
911 }
912 if (mod_bot == 0 || mod_bot < buf->b_mod_bot)
913 mod_bot = buf->b_mod_bot;
914
915#ifdef FEAT_SEARCH_EXTRA
916 /* When 'hlsearch' is on and using a multi-line search pattern, a
917 * change in one line may make the Search highlighting in a
918 * previous line invalid. Simple solution: redraw all visible
919 * lines above the change.
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000920 * Same for a match pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000922 if (search_hl.rm.regprog != NULL
923 && re_multiline(search_hl.rm.regprog))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 top_to_mod = TRUE;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000925 else
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000926 {
927 cur = wp->w_match_head;
928 while (cur != NULL)
929 {
930 if (cur->match.regprog != NULL
931 && re_multiline(cur->match.regprog))
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000932 {
933 top_to_mod = TRUE;
934 break;
935 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000936 cur = cur->next;
937 }
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
Bram Moolenaar367329b2007-08-30 11:53:22 +00001032 /* Trick: we want to avoid clearing the screen twice. screenclear() will
Bram Moolenaar943fae42007-07-30 20:00:38 +00001033 * set "screen_cleared" to TRUE. The special value MAYBE (which is still
1034 * non-zero and thus not FALSE) will indicate that screenclear() was not
1035 * called. */
1036 if (screen_cleared)
1037 screen_cleared = MAYBE;
1038
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 /*
1040 * If there are no changes on the screen that require a complete redraw,
1041 * handle three cases:
1042 * 1: we are off the top of the screen by a few lines: scroll down
1043 * 2: wp->w_topline is below wp->w_lines[0].wl_lnum: may scroll up
1044 * 3: wp->w_topline is wp->w_lines[0].wl_lnum: find first entry in
1045 * w_lines[] that needs updating.
1046 */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001047 if ((type == VALID || type == SOME_VALID
1048 || type == INVERTED || type == INVERTED_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049#ifdef FEAT_DIFF
1050 && !wp->w_botfill && !wp->w_old_botfill
1051#endif
1052 )
1053 {
1054 if (mod_top != 0 && wp->w_topline == mod_top)
1055 {
1056 /*
1057 * w_topline is the first changed line, the scrolling will be done
1058 * further down.
1059 */
1060 }
1061 else if (wp->w_lines[0].wl_valid
1062 && (wp->w_topline < wp->w_lines[0].wl_lnum
1063#ifdef FEAT_DIFF
1064 || (wp->w_topline == wp->w_lines[0].wl_lnum
1065 && wp->w_topfill > wp->w_old_topfill)
1066#endif
1067 ))
1068 {
1069 /*
1070 * New topline is above old topline: May scroll down.
1071 */
1072#ifdef FEAT_FOLDING
1073 if (hasAnyFolding(wp))
1074 {
1075 linenr_T ln;
1076
1077 /* count the number of lines we are off, counting a sequence
1078 * of folded lines as one */
1079 j = 0;
1080 for (ln = wp->w_topline; ln < wp->w_lines[0].wl_lnum; ++ln)
1081 {
1082 ++j;
1083 if (j >= wp->w_height - 2)
1084 break;
1085 (void)hasFoldingWin(wp, ln, NULL, &ln, TRUE, NULL);
1086 }
1087 }
1088 else
1089#endif
1090 j = wp->w_lines[0].wl_lnum - wp->w_topline;
1091 if (j < wp->w_height - 2) /* not too far off */
1092 {
1093 i = plines_m_win(wp, wp->w_topline, wp->w_lines[0].wl_lnum - 1);
1094#ifdef FEAT_DIFF
1095 /* insert extra lines for previously invisible filler lines */
1096 if (wp->w_lines[0].wl_lnum != wp->w_topline)
1097 i += diff_check_fill(wp, wp->w_lines[0].wl_lnum)
1098 - wp->w_old_topfill;
1099#endif
1100 if (i < wp->w_height - 2) /* less than a screen off */
1101 {
1102 /*
1103 * Try to insert the correct number of lines.
1104 * If not the last window, delete the lines at the bottom.
1105 * win_ins_lines may fail when the terminal can't do it.
1106 */
1107 if (i > 0)
1108 check_for_delay(FALSE);
1109 if (win_ins_lines(wp, 0, i, FALSE, wp == firstwin) == OK)
1110 {
1111 if (wp->w_lines_valid != 0)
1112 {
1113 /* Need to update rows that are new, stop at the
1114 * first one that scrolled down. */
1115 top_end = i;
1116#ifdef FEAT_VISUAL
1117 scrolled_down = TRUE;
1118#endif
1119
1120 /* Move the entries that were scrolled, disable
1121 * the entries for the lines to be redrawn. */
1122 if ((wp->w_lines_valid += j) > wp->w_height)
1123 wp->w_lines_valid = wp->w_height;
1124 for (idx = wp->w_lines_valid; idx - j >= 0; idx--)
1125 wp->w_lines[idx] = wp->w_lines[idx - j];
1126 while (idx >= 0)
1127 wp->w_lines[idx--].wl_valid = FALSE;
1128 }
1129 }
1130 else
1131 mid_start = 0; /* redraw all lines */
1132 }
1133 else
1134 mid_start = 0; /* redraw all lines */
1135 }
1136 else
1137 mid_start = 0; /* redraw all lines */
1138 }
1139 else
1140 {
1141 /*
1142 * New topline is at or below old topline: May scroll up.
1143 * When topline didn't change, find first entry in w_lines[] that
1144 * needs updating.
1145 */
1146
1147 /* try to find wp->w_topline in wp->w_lines[].wl_lnum */
1148 j = -1;
1149 row = 0;
1150 for (i = 0; i < wp->w_lines_valid; i++)
1151 {
1152 if (wp->w_lines[i].wl_valid
1153 && wp->w_lines[i].wl_lnum == wp->w_topline)
1154 {
1155 j = i;
1156 break;
1157 }
1158 row += wp->w_lines[i].wl_size;
1159 }
1160 if (j == -1)
1161 {
1162 /* if wp->w_topline is not in wp->w_lines[].wl_lnum redraw all
1163 * lines */
1164 mid_start = 0;
1165 }
1166 else
1167 {
1168 /*
1169 * Try to delete the correct number of lines.
1170 * wp->w_topline is at wp->w_lines[i].wl_lnum.
1171 */
1172#ifdef FEAT_DIFF
1173 /* If the topline didn't change, delete old filler lines,
1174 * otherwise delete filler lines of the new topline... */
1175 if (wp->w_lines[0].wl_lnum == wp->w_topline)
1176 row += wp->w_old_topfill;
1177 else
1178 row += diff_check_fill(wp, wp->w_topline);
1179 /* ... but don't delete new filler lines. */
1180 row -= wp->w_topfill;
1181#endif
1182 if (row > 0)
1183 {
1184 check_for_delay(FALSE);
1185 if (win_del_lines(wp, 0, row, FALSE, wp == firstwin) == OK)
1186 bot_start = wp->w_height - row;
1187 else
1188 mid_start = 0; /* redraw all lines */
1189 }
1190 if ((row == 0 || bot_start < 999) && wp->w_lines_valid != 0)
1191 {
1192 /*
1193 * Skip the lines (below the deleted lines) that are still
1194 * valid and don't need redrawing. Copy their info
1195 * upwards, to compensate for the deleted lines. Set
1196 * bot_start to the first row that needs redrawing.
1197 */
1198 bot_start = 0;
1199 idx = 0;
1200 for (;;)
1201 {
1202 wp->w_lines[idx] = wp->w_lines[j];
1203 /* stop at line that didn't fit, unless it is still
1204 * valid (no lines deleted) */
1205 if (row > 0 && bot_start + row
1206 + (int)wp->w_lines[j].wl_size > wp->w_height)
1207 {
1208 wp->w_lines_valid = idx + 1;
1209 break;
1210 }
1211 bot_start += wp->w_lines[idx++].wl_size;
1212
1213 /* stop at the last valid entry in w_lines[].wl_size */
1214 if (++j >= wp->w_lines_valid)
1215 {
1216 wp->w_lines_valid = idx;
1217 break;
1218 }
1219 }
1220#ifdef FEAT_DIFF
1221 /* Correct the first entry for filler lines at the top
1222 * when it won't get updated below. */
1223 if (wp->w_p_diff && bot_start > 0)
1224 wp->w_lines[0].wl_size =
1225 plines_win_nofill(wp, wp->w_topline, TRUE)
1226 + wp->w_topfill;
1227#endif
1228 }
1229 }
1230 }
1231
1232 /* When starting redraw in the first line, redraw all lines. When
1233 * there is only one window it's probably faster to clear the screen
1234 * first. */
1235 if (mid_start == 0)
1236 {
1237 mid_end = wp->w_height;
1238 if (lastwin == firstwin)
Bram Moolenaarbc1a7c32006-09-14 19:04:14 +00001239 {
Bram Moolenaar943fae42007-07-30 20:00:38 +00001240 /* Clear the screen when it was not done by win_del_lines() or
1241 * win_ins_lines() above, "screen_cleared" is FALSE or MAYBE
1242 * then. */
1243 if (screen_cleared != TRUE)
1244 screenclear();
Bram Moolenaarbc1a7c32006-09-14 19:04:14 +00001245#ifdef FEAT_WINDOWS
1246 /* The screen was cleared, redraw the tab pages line. */
1247 if (redraw_tabline)
1248 draw_tabline();
1249#endif
1250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 }
Bram Moolenaar943fae42007-07-30 20:00:38 +00001252
1253 /* When win_del_lines() or win_ins_lines() caused the screen to be
1254 * cleared (only happens for the first window) or when screenclear()
1255 * was called directly above, "must_redraw" will have been set to
1256 * NOT_VALID, need to reset it here to avoid redrawing twice. */
1257 if (screen_cleared == TRUE)
1258 must_redraw = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 }
1260 else
1261 {
1262 /* Not VALID or INVERTED: redraw all lines. */
1263 mid_start = 0;
1264 mid_end = wp->w_height;
1265 }
1266
Bram Moolenaar600dddc2006-03-12 22:05:10 +00001267 if (type == SOME_VALID)
1268 {
1269 /* SOME_VALID: redraw all lines. */
1270 mid_start = 0;
1271 mid_end = wp->w_height;
1272 type = NOT_VALID;
1273 }
1274
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275#ifdef FEAT_VISUAL
1276 /* check if we are updating or removing the inverted part */
1277 if ((VIsual_active && buf == curwin->w_buffer)
1278 || (wp->w_old_cursor_lnum != 0 && type != NOT_VALID))
1279 {
1280 linenr_T from, to;
1281
1282 if (VIsual_active)
1283 {
1284 if (VIsual_active
1285 && (VIsual_mode != wp->w_old_visual_mode
1286 || type == INVERTED_ALL))
1287 {
1288 /*
1289 * If the type of Visual selection changed, redraw the whole
1290 * selection. Also when the ownership of the X selection is
1291 * gained or lost.
1292 */
1293 if (curwin->w_cursor.lnum < VIsual.lnum)
1294 {
1295 from = curwin->w_cursor.lnum;
1296 to = VIsual.lnum;
1297 }
1298 else
1299 {
1300 from = VIsual.lnum;
1301 to = curwin->w_cursor.lnum;
1302 }
1303 /* redraw more when the cursor moved as well */
1304 if (wp->w_old_cursor_lnum < from)
1305 from = wp->w_old_cursor_lnum;
1306 if (wp->w_old_cursor_lnum > to)
1307 to = wp->w_old_cursor_lnum;
1308 if (wp->w_old_visual_lnum < from)
1309 from = wp->w_old_visual_lnum;
1310 if (wp->w_old_visual_lnum > to)
1311 to = wp->w_old_visual_lnum;
1312 }
1313 else
1314 {
1315 /*
1316 * Find the line numbers that need to be updated: The lines
1317 * between the old cursor position and the current cursor
1318 * position. Also check if the Visual position changed.
1319 */
1320 if (curwin->w_cursor.lnum < wp->w_old_cursor_lnum)
1321 {
1322 from = curwin->w_cursor.lnum;
1323 to = wp->w_old_cursor_lnum;
1324 }
1325 else
1326 {
1327 from = wp->w_old_cursor_lnum;
1328 to = curwin->w_cursor.lnum;
1329 if (from == 0) /* Visual mode just started */
1330 from = to;
1331 }
1332
Bram Moolenaar6c131c42005-07-19 22:17:30 +00001333 if (VIsual.lnum != wp->w_old_visual_lnum
1334 || VIsual.col != wp->w_old_visual_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 {
1336 if (wp->w_old_visual_lnum < from
1337 && wp->w_old_visual_lnum != 0)
1338 from = wp->w_old_visual_lnum;
1339 if (wp->w_old_visual_lnum > to)
1340 to = wp->w_old_visual_lnum;
1341 if (VIsual.lnum < from)
1342 from = VIsual.lnum;
1343 if (VIsual.lnum > to)
1344 to = VIsual.lnum;
1345 }
1346 }
1347
1348 /*
1349 * If in block mode and changed column or curwin->w_curswant:
1350 * update all lines.
1351 * First compute the actual start and end column.
1352 */
1353 if (VIsual_mode == Ctrl_V)
1354 {
1355 colnr_T fromc, toc;
1356
1357 getvcols(wp, &VIsual, &curwin->w_cursor, &fromc, &toc);
1358 ++toc;
1359 if (curwin->w_curswant == MAXCOL)
1360 toc = MAXCOL;
1361
1362 if (fromc != wp->w_old_cursor_fcol
1363 || toc != wp->w_old_cursor_lcol)
1364 {
1365 if (from > VIsual.lnum)
1366 from = VIsual.lnum;
1367 if (to < VIsual.lnum)
1368 to = VIsual.lnum;
1369 }
1370 wp->w_old_cursor_fcol = fromc;
1371 wp->w_old_cursor_lcol = toc;
1372 }
1373 }
1374 else
1375 {
1376 /* Use the line numbers of the old Visual area. */
1377 if (wp->w_old_cursor_lnum < wp->w_old_visual_lnum)
1378 {
1379 from = wp->w_old_cursor_lnum;
1380 to = wp->w_old_visual_lnum;
1381 }
1382 else
1383 {
1384 from = wp->w_old_visual_lnum;
1385 to = wp->w_old_cursor_lnum;
1386 }
1387 }
1388
1389 /*
1390 * There is no need to update lines above the top of the window.
1391 */
1392 if (from < wp->w_topline)
1393 from = wp->w_topline;
1394
1395 /*
1396 * If we know the value of w_botline, use it to restrict the update to
1397 * the lines that are visible in the window.
1398 */
1399 if (wp->w_valid & VALID_BOTLINE)
1400 {
1401 if (from >= wp->w_botline)
1402 from = wp->w_botline - 1;
1403 if (to >= wp->w_botline)
1404 to = wp->w_botline - 1;
1405 }
1406
1407 /*
1408 * Find the minimal part to be updated.
1409 * Watch out for scrolling that made entries in w_lines[] invalid.
1410 * E.g., CTRL-U makes the first half of w_lines[] invalid and sets
1411 * top_end; need to redraw from top_end to the "to" line.
1412 * A middle mouse click with a Visual selection may change the text
1413 * above the Visual area and reset wl_valid, do count these for
1414 * mid_end (in srow).
1415 */
1416 if (mid_start > 0)
1417 {
1418 lnum = wp->w_topline;
1419 idx = 0;
1420 srow = 0;
1421 if (scrolled_down)
1422 mid_start = top_end;
1423 else
1424 mid_start = 0;
1425 while (lnum < from && idx < wp->w_lines_valid) /* find start */
1426 {
1427 if (wp->w_lines[idx].wl_valid)
1428 mid_start += wp->w_lines[idx].wl_size;
1429 else if (!scrolled_down)
1430 srow += wp->w_lines[idx].wl_size;
1431 ++idx;
1432# ifdef FEAT_FOLDING
1433 if (idx < wp->w_lines_valid && wp->w_lines[idx].wl_valid)
1434 lnum = wp->w_lines[idx].wl_lnum;
1435 else
1436# endif
1437 ++lnum;
1438 }
1439 srow += mid_start;
1440 mid_end = wp->w_height;
1441 for ( ; idx < wp->w_lines_valid; ++idx) /* find end */
1442 {
1443 if (wp->w_lines[idx].wl_valid
1444 && wp->w_lines[idx].wl_lnum >= to + 1)
1445 {
1446 /* Only update until first row of this line */
1447 mid_end = srow;
1448 break;
1449 }
1450 srow += wp->w_lines[idx].wl_size;
1451 }
1452 }
1453 }
1454
1455 if (VIsual_active && buf == curwin->w_buffer)
1456 {
1457 wp->w_old_visual_mode = VIsual_mode;
1458 wp->w_old_cursor_lnum = curwin->w_cursor.lnum;
1459 wp->w_old_visual_lnum = VIsual.lnum;
Bram Moolenaar6c131c42005-07-19 22:17:30 +00001460 wp->w_old_visual_col = VIsual.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 wp->w_old_curswant = curwin->w_curswant;
1462 }
1463 else
1464 {
1465 wp->w_old_visual_mode = 0;
1466 wp->w_old_cursor_lnum = 0;
1467 wp->w_old_visual_lnum = 0;
Bram Moolenaar6c131c42005-07-19 22:17:30 +00001468 wp->w_old_visual_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 }
1470#endif /* FEAT_VISUAL */
1471
1472#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA)
1473 /* reset got_int, otherwise regexp won't work */
1474 save_got_int = got_int;
1475 got_int = 0;
1476#endif
1477#ifdef FEAT_FOLDING
1478 win_foldinfo.fi_level = 0;
1479#endif
1480
1481 /*
1482 * Update all the window rows.
1483 */
1484 idx = 0; /* first entry in w_lines[].wl_size */
1485 row = 0;
1486 srow = 0;
1487 lnum = wp->w_topline; /* first line shown in window */
1488 for (;;)
1489 {
1490 /* stop updating when reached the end of the window (check for _past_
1491 * the end of the window is at the end of the loop) */
1492 if (row == wp->w_height)
1493 {
1494 didline = TRUE;
1495 break;
1496 }
1497
1498 /* stop updating when hit the end of the file */
1499 if (lnum > buf->b_ml.ml_line_count)
1500 {
1501 eof = TRUE;
1502 break;
1503 }
1504
1505 /* Remember the starting row of the line that is going to be dealt
1506 * with. It is used further down when the line doesn't fit. */
1507 srow = row;
1508
1509 /*
1510 * Update a line when it is in an area that needs updating, when it
1511 * has changes or w_lines[idx] is invalid.
1512 * bot_start may be halfway a wrapped line after using
1513 * win_del_lines(), check if the current line includes it.
1514 * When syntax folding is being used, the saved syntax states will
1515 * already have been updated, we can't see where the syntax state is
1516 * the same again, just update until the end of the window.
1517 */
1518 if (row < top_end
1519 || (row >= mid_start && row < mid_end)
1520#ifdef FEAT_SEARCH_EXTRA
1521 || top_to_mod
1522#endif
1523 || idx >= wp->w_lines_valid
1524 || (row + wp->w_lines[idx].wl_size > bot_start)
1525 || (mod_top != 0
1526 && (lnum == mod_top
1527 || (lnum >= mod_top
1528 && (lnum < mod_bot
1529#ifdef FEAT_SYN_HL
1530 || did_update == DID_FOLD
1531 || (did_update == DID_LINE
1532 && syntax_present(buf)
1533 && (
1534# ifdef FEAT_FOLDING
1535 (foldmethodIsSyntax(wp)
1536 && hasAnyFolding(wp)) ||
1537# endif
1538 syntax_check_changed(lnum)))
1539#endif
1540 )))))
1541 {
1542#ifdef FEAT_SEARCH_EXTRA
1543 if (lnum == mod_top)
1544 top_to_mod = FALSE;
1545#endif
1546
1547 /*
1548 * When at start of changed lines: May scroll following lines
1549 * up or down to minimize redrawing.
1550 * Don't do this when the change continues until the end.
1551 * Don't scroll when dollar_vcol is non-zero, keep the "$".
1552 */
1553 if (lnum == mod_top
1554 && mod_bot != MAXLNUM
1555 && !(dollar_vcol != 0 && mod_bot == mod_top + 1))
1556 {
1557 int old_rows = 0;
1558 int new_rows = 0;
1559 int xtra_rows;
1560 linenr_T l;
1561
1562 /* Count the old number of window rows, using w_lines[], which
1563 * should still contain the sizes for the lines as they are
1564 * currently displayed. */
1565 for (i = idx; i < wp->w_lines_valid; ++i)
1566 {
1567 /* Only valid lines have a meaningful wl_lnum. Invalid
1568 * lines are part of the changed area. */
1569 if (wp->w_lines[i].wl_valid
1570 && wp->w_lines[i].wl_lnum == mod_bot)
1571 break;
1572 old_rows += wp->w_lines[i].wl_size;
1573#ifdef FEAT_FOLDING
1574 if (wp->w_lines[i].wl_valid
1575 && wp->w_lines[i].wl_lastlnum + 1 == mod_bot)
1576 {
1577 /* Must have found the last valid entry above mod_bot.
1578 * Add following invalid entries. */
1579 ++i;
1580 while (i < wp->w_lines_valid
1581 && !wp->w_lines[i].wl_valid)
1582 old_rows += wp->w_lines[i++].wl_size;
1583 break;
1584 }
1585#endif
1586 }
1587
1588 if (i >= wp->w_lines_valid)
1589 {
1590 /* We can't find a valid line below the changed lines,
1591 * need to redraw until the end of the window.
1592 * Inserting/deleting lines has no use. */
1593 bot_start = 0;
1594 }
1595 else
1596 {
1597 /* Able to count old number of rows: Count new window
1598 * rows, and may insert/delete lines */
1599 j = idx;
1600 for (l = lnum; l < mod_bot; ++l)
1601 {
1602#ifdef FEAT_FOLDING
1603 if (hasFoldingWin(wp, l, NULL, &l, TRUE, NULL))
1604 ++new_rows;
1605 else
1606#endif
1607#ifdef FEAT_DIFF
1608 if (l == wp->w_topline)
1609 new_rows += plines_win_nofill(wp, l, TRUE)
1610 + wp->w_topfill;
1611 else
1612#endif
1613 new_rows += plines_win(wp, l, TRUE);
1614 ++j;
1615 if (new_rows > wp->w_height - row - 2)
1616 {
1617 /* it's getting too much, must redraw the rest */
1618 new_rows = 9999;
1619 break;
1620 }
1621 }
1622 xtra_rows = new_rows - old_rows;
1623 if (xtra_rows < 0)
1624 {
1625 /* May scroll text up. If there is not enough
1626 * remaining text or scrolling fails, must redraw the
1627 * rest. If scrolling works, must redraw the text
1628 * below the scrolled text. */
1629 if (row - xtra_rows >= wp->w_height - 2)
1630 mod_bot = MAXLNUM;
1631 else
1632 {
1633 check_for_delay(FALSE);
1634 if (win_del_lines(wp, row,
1635 -xtra_rows, FALSE, FALSE) == FAIL)
1636 mod_bot = MAXLNUM;
1637 else
1638 bot_start = wp->w_height + xtra_rows;
1639 }
1640 }
1641 else if (xtra_rows > 0)
1642 {
1643 /* May scroll text down. If there is not enough
1644 * remaining text of scrolling fails, must redraw the
1645 * rest. */
1646 if (row + xtra_rows >= wp->w_height - 2)
1647 mod_bot = MAXLNUM;
1648 else
1649 {
1650 check_for_delay(FALSE);
1651 if (win_ins_lines(wp, row + old_rows,
1652 xtra_rows, FALSE, FALSE) == FAIL)
1653 mod_bot = MAXLNUM;
1654 else if (top_end > row + old_rows)
1655 /* Scrolled the part at the top that requires
1656 * updating down. */
1657 top_end += xtra_rows;
1658 }
1659 }
1660
1661 /* When not updating the rest, may need to move w_lines[]
1662 * entries. */
1663 if (mod_bot != MAXLNUM && i != j)
1664 {
1665 if (j < i)
1666 {
1667 int x = row + new_rows;
1668
1669 /* move entries in w_lines[] upwards */
1670 for (;;)
1671 {
1672 /* stop at last valid entry in w_lines[] */
1673 if (i >= wp->w_lines_valid)
1674 {
1675 wp->w_lines_valid = j;
1676 break;
1677 }
1678 wp->w_lines[j] = wp->w_lines[i];
1679 /* stop at a line that won't fit */
1680 if (x + (int)wp->w_lines[j].wl_size
1681 > wp->w_height)
1682 {
1683 wp->w_lines_valid = j + 1;
1684 break;
1685 }
1686 x += wp->w_lines[j++].wl_size;
1687 ++i;
1688 }
1689 if (bot_start > x)
1690 bot_start = x;
1691 }
1692 else /* j > i */
1693 {
1694 /* move entries in w_lines[] downwards */
1695 j -= i;
1696 wp->w_lines_valid += j;
1697 if (wp->w_lines_valid > wp->w_height)
1698 wp->w_lines_valid = wp->w_height;
1699 for (i = wp->w_lines_valid; i - j >= idx; --i)
1700 wp->w_lines[i] = wp->w_lines[i - j];
1701
1702 /* The w_lines[] entries for inserted lines are
1703 * now invalid, but wl_size may be used above.
1704 * Reset to zero. */
1705 while (i >= idx)
1706 {
1707 wp->w_lines[i].wl_size = 0;
1708 wp->w_lines[i--].wl_valid = FALSE;
1709 }
1710 }
1711 }
1712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 }
1714
1715#ifdef FEAT_FOLDING
1716 /*
1717 * When lines are folded, display one line for all of them.
1718 * Otherwise, display normally (can be several display lines when
1719 * 'wrap' is on).
1720 */
1721 fold_count = foldedCount(wp, lnum, &win_foldinfo);
1722 if (fold_count != 0)
1723 {
1724 fold_line(wp, fold_count, &win_foldinfo, lnum, row);
1725 ++row;
1726 --fold_count;
1727 wp->w_lines[idx].wl_folded = TRUE;
1728 wp->w_lines[idx].wl_lastlnum = lnum + fold_count;
1729# ifdef FEAT_SYN_HL
1730 did_update = DID_FOLD;
1731# endif
1732 }
1733 else
1734#endif
1735 if (idx < wp->w_lines_valid
1736 && wp->w_lines[idx].wl_valid
1737 && wp->w_lines[idx].wl_lnum == lnum
1738 && lnum > wp->w_topline
1739 && !(dy_flags & DY_LASTLINE)
1740 && srow + wp->w_lines[idx].wl_size > wp->w_height
1741#ifdef FEAT_DIFF
1742 && diff_check_fill(wp, lnum) == 0
1743#endif
1744 )
1745 {
1746 /* This line is not going to fit. Don't draw anything here,
1747 * will draw "@ " lines below. */
1748 row = wp->w_height + 1;
1749 }
1750 else
1751 {
1752#ifdef FEAT_SEARCH_EXTRA
1753 prepare_search_hl(wp, lnum);
1754#endif
1755#ifdef FEAT_SYN_HL
1756 /* Let the syntax stuff know we skipped a few lines. */
1757 if (syntax_last_parsed != 0 && syntax_last_parsed + 1 < lnum
1758 && syntax_present(buf))
1759 syntax_end_parsing(syntax_last_parsed + 1);
1760#endif
1761
1762 /*
1763 * Display one line.
1764 */
Bram Moolenaar4770d092006-01-12 23:22:24 +00001765 row = win_line(wp, lnum, srow, wp->w_height, mod_top == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766
1767#ifdef FEAT_FOLDING
1768 wp->w_lines[idx].wl_folded = FALSE;
1769 wp->w_lines[idx].wl_lastlnum = lnum;
1770#endif
1771#ifdef FEAT_SYN_HL
1772 did_update = DID_LINE;
1773 syntax_last_parsed = lnum;
1774#endif
1775 }
1776
1777 wp->w_lines[idx].wl_lnum = lnum;
1778 wp->w_lines[idx].wl_valid = TRUE;
1779 if (row > wp->w_height) /* past end of screen */
1780 {
1781 /* we may need the size of that too long line later on */
1782 if (dollar_vcol == 0)
1783 wp->w_lines[idx].wl_size = plines_win(wp, lnum, TRUE);
1784 ++idx;
1785 break;
1786 }
1787 if (dollar_vcol == 0)
1788 wp->w_lines[idx].wl_size = row - srow;
1789 ++idx;
1790#ifdef FEAT_FOLDING
1791 lnum += fold_count + 1;
1792#else
1793 ++lnum;
1794#endif
1795 }
1796 else
1797 {
1798 /* This line does not need updating, advance to the next one */
1799 row += wp->w_lines[idx++].wl_size;
1800 if (row > wp->w_height) /* past end of screen */
1801 break;
1802#ifdef FEAT_FOLDING
1803 lnum = wp->w_lines[idx - 1].wl_lastlnum + 1;
1804#else
1805 ++lnum;
1806#endif
1807#ifdef FEAT_SYN_HL
1808 did_update = DID_NONE;
1809#endif
1810 }
1811
1812 if (lnum > buf->b_ml.ml_line_count)
1813 {
1814 eof = TRUE;
1815 break;
1816 }
1817 }
1818 /*
1819 * End of loop over all window lines.
1820 */
1821
1822
1823 if (idx > wp->w_lines_valid)
1824 wp->w_lines_valid = idx;
1825
1826#ifdef FEAT_SYN_HL
1827 /*
1828 * Let the syntax stuff know we stop parsing here.
1829 */
1830 if (syntax_last_parsed != 0 && syntax_present(buf))
1831 syntax_end_parsing(syntax_last_parsed + 1);
1832#endif
1833
1834 /*
1835 * If we didn't hit the end of the file, and we didn't finish the last
1836 * line we were working on, then the line didn't fit.
1837 */
1838 wp->w_empty_rows = 0;
1839#ifdef FEAT_DIFF
1840 wp->w_filler_rows = 0;
1841#endif
1842 if (!eof && !didline)
1843 {
1844 if (lnum == wp->w_topline)
1845 {
1846 /*
1847 * Single line that does not fit!
1848 * Don't overwrite it, it can be edited.
1849 */
1850 wp->w_botline = lnum + 1;
1851 }
1852#ifdef FEAT_DIFF
1853 else if (diff_check_fill(wp, lnum) >= wp->w_height - srow)
1854 {
1855 /* Window ends in filler lines. */
1856 wp->w_botline = lnum;
1857 wp->w_filler_rows = wp->w_height - srow;
1858 }
1859#endif
1860 else if (dy_flags & DY_LASTLINE) /* 'display' has "lastline" */
1861 {
1862 /*
1863 * Last line isn't finished: Display "@@@" at the end.
1864 */
1865 screen_fill(W_WINROW(wp) + wp->w_height - 1,
1866 W_WINROW(wp) + wp->w_height,
1867 (int)W_ENDCOL(wp) - 3, (int)W_ENDCOL(wp),
1868 '@', '@', hl_attr(HLF_AT));
1869 set_empty_rows(wp, srow);
1870 wp->w_botline = lnum;
1871 }
1872 else
1873 {
1874 win_draw_end(wp, '@', ' ', srow, wp->w_height, HLF_AT);
1875 wp->w_botline = lnum;
1876 }
1877 }
1878 else
1879 {
1880#ifdef FEAT_VERTSPLIT
1881 draw_vsep_win(wp, row);
1882#endif
1883 if (eof) /* we hit the end of the file */
1884 {
1885 wp->w_botline = buf->b_ml.ml_line_count + 1;
1886#ifdef FEAT_DIFF
1887 j = diff_check_fill(wp, wp->w_botline);
1888 if (j > 0 && !wp->w_botfill)
1889 {
1890 /*
1891 * Display filler lines at the end of the file
1892 */
1893 if (char2cells(fill_diff) > 1)
1894 i = '-';
1895 else
1896 i = fill_diff;
1897 if (row + j > wp->w_height)
1898 j = wp->w_height - row;
1899 win_draw_end(wp, i, i, row, row + (int)j, HLF_DED);
1900 row += j;
1901 }
1902#endif
1903 }
1904 else if (dollar_vcol == 0)
1905 wp->w_botline = lnum;
1906
1907 /* make sure the rest of the screen is blank */
1908 /* put '~'s on rows that aren't part of the file. */
1909 win_draw_end(wp, '~', ' ', row, wp->w_height, HLF_AT);
1910 }
1911
1912 /* Reset the type of redrawing required, the window has been updated. */
1913 wp->w_redr_type = 0;
1914#ifdef FEAT_DIFF
1915 wp->w_old_topfill = wp->w_topfill;
1916 wp->w_old_botfill = wp->w_botfill;
1917#endif
1918
1919 if (dollar_vcol == 0)
1920 {
1921 /*
1922 * There is a trick with w_botline. If we invalidate it on each
1923 * change that might modify it, this will cause a lot of expensive
1924 * calls to plines() in update_topline() each time. Therefore the
1925 * value of w_botline is often approximated, and this value is used to
1926 * compute the value of w_topline. If the value of w_botline was
1927 * wrong, check that the value of w_topline is correct (cursor is on
1928 * the visible part of the text). If it's not, we need to redraw
1929 * again. Mostly this just means scrolling up a few lines, so it
1930 * doesn't look too bad. Only do this for the current window (where
1931 * changes are relevant).
1932 */
1933 wp->w_valid |= VALID_BOTLINE;
1934 if (wp == curwin && wp->w_botline != old_botline && !recursive)
1935 {
1936 recursive = TRUE;
1937 curwin->w_valid &= ~VALID_TOPLINE;
1938 update_topline(); /* may invalidate w_botline again */
1939 if (must_redraw != 0)
1940 {
1941 /* Don't update for changes in buffer again. */
1942 i = curbuf->b_mod_set;
1943 curbuf->b_mod_set = FALSE;
1944 win_update(curwin);
1945 must_redraw = 0;
1946 curbuf->b_mod_set = i;
1947 }
1948 recursive = FALSE;
1949 }
1950 }
1951
1952#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA)
1953 /* restore got_int, unless CTRL-C was hit while redrawing */
1954 if (!got_int)
1955 got_int = save_got_int;
1956#endif
1957}
1958
1959#ifdef FEAT_SIGNS
1960static int draw_signcolumn __ARGS((win_T *wp));
1961
1962/*
1963 * Return TRUE when window "wp" has a column to draw signs in.
1964 */
1965 static int
1966draw_signcolumn(wp)
1967 win_T *wp;
1968{
1969 return (wp->w_buffer->b_signlist != NULL
1970# ifdef FEAT_NETBEANS_INTG
1971 || usingNetbeans
1972# endif
1973 );
1974}
1975#endif
1976
1977/*
1978 * Clear the rest of the window and mark the unused lines with "c1". use "c2"
1979 * as the filler character.
1980 */
1981 static void
1982win_draw_end(wp, c1, c2, row, endrow, hl)
1983 win_T *wp;
1984 int c1;
1985 int c2;
1986 int row;
1987 int endrow;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001988 hlf_T hl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989{
1990#if defined(FEAT_FOLDING) || defined(FEAT_SIGNS) || defined(FEAT_CMDWIN)
1991 int n = 0;
1992# define FDC_OFF n
1993#else
1994# define FDC_OFF 0
1995#endif
1996
1997#ifdef FEAT_RIGHTLEFT
1998 if (wp->w_p_rl)
1999 {
2000 /* No check for cmdline window: should never be right-left. */
2001# ifdef FEAT_FOLDING
2002 n = wp->w_p_fdc;
2003
2004 if (n > 0)
2005 {
2006 /* draw the fold column at the right */
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002007 if (n > W_WIDTH(wp))
2008 n = W_WIDTH(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2010 W_ENDCOL(wp) - n, (int)W_ENDCOL(wp),
2011 ' ', ' ', hl_attr(HLF_FC));
2012 }
2013# endif
2014# ifdef FEAT_SIGNS
2015 if (draw_signcolumn(wp))
2016 {
2017 int nn = n + 2;
2018
2019 /* draw the sign column left of the fold column */
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002020 if (nn > W_WIDTH(wp))
2021 nn = W_WIDTH(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2023 W_ENDCOL(wp) - nn, (int)W_ENDCOL(wp) - n,
2024 ' ', ' ', hl_attr(HLF_SC));
2025 n = nn;
2026 }
2027# endif
2028 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2029 W_WINCOL(wp), W_ENDCOL(wp) - 1 - FDC_OFF,
2030 c2, c2, hl_attr(hl));
2031 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2032 W_ENDCOL(wp) - 1 - FDC_OFF, W_ENDCOL(wp) - FDC_OFF,
2033 c1, c2, hl_attr(hl));
2034 }
2035 else
2036#endif
2037 {
2038#ifdef FEAT_CMDWIN
2039 if (cmdwin_type != 0 && wp == curwin)
2040 {
2041 /* draw the cmdline character in the leftmost column */
2042 n = 1;
2043 if (n > wp->w_width)
2044 n = wp->w_width;
2045 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2046 W_WINCOL(wp), (int)W_WINCOL(wp) + n,
2047 cmdwin_type, ' ', hl_attr(HLF_AT));
2048 }
2049#endif
2050#ifdef FEAT_FOLDING
2051 if (wp->w_p_fdc > 0)
2052 {
2053 int nn = n + wp->w_p_fdc;
2054
2055 /* draw the fold column at the left */
2056 if (nn > W_WIDTH(wp))
2057 nn = W_WIDTH(wp);
2058 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2059 W_WINCOL(wp) + n, (int)W_WINCOL(wp) + nn,
2060 ' ', ' ', hl_attr(HLF_FC));
2061 n = nn;
2062 }
2063#endif
2064#ifdef FEAT_SIGNS
2065 if (draw_signcolumn(wp))
2066 {
2067 int nn = n + 2;
2068
2069 /* draw the sign column after the fold column */
2070 if (nn > W_WIDTH(wp))
2071 nn = W_WIDTH(wp);
2072 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2073 W_WINCOL(wp) + n, (int)W_WINCOL(wp) + nn,
2074 ' ', ' ', hl_attr(HLF_SC));
2075 n = nn;
2076 }
2077#endif
2078 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
2079 W_WINCOL(wp) + FDC_OFF, (int)W_ENDCOL(wp),
2080 c1, c2, hl_attr(hl));
2081 }
2082 set_empty_rows(wp, row);
2083}
2084
2085#ifdef FEAT_FOLDING
2086/*
2087 * Display one folded line.
2088 */
2089 static void
2090fold_line(wp, fold_count, foldinfo, lnum, row)
2091 win_T *wp;
2092 long fold_count;
2093 foldinfo_T *foldinfo;
2094 linenr_T lnum;
2095 int row;
2096{
2097 char_u buf[51];
2098 pos_T *top, *bot;
2099 linenr_T lnume = lnum + fold_count - 1;
2100 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002101 char_u *text;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 int fdc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 int col;
2104 int txtcol;
2105 int off = (int)(current_ScreenLine - ScreenLines);
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002106 int ri;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
2108 /* Build the fold line:
2109 * 1. Add the cmdwin_type for the command-line window
2110 * 2. Add the 'foldcolumn'
2111 * 3. Add the 'number' column
2112 * 4. Compose the text
2113 * 5. Add the text
2114 * 6. set highlighting for the Visual area an other text
2115 */
2116 col = 0;
2117
2118 /*
2119 * 1. Add the cmdwin_type for the command-line window
2120 * Ignores 'rightleft', this window is never right-left.
2121 */
2122#ifdef FEAT_CMDWIN
2123 if (cmdwin_type != 0 && wp == curwin)
2124 {
2125 ScreenLines[off] = cmdwin_type;
2126 ScreenAttrs[off] = hl_attr(HLF_AT);
2127#ifdef FEAT_MBYTE
2128 if (enc_utf8)
2129 ScreenLinesUC[off] = 0;
2130#endif
2131 ++col;
2132 }
2133#endif
2134
2135 /*
2136 * 2. Add the 'foldcolumn'
2137 */
2138 fdc = wp->w_p_fdc;
2139 if (fdc > W_WIDTH(wp) - col)
2140 fdc = W_WIDTH(wp) - col;
2141 if (fdc > 0)
2142 {
2143 fill_foldcolumn(buf, wp, TRUE, lnum);
2144#ifdef FEAT_RIGHTLEFT
2145 if (wp->w_p_rl)
2146 {
2147 int i;
2148
2149 copy_text_attr(off + W_WIDTH(wp) - fdc - col, buf, fdc,
2150 hl_attr(HLF_FC));
2151 /* reverse the fold column */
2152 for (i = 0; i < fdc; ++i)
2153 ScreenLines[off + W_WIDTH(wp) - i - 1 - col] = buf[i];
2154 }
2155 else
2156#endif
2157 copy_text_attr(off + col, buf, fdc, hl_attr(HLF_FC));
2158 col += fdc;
2159 }
2160
2161#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002162# define RL_MEMSET(p, v, l) if (wp->w_p_rl) \
2163 for (ri = 0; ri < l; ++ri) \
2164 ScreenAttrs[off + (W_WIDTH(wp) - (p) - (l)) + ri] = v; \
2165 else \
2166 for (ri = 0; ri < l; ++ri) \
2167 ScreenAttrs[off + (p) + ri] = v
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168#else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002169# define RL_MEMSET(p, v, l) for (ri = 0; ri < l; ++ri) \
2170 ScreenAttrs[off + (p) + ri] = v
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171#endif
2172
2173 /* Set all attributes of the 'number' column and the text */
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002174 RL_MEMSET(col, hl_attr(HLF_FL), W_WIDTH(wp) - col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175
2176#ifdef FEAT_SIGNS
2177 /* If signs are being displayed, add two spaces. */
2178 if (draw_signcolumn(wp))
2179 {
2180 len = W_WIDTH(wp) - col;
2181 if (len > 0)
2182 {
2183 if (len > 2)
2184 len = 2;
2185# ifdef FEAT_RIGHTLEFT
2186 if (wp->w_p_rl)
2187 /* the line number isn't reversed */
2188 copy_text_attr(off + W_WIDTH(wp) - len - col,
2189 (char_u *)" ", len, hl_attr(HLF_FL));
2190 else
2191# endif
2192 copy_text_attr(off + col, (char_u *)" ", len, hl_attr(HLF_FL));
2193 col += len;
2194 }
2195 }
2196#endif
2197
2198 /*
2199 * 3. Add the 'number' column
2200 */
2201 if (wp->w_p_nu)
2202 {
2203 len = W_WIDTH(wp) - col;
2204 if (len > 0)
2205 {
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002206 int w = number_width(wp);
2207
2208 if (len > w + 1)
2209 len = w + 1;
2210 sprintf((char *)buf, "%*ld ", w, (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211#ifdef FEAT_RIGHTLEFT
2212 if (wp->w_p_rl)
2213 /* the line number isn't reversed */
2214 copy_text_attr(off + W_WIDTH(wp) - len - col, buf, len,
2215 hl_attr(HLF_FL));
2216 else
2217#endif
2218 copy_text_attr(off + col, buf, len, hl_attr(HLF_FL));
2219 col += len;
2220 }
2221 }
2222
2223 /*
2224 * 4. Compose the folded-line string with 'foldtext', if set.
2225 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002226 text = get_foldtext(wp, lnum, lnume, foldinfo, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227
2228 txtcol = col; /* remember where text starts */
2229
2230 /*
2231 * 5. move the text to current_ScreenLine. Fill up with "fill_fold".
2232 * Right-left text is put in columns 0 - number-col, normal text is put
2233 * in columns number-col - window-width.
2234 */
2235#ifdef FEAT_MBYTE
2236 if (has_mbyte)
2237 {
2238 int cells;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002239 int u8c, u8cc[MAX_MCO];
2240 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 int idx;
2242 int c_len;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002243 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244# ifdef FEAT_ARABIC
2245 int prev_c = 0; /* previous Arabic character */
2246 int prev_c1 = 0; /* first composing char for prev_c */
2247# endif
2248
2249# ifdef FEAT_RIGHTLEFT
2250 if (wp->w_p_rl)
2251 idx = off;
2252 else
2253# endif
2254 idx = off + col;
2255
2256 /* Store multibyte characters in ScreenLines[] et al. correctly. */
2257 for (p = text; *p != NUL; )
2258 {
2259 cells = (*mb_ptr2cells)(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002260 c_len = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 if (col + cells > W_WIDTH(wp)
2262# ifdef FEAT_RIGHTLEFT
2263 - (wp->w_p_rl ? col : 0)
2264# endif
2265 )
2266 break;
2267 ScreenLines[idx] = *p;
2268 if (enc_utf8)
2269 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002270 u8c = utfc_ptr2char(p, u8cc);
2271 if (*p < 0x80 && u8cc[0] == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 {
2273 ScreenLinesUC[idx] = 0;
2274#ifdef FEAT_ARABIC
2275 prev_c = u8c;
2276#endif
2277 }
2278 else
2279 {
2280#ifdef FEAT_ARABIC
2281 if (p_arshape && !p_tbidi && ARABIC_CHAR(u8c))
2282 {
2283 /* Do Arabic shaping. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002284 int pc, pc1, nc;
2285 int pcc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 int firstbyte = *p;
2287
2288 /* The idea of what is the previous and next
2289 * character depends on 'rightleft'. */
2290 if (wp->w_p_rl)
2291 {
2292 pc = prev_c;
2293 pc1 = prev_c1;
2294 nc = utf_ptr2char(p + c_len);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002295 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 }
2297 else
2298 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002299 pc = utfc_ptr2char(p + c_len, pcc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 nc = prev_c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002301 pc1 = pcc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 }
2303 prev_c = u8c;
2304
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002305 u8c = arabic_shape(u8c, &firstbyte, &u8cc[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 pc, pc1, nc);
2307 ScreenLines[idx] = firstbyte;
2308 }
2309 else
2310 prev_c = u8c;
2311#endif
2312 /* Non-BMP character: display as ? or fullwidth ?. */
Bram Moolenaar11936362007-09-17 20:39:42 +00002313#ifdef UNICODE16
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 if (u8c >= 0x10000)
2315 ScreenLinesUC[idx] = (cells == 2) ? 0xff1f : (int)'?';
2316 else
Bram Moolenaar11936362007-09-17 20:39:42 +00002317#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 ScreenLinesUC[idx] = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002319 for (i = 0; i < Screen_mco; ++i)
2320 {
2321 ScreenLinesC[i][idx] = u8cc[i];
2322 if (u8cc[i] == 0)
2323 break;
2324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 }
2326 if (cells > 1)
2327 ScreenLines[idx + 1] = 0;
2328 }
2329 else if (cells > 1) /* double-byte character */
2330 {
2331 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
2332 ScreenLines2[idx] = p[1];
2333 else
2334 ScreenLines[idx + 1] = p[1];
2335 }
2336 col += cells;
2337 idx += cells;
2338 p += c_len;
2339 }
2340 }
2341 else
2342#endif
2343 {
2344 len = (int)STRLEN(text);
2345 if (len > W_WIDTH(wp) - col)
2346 len = W_WIDTH(wp) - col;
2347 if (len > 0)
2348 {
2349#ifdef FEAT_RIGHTLEFT
2350 if (wp->w_p_rl)
2351 STRNCPY(current_ScreenLine, text, len);
2352 else
2353#endif
2354 STRNCPY(current_ScreenLine + col, text, len);
2355 col += len;
2356 }
2357 }
2358
2359 /* Fill the rest of the line with the fold filler */
2360#ifdef FEAT_RIGHTLEFT
2361 if (wp->w_p_rl)
2362 col -= txtcol;
2363#endif
2364 while (col < W_WIDTH(wp)
2365#ifdef FEAT_RIGHTLEFT
2366 - (wp->w_p_rl ? txtcol : 0)
2367#endif
2368 )
2369 {
2370#ifdef FEAT_MBYTE
2371 if (enc_utf8)
2372 {
2373 if (fill_fold >= 0x80)
2374 {
2375 ScreenLinesUC[off + col] = fill_fold;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002376 ScreenLinesC[0][off + col] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 }
2378 else
2379 ScreenLinesUC[off + col] = 0;
2380 }
2381#endif
2382 ScreenLines[off + col++] = fill_fold;
2383 }
2384
2385 if (text != buf)
2386 vim_free(text);
2387
2388 /*
2389 * 6. set highlighting for the Visual area an other text.
2390 * If all folded lines are in the Visual area, highlight the line.
2391 */
2392#ifdef FEAT_VISUAL
2393 if (VIsual_active && wp->w_buffer == curwin->w_buffer)
2394 {
2395 if (ltoreq(curwin->w_cursor, VIsual))
2396 {
2397 /* Visual is after curwin->w_cursor */
2398 top = &curwin->w_cursor;
2399 bot = &VIsual;
2400 }
2401 else
2402 {
2403 /* Visual is before curwin->w_cursor */
2404 top = &VIsual;
2405 bot = &curwin->w_cursor;
2406 }
2407 if (lnum >= top->lnum
2408 && lnume <= bot->lnum
2409 && (VIsual_mode != 'v'
2410 || ((lnum > top->lnum
2411 || (lnum == top->lnum
2412 && top->col == 0))
2413 && (lnume < bot->lnum
2414 || (lnume == bot->lnum
2415 && (bot->col - (*p_sel == 'e'))
2416 >= STRLEN(ml_get_buf(wp->w_buffer, lnume, FALSE)))))))
2417 {
2418 if (VIsual_mode == Ctrl_V)
2419 {
2420 /* Visual block mode: highlight the chars part of the block */
2421 if (wp->w_old_cursor_fcol + txtcol < (colnr_T)W_WIDTH(wp))
2422 {
2423 if (wp->w_old_cursor_lcol + txtcol < (colnr_T)W_WIDTH(wp))
2424 len = wp->w_old_cursor_lcol;
2425 else
2426 len = W_WIDTH(wp) - txtcol;
2427 RL_MEMSET(wp->w_old_cursor_fcol + txtcol, hl_attr(HLF_V),
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002428 len - (int)wp->w_old_cursor_fcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 }
2430 }
2431 else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002432 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 /* Set all attributes of the text */
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002434 RL_MEMSET(txtcol, hl_attr(HLF_V), W_WIDTH(wp) - txtcol);
2435 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 }
2437 }
2438#endif
2439
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002440#ifdef FEAT_SYN_HL
2441 /* Show 'cursorcolumn' in the fold line. */
2442 if (wp->w_p_cuc && (int)wp->w_virtcol + txtcol < W_WIDTH(wp))
2443 ScreenAttrs[off + wp->w_virtcol + txtcol] = hl_combine_attr(
2444 ScreenAttrs[off + wp->w_virtcol + txtcol], hl_attr(HLF_CUC));
2445#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446
2447 SCREEN_LINE(row + W_WINROW(wp), W_WINCOL(wp), (int)W_WIDTH(wp),
2448 (int)W_WIDTH(wp), FALSE);
2449
2450 /*
2451 * Update w_cline_height and w_cline_folded if the cursor line was
2452 * updated (saves a call to plines() later).
2453 */
2454 if (wp == curwin
2455 && lnum <= curwin->w_cursor.lnum
2456 && lnume >= curwin->w_cursor.lnum)
2457 {
2458 curwin->w_cline_row = row;
2459 curwin->w_cline_height = 1;
2460 curwin->w_cline_folded = TRUE;
2461 curwin->w_valid |= (VALID_CHEIGHT|VALID_CROW);
2462 }
2463}
2464
2465/*
2466 * Copy "buf[len]" to ScreenLines["off"] and set attributes to "attr".
2467 */
2468 static void
2469copy_text_attr(off, buf, len, attr)
2470 int off;
2471 char_u *buf;
2472 int len;
2473 int attr;
2474{
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002475 int i;
2476
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 mch_memmove(ScreenLines + off, buf, (size_t)len);
2478# ifdef FEAT_MBYTE
2479 if (enc_utf8)
2480 vim_memset(ScreenLinesUC + off, 0, sizeof(u8char_T) * (size_t)len);
2481# endif
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002482 for (i = 0; i < len; ++i)
2483 ScreenAttrs[off + i] = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484}
2485
2486/*
2487 * Fill the foldcolumn at "p" for window "wp".
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00002488 * Only to be called when 'foldcolumn' > 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 */
2490 static void
2491fill_foldcolumn(p, wp, closed, lnum)
2492 char_u *p;
2493 win_T *wp;
2494 int closed; /* TRUE of FALSE */
2495 linenr_T lnum; /* current line number */
2496{
2497 int i = 0;
2498 int level;
2499 int first_level;
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002500 int empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501
2502 /* Init to all spaces. */
2503 copy_spaces(p, (size_t)wp->w_p_fdc);
2504
2505 level = win_foldinfo.fi_level;
2506 if (level > 0)
2507 {
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002508 /* If there is only one column put more info in it. */
2509 empty = (wp->w_p_fdc == 1) ? 0 : 1;
2510
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 /* If the column is too narrow, we start at the lowest level that
2512 * fits and use numbers to indicated the depth. */
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002513 first_level = level - wp->w_p_fdc - closed + 1 + empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 if (first_level < 1)
2515 first_level = 1;
2516
Bram Moolenaar578b49e2005-09-10 19:22:57 +00002517 for (i = 0; i + empty < wp->w_p_fdc; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 {
2519 if (win_foldinfo.fi_lnum == lnum
2520 && first_level + i >= win_foldinfo.fi_low_level)
2521 p[i] = '-';
2522 else if (first_level == 1)
2523 p[i] = '|';
2524 else if (first_level + i <= 9)
2525 p[i] = '0' + first_level + i;
2526 else
2527 p[i] = '>';
2528 if (first_level + i == level)
2529 break;
2530 }
2531 }
2532 if (closed)
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00002533 p[i >= wp->w_p_fdc ? i - 1 : i] = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534}
2535#endif /* FEAT_FOLDING */
2536
2537/*
2538 * Display line "lnum" of window 'wp' on the screen.
2539 * Start at row "startrow", stop when "endrow" is reached.
2540 * wp->w_virtcol needs to be valid.
2541 *
2542 * Return the number of last row the line occupies.
2543 */
Bram Moolenaar4770d092006-01-12 23:22:24 +00002544/* ARGSUSED */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 static int
Bram Moolenaar4770d092006-01-12 23:22:24 +00002546win_line(wp, lnum, startrow, endrow, nochange)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 win_T *wp;
2548 linenr_T lnum;
2549 int startrow;
2550 int endrow;
Bram Moolenaar4770d092006-01-12 23:22:24 +00002551 int nochange; /* not updating for changed text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552{
2553 int col; /* visual column on screen */
2554 unsigned off; /* offset in ScreenLines/ScreenAttrs */
2555 int c = 0; /* init for GCC */
2556 long vcol = 0; /* virtual column (for tabs) */
2557 long vcol_prev = -1; /* "vcol" of previous character */
2558 char_u *line; /* current line */
2559 char_u *ptr; /* current position in "line" */
2560 int row; /* row in the window, excl w_winrow */
2561 int screen_row; /* row on the screen, incl w_winrow */
2562
2563 char_u extra[18]; /* "%ld" and 'fdc' must fit in here */
2564 int n_extra = 0; /* number of extra chars */
Bram Moolenaara064ac82007-08-05 18:10:54 +00002565 char_u *p_extra = NULL; /* string of extra chars, plus NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 int c_extra = NUL; /* extra chars, all the same */
2567 int extra_attr = 0; /* attributes when n_extra != 0 */
2568 static char_u *at_end_str = (char_u *)""; /* used for p_extra when
2569 displaying lcs_eol at end-of-line */
2570 int lcs_eol_one = lcs_eol; /* lcs_eol until it's been used */
2571 int lcs_prec_todo = lcs_prec; /* lcs_prec until it's been used */
2572
2573 /* saved "extra" items for when draw_state becomes WL_LINE (again) */
2574 int saved_n_extra = 0;
2575 char_u *saved_p_extra = NULL;
2576 int saved_c_extra = 0;
2577 int saved_char_attr = 0;
2578
2579 int n_attr = 0; /* chars with special attr */
2580 int saved_attr2 = 0; /* char_attr saved for n_attr */
2581 int n_attr3 = 0; /* chars with overruling special attr */
2582 int saved_attr3 = 0; /* char_attr saved for n_attr3 */
2583
2584 int n_skip = 0; /* nr of chars to skip for 'nowrap' */
2585
2586 int fromcol, tocol; /* start/end of inverting */
2587 int fromcol_prev = -2; /* start of inverting after cursor */
2588 int noinvcur = FALSE; /* don't invert the cursor */
2589#ifdef FEAT_VISUAL
2590 pos_T *top, *bot;
2591#endif
2592 pos_T pos;
2593 long v;
2594
2595 int char_attr = 0; /* attributes for next character */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002596 int attr_pri = FALSE; /* char_attr has priority */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 int area_highlighting = FALSE; /* Visual or incsearch highlighting
2598 in this line */
2599 int attr = 0; /* attributes for area highlighting */
2600 int area_attr = 0; /* attributes desired by highlighting */
2601 int search_attr = 0; /* attributes desired by 'hlsearch' */
2602#ifdef FEAT_SYN_HL
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002603 int vcol_save_attr = 0; /* saved attr for 'cursorcolumn' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 int syntax_attr = 0; /* attributes desired by syntax */
2605 int has_syntax = FALSE; /* this buffer has syntax highl. */
2606 int save_did_emsg;
Bram Moolenaara443af82007-11-08 13:51:42 +00002607 int eol_hl_off = 0; /* 1 if highlighted char after EOL */
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002608#endif
2609#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002610 int has_spell = FALSE; /* this buffer has spell checking */
Bram Moolenaar30abd282005-06-22 22:35:10 +00002611# define SPWORDLEN 150
2612 char_u nextline[SPWORDLEN * 2];/* text with start of the next line */
Bram Moolenaar3b506942005-06-23 22:36:45 +00002613 int nextlinecol = 0; /* column where nextline[] starts */
2614 int nextline_idx = 0; /* index in nextline[] where next line
Bram Moolenaar30abd282005-06-22 22:35:10 +00002615 starts */
Bram Moolenaar217ad922005-03-20 22:37:15 +00002616 int spell_attr = 0; /* attributes desired by spelling */
2617 int word_end = 0; /* last byte with same spell_attr */
Bram Moolenaard042c562005-06-30 22:04:15 +00002618 static linenr_T checked_lnum = 0; /* line number for "checked_col" */
2619 static int checked_col = 0; /* column in "checked_lnum" up to which
Bram Moolenaar30abd282005-06-22 22:35:10 +00002620 * there are no spell errors */
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002621 static int cap_col = -1; /* column to check for Cap word */
2622 static linenr_T capcol_lnum = 0; /* line number where "cap_col" used */
Bram Moolenaar30abd282005-06-22 22:35:10 +00002623 int cur_checked_col = 0; /* checked column for current line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624#endif
2625 int extra_check; /* has syntax or linebreak */
2626#ifdef FEAT_MBYTE
2627 int multi_attr = 0; /* attributes desired by multibyte */
2628 int mb_l = 1; /* multi-byte byte length */
2629 int mb_c = 0; /* decoded multi-byte character */
2630 int mb_utf8 = FALSE; /* screen char is UTF-8 char */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002631 int u8cc[MAX_MCO]; /* composing UTF-8 chars */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632#endif
2633#ifdef FEAT_DIFF
2634 int filler_lines; /* nr of filler lines to be drawn */
2635 int filler_todo; /* nr of filler lines still to do + 1 */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002636 hlf_T diff_hlf = (hlf_T)0; /* type of diff highlighting */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 int change_start = MAXCOL; /* first col of changed area */
2638 int change_end = -1; /* last col of changed area */
2639#endif
2640 colnr_T trailcol = MAXCOL; /* start of trailing spaces */
2641#ifdef FEAT_LINEBREAK
2642 int need_showbreak = FALSE;
2643#endif
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00002644#if defined(FEAT_SIGNS) || (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
2645 || defined(FEAT_SYN_HL) || defined(FEAT_DIFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646# define LINE_ATTR
Bram Moolenaar4ef9e492008-02-13 20:49:04 +00002647 int line_attr = 0; /* attribute for the whole line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648#endif
2649#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00002650 matchitem_T *cur; /* points to the match list */
2651 match_T *shl; /* points to search_hl or a match */
2652 int shl_flag; /* flag to indicate whether search_hl
2653 has been processed or not */
2654 int prevcol_hl_flag; /* flag to indicate whether prevcol
2655 equals startcol of search_hl or one
2656 of the matches */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657#endif
2658#ifdef FEAT_ARABIC
2659 int prev_c = 0; /* previous Arabic character */
2660 int prev_c1 = 0; /* first composing char for prev_c */
2661#endif
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00002662#if defined(LINE_ATTR)
Bram Moolenaar91170f82006-05-05 21:15:17 +00002663 int did_line_attr = 0;
2664#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665
2666 /* draw_state: items that are drawn in sequence: */
2667#define WL_START 0 /* nothing done yet */
2668#ifdef FEAT_CMDWIN
2669# define WL_CMDLINE WL_START + 1 /* cmdline window column */
2670#else
2671# define WL_CMDLINE WL_START
2672#endif
2673#ifdef FEAT_FOLDING
2674# define WL_FOLD WL_CMDLINE + 1 /* 'foldcolumn' */
2675#else
2676# define WL_FOLD WL_CMDLINE
2677#endif
2678#ifdef FEAT_SIGNS
2679# define WL_SIGN WL_FOLD + 1 /* column for signs */
2680#else
2681# define WL_SIGN WL_FOLD /* column for signs */
2682#endif
2683#define WL_NR WL_SIGN + 1 /* line number */
2684#if defined(FEAT_LINEBREAK) || defined(FEAT_DIFF)
2685# define WL_SBR WL_NR + 1 /* 'showbreak' or 'diff' */
2686#else
2687# define WL_SBR WL_NR
2688#endif
2689#define WL_LINE WL_SBR + 1 /* text in the line */
2690 int draw_state = WL_START; /* what to draw next */
Bram Moolenaar9372a112005-12-06 19:59:18 +00002691#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 int feedback_col = 0;
2693 int feedback_old_attr = -1;
2694#endif
2695
2696
2697 if (startrow > endrow) /* past the end already! */
2698 return startrow;
2699
2700 row = startrow;
2701 screen_row = row + W_WINROW(wp);
2702
2703 /*
2704 * To speed up the loop below, set extra_check when there is linebreak,
2705 * trailing white space and/or syntax processing to be done.
2706 */
2707#ifdef FEAT_LINEBREAK
2708 extra_check = wp->w_p_lbr;
2709#else
2710 extra_check = 0;
2711#endif
2712#ifdef FEAT_SYN_HL
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002713 if (syntax_present(wp->w_buffer) && !wp->w_buffer->b_syn_error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 {
2715 /* Prepare for syntax highlighting in this line. When there is an
2716 * error, stop syntax highlighting. */
2717 save_did_emsg = did_emsg;
2718 did_emsg = FALSE;
2719 syntax_start(wp, lnum);
2720 if (did_emsg)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002721 wp->w_buffer->b_syn_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 else
2723 {
2724 did_emsg = save_did_emsg;
2725 has_syntax = TRUE;
2726 extra_check = TRUE;
2727 }
2728 }
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002729#endif
Bram Moolenaar217ad922005-03-20 22:37:15 +00002730
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002731#ifdef FEAT_SPELL
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00002732 if (wp->w_p_spell
2733 && *wp->w_buffer->b_p_spl != NUL
2734 && wp->w_buffer->b_langp.ga_len > 0
2735 && *(char **)(wp->w_buffer->b_langp.ga_data) != NULL)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002736 {
2737 /* Prepare for spell checking. */
2738 has_spell = TRUE;
2739 extra_check = TRUE;
Bram Moolenaar30abd282005-06-22 22:35:10 +00002740
2741 /* Get the start of the next line, so that words that wrap to the next
2742 * line are found too: "et<line-break>al.".
2743 * Trick: skip a few chars for C/shell/Vim comments */
2744 nextline[SPWORDLEN] = NUL;
2745 if (lnum < wp->w_buffer->b_ml.ml_line_count)
2746 {
2747 line = ml_get_buf(wp->w_buffer, lnum + 1, FALSE);
2748 spell_cat_line(nextline + SPWORDLEN, line, SPWORDLEN);
2749 }
2750
2751 /* When a word wrapped from the previous line the start of the current
2752 * line is valid. */
2753 if (lnum == checked_lnum)
2754 cur_checked_col = checked_col;
2755 checked_lnum = 0;
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002756
2757 /* When there was a sentence end in the previous line may require a
2758 * word starting with capital in this line. In line 1 always check
2759 * the first word. */
2760 if (lnum != capcol_lnum)
2761 cap_col = -1;
2762 if (lnum == 1)
2763 cap_col = 0;
2764 capcol_lnum = 0;
Bram Moolenaar217ad922005-03-20 22:37:15 +00002765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766#endif
2767
2768 /*
2769 * handle visual active in this window
2770 */
2771 fromcol = -10;
2772 tocol = MAXCOL;
2773#ifdef FEAT_VISUAL
2774 if (VIsual_active && wp->w_buffer == curwin->w_buffer)
2775 {
2776 /* Visual is after curwin->w_cursor */
2777 if (ltoreq(curwin->w_cursor, VIsual))
2778 {
2779 top = &curwin->w_cursor;
2780 bot = &VIsual;
2781 }
2782 else /* Visual is before curwin->w_cursor */
2783 {
2784 top = &VIsual;
2785 bot = &curwin->w_cursor;
2786 }
2787 if (VIsual_mode == Ctrl_V) /* block mode */
2788 {
2789 if (lnum >= top->lnum && lnum <= bot->lnum)
2790 {
2791 fromcol = wp->w_old_cursor_fcol;
2792 tocol = wp->w_old_cursor_lcol;
2793 }
2794 }
2795 else /* non-block mode */
2796 {
2797 if (lnum > top->lnum && lnum <= bot->lnum)
2798 fromcol = 0;
2799 else if (lnum == top->lnum)
2800 {
2801 if (VIsual_mode == 'V') /* linewise */
2802 fromcol = 0;
2803 else
2804 {
2805 getvvcol(wp, top, (colnr_T *)&fromcol, NULL, NULL);
2806 if (gchar_pos(top) == NUL)
2807 tocol = fromcol + 1;
2808 }
2809 }
2810 if (VIsual_mode != 'V' && lnum == bot->lnum)
2811 {
2812 if (*p_sel == 'e' && bot->col == 0
2813#ifdef FEAT_VIRTUALEDIT
2814 && bot->coladd == 0
2815#endif
2816 )
2817 {
2818 fromcol = -10;
2819 tocol = MAXCOL;
2820 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002821 else if (bot->col == MAXCOL)
2822 tocol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 else
2824 {
2825 pos = *bot;
2826 if (*p_sel == 'e')
2827 getvvcol(wp, &pos, (colnr_T *)&tocol, NULL, NULL);
2828 else
2829 {
2830 getvvcol(wp, &pos, NULL, NULL, (colnr_T *)&tocol);
2831 ++tocol;
2832 }
2833 }
2834 }
2835 }
2836
2837#ifndef MSDOS
2838 /* Check if the character under the cursor should not be inverted */
2839 if (!highlight_match && lnum == curwin->w_cursor.lnum && wp == curwin
2840# ifdef FEAT_GUI
2841 && !gui.in_use
2842# endif
2843 )
2844 noinvcur = TRUE;
2845#endif
2846
2847 /* if inverting in this line set area_highlighting */
2848 if (fromcol >= 0)
2849 {
2850 area_highlighting = TRUE;
2851 attr = hl_attr(HLF_V);
2852#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2853 if (clip_star.available && !clip_star.owned && clip_isautosel())
2854 attr = hl_attr(HLF_VNC);
2855#endif
2856 }
2857 }
2858
2859 /*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002860 * handle 'incsearch' and ":s///c" highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 */
2862 else
2863#endif /* FEAT_VISUAL */
2864 if (highlight_match
2865 && wp == curwin
2866 && lnum >= curwin->w_cursor.lnum
2867 && lnum <= curwin->w_cursor.lnum + search_match_lines)
2868 {
2869 if (lnum == curwin->w_cursor.lnum)
2870 getvcol(curwin, &(curwin->w_cursor),
2871 (colnr_T *)&fromcol, NULL, NULL);
2872 else
2873 fromcol = 0;
2874 if (lnum == curwin->w_cursor.lnum + search_match_lines)
2875 {
2876 pos.lnum = lnum;
2877 pos.col = search_match_endcol;
2878 getvcol(curwin, &pos, (colnr_T *)&tocol, NULL, NULL);
2879 }
2880 else
2881 tocol = MAXCOL;
2882 if (fromcol == tocol) /* do at least one character */
2883 tocol = fromcol + 1; /* happens when past end of line */
2884 area_highlighting = TRUE;
2885 attr = hl_attr(HLF_I);
2886 }
2887
2888#ifdef FEAT_DIFF
2889 filler_lines = diff_check(wp, lnum);
2890 if (filler_lines < 0)
2891 {
2892 if (filler_lines == -1)
2893 {
2894 if (diff_find_change(wp, lnum, &change_start, &change_end))
2895 diff_hlf = HLF_ADD; /* added line */
2896 else if (change_start == 0)
2897 diff_hlf = HLF_TXD; /* changed text */
2898 else
2899 diff_hlf = HLF_CHD; /* changed line */
2900 }
2901 else
2902 diff_hlf = HLF_ADD; /* added line */
2903 filler_lines = 0;
2904 area_highlighting = TRUE;
2905 }
2906 if (lnum == wp->w_topline)
2907 filler_lines = wp->w_topfill;
2908 filler_todo = filler_lines;
2909#endif
2910
2911#ifdef LINE_ATTR
2912# ifdef FEAT_SIGNS
2913 /* If this line has a sign with line highlighting set line_attr. */
2914 v = buf_getsigntype(wp->w_buffer, lnum, SIGN_LINEHL);
2915 if (v != 0)
2916 line_attr = sign_get_attr((int)v, TRUE);
2917# endif
2918# if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
2919 /* Highlight the current line in the quickfix window. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002920 if (bt_quickfix(wp->w_buffer) && qf_current_entry(wp) == lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 line_attr = hl_attr(HLF_L);
2922# endif
2923 if (line_attr != 0)
2924 area_highlighting = TRUE;
2925#endif
2926
2927 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
2928 ptr = line;
2929
Bram Moolenaar600dddc2006-03-12 22:05:10 +00002930#ifdef FEAT_SPELL
Bram Moolenaar30abd282005-06-22 22:35:10 +00002931 if (has_spell)
2932 {
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002933 /* For checking first word with a capital skip white space. */
2934 if (cap_col == 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002935 cap_col = (int)(skipwhite(line) - line);
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00002936
Bram Moolenaar30abd282005-06-22 22:35:10 +00002937 /* To be able to spell-check over line boundaries copy the end of the
2938 * current line into nextline[]. Above the start of the next line was
2939 * copied to nextline[SPWORDLEN]. */
2940 if (nextline[SPWORDLEN] == NUL)
2941 {
2942 /* No next line or it is empty. */
2943 nextlinecol = MAXCOL;
2944 nextline_idx = 0;
2945 }
2946 else
2947 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002948 v = (long)STRLEN(line);
Bram Moolenaar30abd282005-06-22 22:35:10 +00002949 if (v < SPWORDLEN)
2950 {
2951 /* Short line, use it completely and append the start of the
2952 * next line. */
2953 nextlinecol = 0;
2954 mch_memmove(nextline, line, (size_t)v);
Bram Moolenaar446cb832008-06-24 21:56:24 +00002955 STRMOVE(nextline + v, nextline + SPWORDLEN);
Bram Moolenaar30abd282005-06-22 22:35:10 +00002956 nextline_idx = v + 1;
2957 }
2958 else
2959 {
2960 /* Long line, use only the last SPWORDLEN bytes. */
2961 nextlinecol = v - SPWORDLEN;
2962 mch_memmove(nextline, line + nextlinecol, SPWORDLEN);
2963 nextline_idx = SPWORDLEN + 1;
2964 }
2965 }
2966 }
2967#endif
2968
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 /* find start of trailing whitespace */
2970 if (wp->w_p_list && lcs_trail)
2971 {
2972 trailcol = (colnr_T)STRLEN(ptr);
2973 while (trailcol > (colnr_T)0 && vim_iswhite(ptr[trailcol - 1]))
2974 --trailcol;
2975 trailcol += (colnr_T) (ptr - line);
2976 extra_check = TRUE;
2977 }
2978
2979 /*
2980 * 'nowrap' or 'wrap' and a single line that doesn't fit: Advance to the
2981 * first character to be displayed.
2982 */
2983 if (wp->w_p_wrap)
2984 v = wp->w_skipcol;
2985 else
2986 v = wp->w_leftcol;
2987 if (v > 0)
2988 {
2989#ifdef FEAT_MBYTE
2990 char_u *prev_ptr = ptr;
2991#endif
2992 while (vcol < v && *ptr != NUL)
2993 {
2994 c = win_lbr_chartabsize(wp, ptr, (colnr_T)vcol, NULL);
2995 vcol += c;
2996#ifdef FEAT_MBYTE
2997 prev_ptr = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002999 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 }
3001
3002#ifdef FEAT_VIRTUALEDIT
3003 /* When 'virtualedit' is set the end of the line may be before the
3004 * start of the displayed part. */
3005 if (vcol < v && *ptr == NUL && virtual_active())
3006 vcol = v;
3007#endif
3008
3009 /* Handle a character that's not completely on the screen: Put ptr at
3010 * that character but skip the first few screen characters. */
3011 if (vcol > v)
3012 {
3013 vcol -= c;
3014#ifdef FEAT_MBYTE
3015 ptr = prev_ptr;
3016#else
3017 --ptr;
3018#endif
3019 n_skip = v - vcol;
3020 }
3021
3022 /*
3023 * Adjust for when the inverted text is before the screen,
3024 * and when the start of the inverted text is before the screen.
3025 */
3026 if (tocol <= vcol)
3027 fromcol = 0;
3028 else if (fromcol >= 0 && fromcol < vcol)
3029 fromcol = vcol;
3030
3031#ifdef FEAT_LINEBREAK
3032 /* When w_skipcol is non-zero, first line needs 'showbreak' */
3033 if (wp->w_p_wrap)
3034 need_showbreak = TRUE;
3035#endif
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003036#ifdef FEAT_SPELL
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003037 /* When spell checking a word we need to figure out the start of the
3038 * word and if it's badly spelled or not. */
3039 if (has_spell)
3040 {
3041 int len;
Bram Moolenaar4ef9e492008-02-13 20:49:04 +00003042 colnr_T linecol = (colnr_T)(ptr - line);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003043 hlf_T spell_hlf = HLF_COUNT;
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003044
3045 pos = wp->w_cursor;
3046 wp->w_cursor.lnum = lnum;
Bram Moolenaar4ef9e492008-02-13 20:49:04 +00003047 wp->w_cursor.col = linecol;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003048 len = spell_move_to(wp, FORWARD, TRUE, TRUE, &spell_hlf);
Bram Moolenaar4ef9e492008-02-13 20:49:04 +00003049
3050 /* spell_move_to() may call ml_get() and make "line" invalid */
3051 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3052 ptr = line + linecol;
3053
Bram Moolenaar60a795a2005-09-16 21:55:43 +00003054 if (len == 0 || (int)wp->w_cursor.col > ptr - line)
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003055 {
3056 /* no bad word found at line start, don't check until end of a
3057 * word */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003058 spell_hlf = HLF_COUNT;
Bram Moolenaar4ef9e492008-02-13 20:49:04 +00003059 word_end = (int)(spell_to_word_end(ptr, wp->w_buffer)
3060 - line + 1);
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003061 }
3062 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003063 {
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003064 /* bad word found, use attributes until end of word */
3065 word_end = wp->w_cursor.col + len + 1;
3066
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003067 /* Turn index into actual attributes. */
3068 if (spell_hlf != HLF_COUNT)
3069 spell_attr = highlight_attr[spell_hlf];
3070 }
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003071 wp->w_cursor = pos;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003072
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003073# ifdef FEAT_SYN_HL
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003074 /* Need to restart syntax highlighting for this line. */
3075 if (has_syntax)
3076 syntax_start(wp, lnum);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003077# endif
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00003078 }
3079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 }
3081
3082 /*
3083 * Correct highlighting for cursor that can't be disabled.
3084 * Avoids having to check this for each character.
3085 */
3086 if (fromcol >= 0)
3087 {
3088 if (noinvcur)
3089 {
3090 if ((colnr_T)fromcol == wp->w_virtcol)
3091 {
3092 /* highlighting starts at cursor, let it start just after the
3093 * cursor */
3094 fromcol_prev = fromcol;
3095 fromcol = -1;
3096 }
3097 else if ((colnr_T)fromcol < wp->w_virtcol)
3098 /* restart highlighting after the cursor */
3099 fromcol_prev = wp->w_virtcol;
3100 }
3101 if (fromcol >= tocol)
3102 fromcol = -1;
3103 }
3104
3105#ifdef FEAT_SEARCH_EXTRA
3106 /*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003107 * Handle highlighting the last used search pattern and matches.
3108 * Do this for both search_hl and the match list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003110 cur = wp->w_match_head;
3111 shl_flag = FALSE;
3112 while (cur != NULL || shl_flag == FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003114 if (shl_flag == FALSE)
3115 {
3116 shl = &search_hl;
3117 shl_flag = TRUE;
3118 }
3119 else
3120 shl = &cur->hl;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003121 shl->startcol = MAXCOL;
3122 shl->endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 shl->attr_cur = 0;
3124 if (shl->rm.regprog != NULL)
3125 {
3126 v = (long)(ptr - line);
3127 next_search_hl(wp, shl, lnum, (colnr_T)v);
3128
3129 /* Need to get the line again, a multi-line regexp may have made it
3130 * invalid. */
3131 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3132 ptr = line + v;
3133
3134 if (shl->lnum != 0 && shl->lnum <= lnum)
3135 {
3136 if (shl->lnum == lnum)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003137 shl->startcol = shl->rm.startpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003139 shl->startcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 if (lnum == shl->lnum + shl->rm.endpos[0].lnum
3141 - shl->rm.startpos[0].lnum)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003142 shl->endcol = shl->rm.endpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003144 shl->endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 /* Highlight one character for an empty match. */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003146 if (shl->startcol == shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 {
3148#ifdef FEAT_MBYTE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003149 if (has_mbyte && line[shl->endcol] != NUL)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003150 shl->endcol += (*mb_ptr2len)(line + shl->endcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 else
3152#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003153 ++shl->endcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003155 if ((long)shl->startcol < v) /* match at leftcol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 {
3157 shl->attr_cur = shl->attr;
3158 search_attr = shl->attr;
3159 }
3160 area_highlighting = TRUE;
3161 }
3162 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003163 if (shl != &search_hl && cur != NULL)
3164 cur = cur->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 }
3166#endif
3167
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003168#ifdef FEAT_SYN_HL
Bram Moolenaare2f98b92006-03-29 21:18:24 +00003169 /* Cursor line highlighting for 'cursorline'. Not when Visual mode is
3170 * active, because it's not clear what is selected then. */
3171 if (wp->w_p_cul && lnum == wp->w_cursor.lnum && !VIsual_active)
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003172 {
3173 line_attr = hl_attr(HLF_CUL);
3174 area_highlighting = TRUE;
3175 }
3176#endif
3177
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003178 off = (unsigned)(current_ScreenLine - ScreenLines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 col = 0;
3180#ifdef FEAT_RIGHTLEFT
3181 if (wp->w_p_rl)
3182 {
3183 /* Rightleft window: process the text in the normal direction, but put
3184 * it in current_ScreenLine[] from right to left. Start at the
3185 * rightmost column of the window. */
3186 col = W_WIDTH(wp) - 1;
3187 off += col;
3188 }
3189#endif
3190
3191 /*
3192 * Repeat for the whole displayed line.
3193 */
3194 for (;;)
3195 {
3196 /* Skip this quickly when working on the text. */
3197 if (draw_state != WL_LINE)
3198 {
3199#ifdef FEAT_CMDWIN
3200 if (draw_state == WL_CMDLINE - 1 && n_extra == 0)
3201 {
3202 draw_state = WL_CMDLINE;
3203 if (cmdwin_type != 0 && wp == curwin)
3204 {
3205 /* Draw the cmdline character. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 n_extra = 1;
Bram Moolenaara064ac82007-08-05 18:10:54 +00003207 c_extra = cmdwin_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 char_attr = hl_attr(HLF_AT);
3209 }
3210 }
3211#endif
3212
3213#ifdef FEAT_FOLDING
3214 if (draw_state == WL_FOLD - 1 && n_extra == 0)
3215 {
3216 draw_state = WL_FOLD;
3217 if (wp->w_p_fdc > 0)
3218 {
3219 /* Draw the 'foldcolumn'. */
3220 fill_foldcolumn(extra, wp, FALSE, lnum);
3221 n_extra = wp->w_p_fdc;
3222 p_extra = extra;
Bram Moolenaara064ac82007-08-05 18:10:54 +00003223 p_extra[n_extra] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 c_extra = NUL;
3225 char_attr = hl_attr(HLF_FC);
3226 }
3227 }
3228#endif
3229
3230#ifdef FEAT_SIGNS
3231 if (draw_state == WL_SIGN - 1 && n_extra == 0)
3232 {
3233 draw_state = WL_SIGN;
3234 /* Show the sign column when there are any signs in this
3235 * buffer or when using Netbeans. */
3236 if (draw_signcolumn(wp)
3237# ifdef FEAT_DIFF
3238 && filler_todo <= 0
3239# endif
3240 )
3241 {
3242 int_u text_sign;
3243# ifdef FEAT_SIGN_ICONS
3244 int_u icon_sign;
3245# endif
3246
3247 /* Draw two cells with the sign value or blank. */
3248 c_extra = ' ';
3249 char_attr = hl_attr(HLF_SC);
3250 n_extra = 2;
3251
3252 if (row == startrow)
3253 {
3254 text_sign = buf_getsigntype(wp->w_buffer, lnum,
3255 SIGN_TEXT);
3256# ifdef FEAT_SIGN_ICONS
3257 icon_sign = buf_getsigntype(wp->w_buffer, lnum,
3258 SIGN_ICON);
3259 if (gui.in_use && icon_sign != 0)
3260 {
3261 /* Use the image in this position. */
3262 c_extra = SIGN_BYTE;
3263# ifdef FEAT_NETBEANS_INTG
3264 if (buf_signcount(wp->w_buffer, lnum) > 1)
3265 c_extra = MULTISIGN_BYTE;
3266# endif
3267 char_attr = icon_sign;
3268 }
3269 else
3270# endif
3271 if (text_sign != 0)
3272 {
3273 p_extra = sign_get_text(text_sign);
3274 if (p_extra != NULL)
3275 {
3276 c_extra = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003277 n_extra = (int)STRLEN(p_extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 }
3279 char_attr = sign_get_attr(text_sign, FALSE);
3280 }
3281 }
3282 }
3283 }
3284#endif
3285
3286 if (draw_state == WL_NR - 1 && n_extra == 0)
3287 {
3288 draw_state = WL_NR;
3289 /* Display the line number. After the first fill with blanks
3290 * when the 'n' flag isn't in 'cpo' */
3291 if (wp->w_p_nu
3292 && (row == startrow
3293#ifdef FEAT_DIFF
3294 + filler_lines
3295#endif
3296 || vim_strchr(p_cpo, CPO_NUMCOL) == NULL))
3297 {
3298 /* Draw the line number (empty space after wrapping). */
3299 if (row == startrow
3300#ifdef FEAT_DIFF
3301 + filler_lines
3302#endif
3303 )
3304 {
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003305 sprintf((char *)extra, "%*ld ",
3306 number_width(wp), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 if (wp->w_skipcol > 0)
3308 for (p_extra = extra; *p_extra == ' '; ++p_extra)
3309 *p_extra = '-';
3310#ifdef FEAT_RIGHTLEFT
3311 if (wp->w_p_rl) /* reverse line numbers */
3312 rl_mirror(extra);
3313#endif
3314 p_extra = extra;
3315 c_extra = NUL;
3316 }
3317 else
3318 c_extra = ' ';
Bram Moolenaar592e0a22004-07-03 16:05:59 +00003319 n_extra = number_width(wp) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 char_attr = hl_attr(HLF_N);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003321#ifdef FEAT_SYN_HL
3322 /* When 'cursorline' is set highlight the line number of
3323 * the current line differently. */
3324 if (wp->w_p_cul && lnum == wp->w_cursor.lnum)
3325 char_attr = hl_combine_attr(hl_attr(HLF_CUL), char_attr);
3326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 }
3328 }
3329
3330#if defined(FEAT_LINEBREAK) || defined(FEAT_DIFF)
3331 if (draw_state == WL_SBR - 1 && n_extra == 0)
3332 {
3333 draw_state = WL_SBR;
3334# ifdef FEAT_DIFF
3335 if (filler_todo > 0)
3336 {
3337 /* Draw "deleted" diff line(s). */
3338 if (char2cells(fill_diff) > 1)
3339 c_extra = '-';
3340 else
3341 c_extra = fill_diff;
3342# ifdef FEAT_RIGHTLEFT
3343 if (wp->w_p_rl)
3344 n_extra = col + 1;
3345 else
3346# endif
3347 n_extra = W_WIDTH(wp) - col;
3348 char_attr = hl_attr(HLF_DED);
3349 }
3350# endif
3351# ifdef FEAT_LINEBREAK
3352 if (*p_sbr != NUL && need_showbreak)
3353 {
3354 /* Draw 'showbreak' at the start of each broken line. */
3355 p_extra = p_sbr;
3356 c_extra = NUL;
3357 n_extra = (int)STRLEN(p_sbr);
3358 char_attr = hl_attr(HLF_AT);
3359 need_showbreak = FALSE;
3360 /* Correct end of highlighted area for 'showbreak',
3361 * required when 'linebreak' is also set. */
3362 if (tocol == vcol)
3363 tocol += n_extra;
3364 }
3365# endif
3366 }
3367#endif
3368
3369 if (draw_state == WL_LINE - 1 && n_extra == 0)
3370 {
3371 draw_state = WL_LINE;
3372 if (saved_n_extra)
3373 {
3374 /* Continue item from end of wrapped line. */
3375 n_extra = saved_n_extra;
3376 c_extra = saved_c_extra;
3377 p_extra = saved_p_extra;
3378 char_attr = saved_char_attr;
3379 }
3380 else
3381 char_attr = 0;
3382 }
3383 }
3384
3385 /* When still displaying '$' of change command, stop at cursor */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003386 if (dollar_vcol != 0 && wp == curwin
3387 && lnum == wp->w_cursor.lnum && vcol >= (long)wp->w_virtcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388#ifdef FEAT_DIFF
3389 && filler_todo <= 0
3390#endif
3391 )
3392 {
3393 SCREEN_LINE(screen_row, W_WINCOL(wp), col, -(int)W_WIDTH(wp),
3394 wp->w_p_rl);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003395 /* Pretend we have finished updating the window. Except when
3396 * 'cursorcolumn' is set. */
3397#ifdef FEAT_SYN_HL
3398 if (wp->w_p_cuc)
3399 row = wp->w_cline_row + wp->w_cline_height;
3400 else
3401#endif
3402 row = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 break;
3404 }
3405
3406 if (draw_state == WL_LINE && area_highlighting)
3407 {
3408 /* handle Visual or match highlighting in this line */
3409 if (vcol == fromcol
3410#ifdef FEAT_MBYTE
3411 || (has_mbyte && vcol + 1 == fromcol && n_extra == 0
3412 && (*mb_ptr2cells)(ptr) > 1)
3413#endif
3414 || ((int)vcol_prev == fromcol_prev
3415 && vcol < tocol))
3416 area_attr = attr; /* start highlighting */
3417 else if (area_attr != 0
3418 && (vcol == tocol
3419 || (noinvcur && (colnr_T)vcol == wp->w_virtcol)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 area_attr = 0; /* stop highlighting */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421
3422#ifdef FEAT_SEARCH_EXTRA
3423 if (!n_extra)
3424 {
3425 /*
3426 * Check for start/end of search pattern match.
3427 * After end, check for start/end of next match.
3428 * When another match, have to check for start again.
3429 * Watch out for matching an empty string!
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003430 * Do this for 'search_hl' and the match list (ordered by
3431 * priority).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003433 v = (long)(ptr - line);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003434 cur = wp->w_match_head;
3435 shl_flag = FALSE;
3436 while (cur != NULL || shl_flag == FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003438 if (shl_flag == FALSE
3439 && ((cur != NULL
3440 && cur->priority > SEARCH_HL_PRIORITY)
3441 || cur == NULL))
3442 {
3443 shl = &search_hl;
3444 shl_flag = TRUE;
3445 }
3446 else
3447 shl = &cur->hl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 while (shl->rm.regprog != NULL)
3449 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003450 if (shl->startcol != MAXCOL
3451 && v >= (long)shl->startcol
3452 && v < (long)shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 {
3454 shl->attr_cur = shl->attr;
3455 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003456 else if (v == (long)shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 {
3458 shl->attr_cur = 0;
3459
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 next_search_hl(wp, shl, lnum, (colnr_T)v);
3461
3462 /* Need to get the line again, a multi-line regexp
3463 * may have made it invalid. */
3464 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3465 ptr = line + v;
3466
3467 if (shl->lnum == lnum)
3468 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003469 shl->startcol = shl->rm.startpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 if (shl->rm.endpos[0].lnum == 0)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003471 shl->endcol = shl->rm.endpos[0].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003473 shl->endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003475 if (shl->startcol == shl->endcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 {
3477 /* highlight empty match, try again after
3478 * it */
3479#ifdef FEAT_MBYTE
3480 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003481 shl->endcol += (*mb_ptr2len)(line
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003482 + shl->endcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 else
3484#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003485 ++shl->endcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 }
3487
3488 /* Loop to check if the match starts at the
3489 * current position */
3490 continue;
3491 }
3492 }
3493 break;
3494 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003495 if (shl != &search_hl && cur != NULL)
3496 cur = cur->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 }
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003498
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003499 /* Use attributes from match with highest priority among
3500 * 'search_hl' and the match list. */
3501 search_attr = search_hl.attr_cur;
3502 cur = wp->w_match_head;
3503 shl_flag = FALSE;
3504 while (cur != NULL || shl_flag == FALSE)
3505 {
3506 if (shl_flag == FALSE
3507 && ((cur != NULL
3508 && cur->priority > SEARCH_HL_PRIORITY)
3509 || cur == NULL))
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003510 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003511 shl = &search_hl;
3512 shl_flag = TRUE;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003513 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003514 else
3515 shl = &cur->hl;
3516 if (shl->attr_cur != 0)
3517 search_attr = shl->attr_cur;
3518 if (shl != &search_hl && cur != NULL)
3519 cur = cur->next;
3520 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 }
3522#endif
3523
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524#ifdef FEAT_DIFF
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003525 if (diff_hlf != (hlf_T)0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 {
Bram Moolenaar4b80a512007-06-19 15:44:58 +00003527 if (diff_hlf == HLF_CHD && ptr - line >= change_start
3528 && n_extra == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 diff_hlf = HLF_TXD; /* changed text */
Bram Moolenaar4b80a512007-06-19 15:44:58 +00003530 if (diff_hlf == HLF_TXD && ptr - line > change_end
3531 && n_extra == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 diff_hlf = HLF_CHD; /* changed line */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003533 line_attr = hl_attr(diff_hlf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 }
3535#endif
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003536
3537 /* Decide which of the highlight attributes to use. */
3538 attr_pri = TRUE;
3539 if (area_attr != 0)
3540 char_attr = area_attr;
3541 else if (search_attr != 0)
3542 char_attr = search_attr;
3543#ifdef LINE_ATTR
3544 /* Use line_attr when not in the Visual or 'incsearch' area
3545 * (area_attr may be 0 when "noinvcur" is set). */
3546 else if (line_attr != 0 && ((fromcol == -10 && tocol == MAXCOL)
3547 || (vcol < fromcol || vcol >= tocol)))
3548 char_attr = line_attr;
3549#endif
3550 else
3551 {
3552 attr_pri = FALSE;
3553#ifdef FEAT_SYN_HL
3554 if (has_syntax)
3555 char_attr = syntax_attr;
3556 else
3557#endif
3558 char_attr = 0;
3559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 }
3561
3562 /*
3563 * Get the next character to put on the screen.
3564 */
3565 /*
Bram Moolenaara064ac82007-08-05 18:10:54 +00003566 * The "p_extra" points to the extra stuff that is inserted to
3567 * represent special characters (non-printable stuff) and other
3568 * things. When all characters are the same, c_extra is used.
3569 * "p_extra" must end in a NUL to avoid mb_ptr2len() reads past
3570 * "p_extra[n_extra]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 * For the '$' of the 'list' option, n_extra == 1, p_extra == "".
3572 */
3573 if (n_extra > 0)
3574 {
3575 if (c_extra != NUL)
3576 {
3577 c = c_extra;
3578#ifdef FEAT_MBYTE
3579 mb_c = c; /* doesn't handle non-utf-8 multi-byte! */
3580 if (enc_utf8 && (*mb_char2len)(c) > 1)
3581 {
3582 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003583 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003584 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 }
3586 else
3587 mb_utf8 = FALSE;
3588#endif
3589 }
3590 else
3591 {
3592 c = *p_extra;
3593#ifdef FEAT_MBYTE
3594 if (has_mbyte)
3595 {
3596 mb_c = c;
3597 if (enc_utf8)
3598 {
3599 /* If the UTF-8 character is more than one byte:
3600 * Decode it into "mb_c". */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003601 mb_l = (*mb_ptr2len)(p_extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 mb_utf8 = FALSE;
3603 if (mb_l > n_extra)
3604 mb_l = 1;
3605 else if (mb_l > 1)
3606 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003607 mb_c = utfc_ptr2char(p_extra, u8cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 mb_utf8 = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003609 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 }
3611 }
3612 else
3613 {
3614 /* if this is a DBCS character, put it in "mb_c" */
3615 mb_l = MB_BYTE2LEN(c);
3616 if (mb_l >= n_extra)
3617 mb_l = 1;
3618 else if (mb_l > 1)
3619 mb_c = (c << 8) + p_extra[1];
3620 }
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003621 if (mb_l == 0) /* at the NUL at end-of-line */
3622 mb_l = 1;
3623
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 /* If a double-width char doesn't fit display a '>' in the
3625 * last column. */
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003626 if ((
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627# ifdef FEAT_RIGHTLEFT
3628 wp->w_p_rl ? (col <= 0) :
3629# endif
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003630 (col >= W_WIDTH(wp) - 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 && (*mb_char2cells)(mb_c) == 2)
3632 {
3633 c = '>';
3634 mb_c = c;
3635 mb_l = 1;
3636 mb_utf8 = FALSE;
3637 multi_attr = hl_attr(HLF_AT);
3638 /* put the pointer back to output the double-width
3639 * character at the start of the next line. */
3640 ++n_extra;
3641 --p_extra;
3642 }
3643 else
3644 {
3645 n_extra -= mb_l - 1;
3646 p_extra += mb_l - 1;
3647 }
3648 }
3649#endif
3650 ++p_extra;
3651 }
3652 --n_extra;
3653 }
3654 else
3655 {
3656 /*
3657 * Get a character from the line itself.
3658 */
3659 c = *ptr;
3660#ifdef FEAT_MBYTE
3661 if (has_mbyte)
3662 {
3663 mb_c = c;
3664 if (enc_utf8)
3665 {
3666 /* If the UTF-8 character is more than one byte: Decode it
3667 * into "mb_c". */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003668 mb_l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 mb_utf8 = FALSE;
3670 if (mb_l > 1)
3671 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003672 mb_c = utfc_ptr2char(ptr, u8cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 /* Overlong encoded ASCII or ASCII with composing char
3674 * is displayed normally, except a NUL. */
3675 if (mb_c < 0x80)
3676 c = mb_c;
3677 mb_utf8 = TRUE;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003678
3679 /* At start of the line we can have a composing char.
3680 * Draw it as a space with a composing char. */
3681 if (utf_iscomposing(mb_c))
3682 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00003683 int i;
3684
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003685 for (i = Screen_mco - 1; i > 0; --i)
3686 u8cc[i] = u8cc[i - 1];
3687 u8cc[0] = mb_c;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00003688 mb_c = ' ';
3689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 }
3691
3692 if ((mb_l == 1 && c >= 0x80)
3693 || (mb_l >= 1 && mb_c == 0)
3694 || (mb_l > 1 && (!vim_isprintc(mb_c)
Bram Moolenaar11936362007-09-17 20:39:42 +00003695# ifdef UNICODE16
3696 || mb_c >= 0x10000
3697# endif
3698 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 {
3700 /*
3701 * Illegal UTF-8 byte: display as <xx>.
3702 * Non-BMP character : display as ? or fullwidth ?.
3703 */
Bram Moolenaar11936362007-09-17 20:39:42 +00003704# ifdef UNICODE16
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 if (mb_c < 0x10000)
Bram Moolenaar11936362007-09-17 20:39:42 +00003706# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 {
3708 transchar_hex(extra, mb_c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003709# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 if (wp->w_p_rl) /* reverse */
3711 rl_mirror(extra);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003712# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 }
Bram Moolenaar11936362007-09-17 20:39:42 +00003714# ifdef UNICODE16
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 else if (utf_char2cells(mb_c) != 2)
3716 STRCPY(extra, "?");
3717 else
3718 /* 0xff1f in UTF-8: full-width '?' */
3719 STRCPY(extra, "\357\274\237");
Bram Moolenaar11936362007-09-17 20:39:42 +00003720# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721
3722 p_extra = extra;
3723 c = *p_extra;
3724 mb_c = mb_ptr2char_adv(&p_extra);
3725 mb_utf8 = (c >= 0x80);
3726 n_extra = (int)STRLEN(p_extra);
3727 c_extra = NUL;
3728 if (area_attr == 0 && search_attr == 0)
3729 {
3730 n_attr = n_extra + 1;
3731 extra_attr = hl_attr(HLF_8);
3732 saved_attr2 = char_attr; /* save current attr */
3733 }
3734 }
3735 else if (mb_l == 0) /* at the NUL at end-of-line */
3736 mb_l = 1;
3737#ifdef FEAT_ARABIC
3738 else if (p_arshape && !p_tbidi && ARABIC_CHAR(mb_c))
3739 {
3740 /* Do Arabic shaping. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003741 int pc, pc1, nc;
3742 int pcc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743
3744 /* The idea of what is the previous and next
3745 * character depends on 'rightleft'. */
3746 if (wp->w_p_rl)
3747 {
3748 pc = prev_c;
3749 pc1 = prev_c1;
3750 nc = utf_ptr2char(ptr + mb_l);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003751 prev_c1 = u8cc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 }
3753 else
3754 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003755 pc = utfc_ptr2char(ptr + mb_l, pcc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 nc = prev_c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003757 pc1 = pcc[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 }
3759 prev_c = mb_c;
3760
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003761 mb_c = arabic_shape(mb_c, &c, &u8cc[0], pc, pc1, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 }
3763 else
3764 prev_c = mb_c;
3765#endif
3766 }
3767 else /* enc_dbcs */
3768 {
3769 mb_l = MB_BYTE2LEN(c);
3770 if (mb_l == 0) /* at the NUL at end-of-line */
3771 mb_l = 1;
3772 else if (mb_l > 1)
3773 {
3774 /* We assume a second byte below 32 is illegal.
3775 * Hopefully this is OK for all double-byte encodings!
3776 */
3777 if (ptr[1] >= 32)
3778 mb_c = (c << 8) + ptr[1];
3779 else
3780 {
3781 if (ptr[1] == NUL)
3782 {
3783 /* head byte at end of line */
3784 mb_l = 1;
3785 transchar_nonprint(extra, c);
3786 }
3787 else
3788 {
3789 /* illegal tail byte */
3790 mb_l = 2;
3791 STRCPY(extra, "XX");
3792 }
3793 p_extra = extra;
3794 n_extra = (int)STRLEN(extra) - 1;
3795 c_extra = NUL;
3796 c = *p_extra++;
3797 if (area_attr == 0 && search_attr == 0)
3798 {
3799 n_attr = n_extra + 1;
3800 extra_attr = hl_attr(HLF_8);
3801 saved_attr2 = char_attr; /* save current attr */
3802 }
3803 mb_c = c;
3804 }
3805 }
3806 }
3807 /* If a double-width char doesn't fit display a '>' in the
3808 * last column; the character is displayed at the start of the
3809 * next line. */
3810 if ((
3811# ifdef FEAT_RIGHTLEFT
3812 wp->w_p_rl ? (col <= 0) :
3813# endif
3814 (col >= W_WIDTH(wp) - 1))
3815 && (*mb_char2cells)(mb_c) == 2)
3816 {
3817 c = '>';
3818 mb_c = c;
3819 mb_utf8 = FALSE;
3820 mb_l = 1;
3821 multi_attr = hl_attr(HLF_AT);
3822 /* Put pointer back so that the character will be
3823 * displayed at the start of the next line. */
3824 --ptr;
3825 }
3826 else if (*ptr != NUL)
3827 ptr += mb_l - 1;
3828
3829 /* If a double-width char doesn't fit at the left side display
3830 * a '<' in the first column. */
3831 if (n_skip > 0 && mb_l > 1)
3832 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 n_extra = 1;
Bram Moolenaara064ac82007-08-05 18:10:54 +00003834 c_extra = '<';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 c = ' ';
3836 if (area_attr == 0 && search_attr == 0)
3837 {
3838 n_attr = n_extra + 1;
3839 extra_attr = hl_attr(HLF_AT);
3840 saved_attr2 = char_attr; /* save current attr */
3841 }
3842 mb_c = c;
3843 mb_utf8 = FALSE;
3844 mb_l = 1;
3845 }
3846
3847 }
3848#endif
3849 ++ptr;
3850
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003851 /* 'list' : change char 160 to lcs_nbsp. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003852 if (wp->w_p_list && (c == 160
3853#ifdef FEAT_MBYTE
3854 || (mb_utf8 && mb_c == 160)
3855#endif
3856 ) && lcs_nbsp)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003857 {
3858 c = lcs_nbsp;
3859 if (area_attr == 0 && search_attr == 0)
3860 {
3861 n_attr = 1;
3862 extra_attr = hl_attr(HLF_8);
3863 saved_attr2 = char_attr; /* save current attr */
3864 }
3865#ifdef FEAT_MBYTE
3866 mb_c = c;
3867 if (enc_utf8 && (*mb_char2len)(c) > 1)
3868 {
3869 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003870 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003871 c = 0xc0;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003872 }
3873 else
3874 mb_utf8 = FALSE;
3875#endif
3876 }
3877
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 if (extra_check)
3879 {
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003880#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00003881 int can_spell = TRUE;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003882#endif
Bram Moolenaar217ad922005-03-20 22:37:15 +00003883
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003884#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 /* Get syntax attribute, unless still at the start of the line
3886 * (double-wide char that doesn't fit). */
Bram Moolenaar217ad922005-03-20 22:37:15 +00003887 v = (long)(ptr - line);
3888 if (has_syntax && v > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 {
3890 /* Get the syntax attribute for the character. If there
3891 * is an error, disable syntax highlighting. */
3892 save_did_emsg = did_emsg;
3893 did_emsg = FALSE;
3894
Bram Moolenaar217ad922005-03-20 22:37:15 +00003895 syntax_attr = get_syntax_attr((colnr_T)v - 1,
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003896# ifdef FEAT_SPELL
3897 has_spell ? &can_spell :
3898# endif
Bram Moolenaar56cefaf2008-01-12 15:47:10 +00003899 NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900
3901 if (did_emsg)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00003902 {
3903 wp->w_buffer->b_syn_error = TRUE;
3904 has_syntax = FALSE;
3905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 else
3907 did_emsg = save_did_emsg;
3908
3909 /* Need to get the line again, a multi-line regexp may
3910 * have made it invalid. */
3911 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3912 ptr = line + v;
3913
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003914 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 char_attr = syntax_attr;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003916 else
Bram Moolenaarbc045ea2005-06-05 22:01:26 +00003917 char_attr = hl_combine_attr(syntax_attr, char_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 }
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003919#endif
Bram Moolenaar217ad922005-03-20 22:37:15 +00003920
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003921#ifdef FEAT_SPELL
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003922 /* Check spelling (unless at the end of the line).
Bram Moolenaarf3681cc2005-06-08 22:03:13 +00003923 * Only do this when there is no syntax highlighting, the
3924 * @Spell cluster is not used or the current syntax item
3925 * contains the @Spell cluster. */
Bram Moolenaar30abd282005-06-22 22:35:10 +00003926 if (has_spell && v >= word_end && v > cur_checked_col)
Bram Moolenaar217ad922005-03-20 22:37:15 +00003927 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003928 spell_attr = 0;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003929# ifdef FEAT_SYN_HL
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003930 if (!attr_pri)
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003931 char_attr = syntax_attr;
Bram Moolenaar600dddc2006-03-12 22:05:10 +00003932# endif
3933 if (c != 0 && (
3934# ifdef FEAT_SYN_HL
3935 !has_syntax ||
3936# endif
3937 can_spell))
Bram Moolenaar217ad922005-03-20 22:37:15 +00003938 {
Bram Moolenaar30abd282005-06-22 22:35:10 +00003939 char_u *prev_ptr, *p;
3940 int len;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003941 hlf_T spell_hlf = HLF_COUNT;
Bram Moolenaar217ad922005-03-20 22:37:15 +00003942# ifdef FEAT_MBYTE
Bram Moolenaare7566042005-06-17 22:00:15 +00003943 if (has_mbyte)
3944 {
3945 prev_ptr = ptr - mb_l;
3946 v -= mb_l - 1;
3947 }
3948 else
Bram Moolenaar217ad922005-03-20 22:37:15 +00003949# endif
Bram Moolenaare7566042005-06-17 22:00:15 +00003950 prev_ptr = ptr - 1;
Bram Moolenaar30abd282005-06-22 22:35:10 +00003951
3952 /* Use nextline[] if possible, it has the start of the
3953 * next line concatenated. */
3954 if ((prev_ptr - line) - nextlinecol >= 0)
3955 p = nextline + (prev_ptr - line) - nextlinecol;
3956 else
3957 p = prev_ptr;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003958 cap_col -= (int)(prev_ptr - line);
Bram Moolenaar4770d092006-01-12 23:22:24 +00003959 len = spell_check(wp, p, &spell_hlf, &cap_col,
3960 nochange);
Bram Moolenaar30abd282005-06-22 22:35:10 +00003961 word_end = v + len;
Bram Moolenaar217ad922005-03-20 22:37:15 +00003962
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003963 /* In Insert mode only highlight a word that
3964 * doesn't touch the cursor. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003965 if (spell_hlf != HLF_COUNT
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003966 && (State & INSERT) != 0
3967 && wp->w_cursor.lnum == lnum
3968 && wp->w_cursor.col >=
Bram Moolenaar217ad922005-03-20 22:37:15 +00003969 (colnr_T)(prev_ptr - line)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003970 && wp->w_cursor.col < (colnr_T)word_end)
3971 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003972 spell_hlf = HLF_COUNT;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00003973 spell_redraw_lnum = lnum;
Bram Moolenaar217ad922005-03-20 22:37:15 +00003974 }
Bram Moolenaar30abd282005-06-22 22:35:10 +00003975
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003976 if (spell_hlf == HLF_COUNT && p != prev_ptr
Bram Moolenaar30abd282005-06-22 22:35:10 +00003977 && (p - nextline) + len > nextline_idx)
3978 {
3979 /* Remember that the good word continues at the
3980 * start of the next line. */
3981 checked_lnum = lnum + 1;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003982 checked_col = (int)((p - nextline) + len - nextline_idx);
Bram Moolenaar30abd282005-06-22 22:35:10 +00003983 }
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00003984
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003985 /* Turn index into actual attributes. */
3986 if (spell_hlf != HLF_COUNT)
3987 spell_attr = highlight_attr[spell_hlf];
3988
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00003989 if (cap_col > 0)
3990 {
3991 if (p != prev_ptr
3992 && (p - nextline) + cap_col >= nextline_idx)
3993 {
3994 /* Remember that the word in the next line
3995 * must start with a capital. */
3996 capcol_lnum = lnum + 1;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003997 cap_col = (int)((p - nextline) + cap_col
3998 - nextline_idx);
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00003999 }
4000 else
4001 /* Compute the actual column. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004002 cap_col += (int)(prev_ptr - line);
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00004003 }
Bram Moolenaar217ad922005-03-20 22:37:15 +00004004 }
Bram Moolenaar217ad922005-03-20 22:37:15 +00004005 }
4006 if (spell_attr != 0)
Bram Moolenaar30abd282005-06-22 22:35:10 +00004007 {
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004008 if (!attr_pri)
Bram Moolenaar30abd282005-06-22 22:35:10 +00004009 char_attr = hl_combine_attr(char_attr, spell_attr);
4010 else
4011 char_attr = hl_combine_attr(spell_attr, char_attr);
4012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013#endif
4014#ifdef FEAT_LINEBREAK
4015 /*
Bram Moolenaar217ad922005-03-20 22:37:15 +00004016 * Found last space before word: check for line break.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 */
4018 if (wp->w_p_lbr && vim_isbreak(c) && !vim_isbreak(*ptr)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004019 && !wp->w_p_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 {
4021 n_extra = win_lbr_chartabsize(wp, ptr - (
4022# ifdef FEAT_MBYTE
4023 has_mbyte ? mb_l :
4024# endif
4025 1), (colnr_T)vcol, NULL) - 1;
4026 c_extra = ' ';
4027 if (vim_iswhite(c))
4028 c = ' ';
4029 }
4030#endif
4031
4032 if (trailcol != MAXCOL && ptr > line + trailcol && c == ' ')
4033 {
4034 c = lcs_trail;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004035 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 {
4037 n_attr = 1;
4038 extra_attr = hl_attr(HLF_8);
4039 saved_attr2 = char_attr; /* save current attr */
4040 }
4041#ifdef FEAT_MBYTE
4042 mb_c = c;
4043 if (enc_utf8 && (*mb_char2len)(c) > 1)
4044 {
4045 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004046 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004047 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 }
4049 else
4050 mb_utf8 = FALSE;
4051#endif
4052 }
4053 }
4054
4055 /*
4056 * Handling of non-printable characters.
4057 */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004058 if (!(chartab[c & 0xff] & CT_PRINT_CHAR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 {
4060 /*
4061 * when getting a character from the file, we may have to
4062 * turn it into something else on the way to putting it
4063 * into "ScreenLines".
4064 */
4065 if (c == TAB && (!wp->w_p_list || lcs_tab1))
4066 {
4067 /* tab amount depends on current column */
4068 n_extra = (int)wp->w_buffer->b_p_ts
4069 - vcol % (int)wp->w_buffer->b_p_ts - 1;
4070#ifdef FEAT_MBYTE
4071 mb_utf8 = FALSE; /* don't draw as UTF-8 */
4072#endif
4073 if (wp->w_p_list)
4074 {
4075 c = lcs_tab1;
4076 c_extra = lcs_tab2;
4077 n_attr = n_extra + 1;
4078 extra_attr = hl_attr(HLF_8);
4079 saved_attr2 = char_attr; /* save current attr */
4080#ifdef FEAT_MBYTE
4081 mb_c = c;
4082 if (enc_utf8 && (*mb_char2len)(c) > 1)
4083 {
4084 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004085 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004086 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 }
4088#endif
4089 }
4090 else
4091 {
4092 c_extra = ' ';
4093 c = ' ';
4094 }
4095 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004096 else if (c == NUL
4097 && ((wp->w_p_list && lcs_eol > 0)
4098 || ((fromcol >= 0 || fromcol_prev >= 0)
4099 && tocol > vcol
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004100#ifdef FEAT_VISUAL
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004101 && VIsual_mode != Ctrl_V
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004102#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004103 && (
4104# ifdef FEAT_RIGHTLEFT
4105 wp->w_p_rl ? (col >= 0) :
4106# endif
4107 (col < W_WIDTH(wp)))
4108 && !(noinvcur
4109 && (colnr_T)vcol == wp->w_virtcol)))
4110 && lcs_eol_one >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 {
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004112 /* Display a '$' after the line or highlight an extra
4113 * character if the line break is included. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114#if defined(FEAT_DIFF) || defined(LINE_ATTR)
4115 /* For a diff line the highlighting continues after the
4116 * "$". */
4117 if (
4118# ifdef FEAT_DIFF
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004119 diff_hlf == (hlf_T)0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120# ifdef LINE_ATTR
4121 &&
4122# endif
4123# endif
4124# ifdef LINE_ATTR
4125 line_attr == 0
4126# endif
4127 )
4128#endif
4129 {
4130#ifdef FEAT_VIRTUALEDIT
4131 /* In virtualedit, visual selections may extend
4132 * beyond end of line. */
4133 if (area_highlighting && virtual_active()
4134 && tocol != MAXCOL && vcol < tocol)
4135 n_extra = 0;
4136 else
4137#endif
4138 {
4139 p_extra = at_end_str;
4140 n_extra = 1;
4141 c_extra = NUL;
4142 }
4143 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004144 if (wp->w_p_list)
4145 c = lcs_eol;
4146 else
4147 c = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 lcs_eol_one = -1;
4149 --ptr; /* put it back at the NUL */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004150 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 {
4152 extra_attr = hl_attr(HLF_AT);
4153 n_attr = 1;
4154 }
4155#ifdef FEAT_MBYTE
4156 mb_c = c;
4157 if (enc_utf8 && (*mb_char2len)(c) > 1)
4158 {
4159 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004160 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004161 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 }
4163 else
4164 mb_utf8 = FALSE; /* don't draw as UTF-8 */
4165#endif
4166 }
4167 else if (c != NUL)
4168 {
4169 p_extra = transchar(c);
4170#ifdef FEAT_RIGHTLEFT
4171 if ((dy_flags & DY_UHEX) && wp->w_p_rl)
4172 rl_mirror(p_extra); /* reverse "<12>" */
4173#endif
4174 n_extra = byte2cells(c) - 1;
4175 c_extra = NUL;
4176 c = *p_extra++;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004177 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 {
4179 n_attr = n_extra + 1;
4180 extra_attr = hl_attr(HLF_8);
4181 saved_attr2 = char_attr; /* save current attr */
4182 }
4183#ifdef FEAT_MBYTE
4184 mb_utf8 = FALSE; /* don't draw as UTF-8 */
4185#endif
4186 }
4187#ifdef FEAT_VIRTUALEDIT
4188 else if (VIsual_active
4189 && (VIsual_mode == Ctrl_V
4190 || VIsual_mode == 'v')
4191 && virtual_active()
4192 && tocol != MAXCOL
4193 && vcol < tocol
4194 && (
4195# ifdef FEAT_RIGHTLEFT
4196 wp->w_p_rl ? (col >= 0) :
4197# endif
4198 (col < W_WIDTH(wp))))
4199 {
4200 c = ' ';
4201 --ptr; /* put it back at the NUL */
4202 }
4203#endif
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004204#if defined(LINE_ATTR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 else if ((
4206# ifdef FEAT_DIFF
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004207 diff_hlf != (hlf_T)0 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 line_attr != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 ) && (
4211# ifdef FEAT_RIGHTLEFT
4212 wp->w_p_rl ? (col >= 0) :
4213# endif
4214 (col < W_WIDTH(wp))))
4215 {
4216 /* Highlight until the right side of the window */
4217 c = ' ';
4218 --ptr; /* put it back at the NUL */
Bram Moolenaar91170f82006-05-05 21:15:17 +00004219
4220 /* Remember we do the char for line highlighting. */
4221 ++did_line_attr;
4222
4223 /* don't do search HL for the rest of the line */
4224 if (line_attr != 0 && char_attr == search_attr && col > 0)
4225 char_attr = line_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226# ifdef FEAT_DIFF
4227 if (diff_hlf == HLF_TXD)
4228 {
4229 diff_hlf = HLF_CHD;
4230 if (attr == 0 || char_attr != attr)
4231 char_attr = hl_attr(diff_hlf);
4232 }
4233# endif
4234 }
4235#endif
4236 }
4237 }
4238
4239 /* Don't override visual selection highlighting. */
4240 if (n_attr > 0
4241 && draw_state == WL_LINE
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004242 && !attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 char_attr = extra_attr;
4244
Bram Moolenaar81695252004-12-29 20:58:21 +00004245#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 /* XIM don't send preedit_start and preedit_end, but they send
4247 * preedit_changed and commit. Thus Vim can't set "im_is_active", use
4248 * im_is_preediting() here. */
4249 if (xic != NULL
4250 && lnum == curwin->w_cursor.lnum
4251 && (State & INSERT)
4252 && !p_imdisable
4253 && im_is_preediting()
4254 && draw_state == WL_LINE)
4255 {
4256 colnr_T tcol;
4257
4258 if (preedit_end_col == MAXCOL)
4259 getvcol(curwin, &(curwin->w_cursor), &tcol, NULL, NULL);
4260 else
4261 tcol = preedit_end_col;
4262 if ((long)preedit_start_col <= vcol && vcol < (long)tcol)
4263 {
4264 if (feedback_old_attr < 0)
4265 {
4266 feedback_col = 0;
4267 feedback_old_attr = char_attr;
4268 }
4269 char_attr = im_get_feedback_attr(feedback_col);
4270 if (char_attr < 0)
4271 char_attr = feedback_old_attr;
4272 feedback_col++;
4273 }
4274 else if (feedback_old_attr >= 0)
4275 {
4276 char_attr = feedback_old_attr;
4277 feedback_old_attr = -1;
4278 feedback_col = 0;
4279 }
4280 }
4281#endif
4282 /*
4283 * Handle the case where we are in column 0 but not on the first
4284 * character of the line and the user wants us to show us a
4285 * special character (via 'listchars' option "precedes:<char>".
4286 */
4287 if (lcs_prec_todo != NUL
4288 && (wp->w_p_wrap ? wp->w_skipcol > 0 : wp->w_leftcol > 0)
4289#ifdef FEAT_DIFF
4290 && filler_todo <= 0
4291#endif
4292 && draw_state > WL_NR
4293 && c != NUL)
4294 {
4295 c = lcs_prec;
4296 lcs_prec_todo = NUL;
4297#ifdef FEAT_MBYTE
4298 mb_c = c;
4299 if (enc_utf8 && (*mb_char2len)(c) > 1)
4300 {
4301 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004302 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004303 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 }
4305 else
4306 mb_utf8 = FALSE; /* don't draw as UTF-8 */
4307#endif
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004308 if (!attr_pri)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 {
4310 saved_attr3 = char_attr; /* save current attr */
4311 char_attr = hl_attr(HLF_AT); /* later copied to char_attr */
4312 n_attr3 = 1;
4313 }
4314 }
4315
4316 /*
Bram Moolenaar91170f82006-05-05 21:15:17 +00004317 * At end of the text line or just after the last character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 */
Bram Moolenaar91170f82006-05-05 21:15:17 +00004319 if (c == NUL
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004320#if defined(LINE_ATTR)
Bram Moolenaar91170f82006-05-05 21:15:17 +00004321 || did_line_attr == 1
4322#endif
4323 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 {
Bram Moolenaar91170f82006-05-05 21:15:17 +00004325#ifdef FEAT_SEARCH_EXTRA
4326 long prevcol = (long)(ptr - line) - (c == NUL);
Bram Moolenaara443af82007-11-08 13:51:42 +00004327
4328 /* we're not really at that column when skipping some text */
Bram Moolenaar33741a02007-11-08 20:24:19 +00004329 if ((long)(wp->w_p_wrap ? wp->w_skipcol : wp->w_leftcol) > prevcol)
Bram Moolenaara443af82007-11-08 13:51:42 +00004330 ++prevcol;
Bram Moolenaar91170f82006-05-05 21:15:17 +00004331#endif
4332
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 /* invert at least one char, used for Visual and empty line or
4334 * highlight match at end of line. If it's beyond the last
4335 * char on the screen, just overwrite that one (tricky!) Not
4336 * needed when a '$' was displayed for 'list'. */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004337#ifdef FEAT_SEARCH_EXTRA
4338 prevcol_hl_flag = FALSE;
4339 if (prevcol == (long)search_hl.startcol)
4340 prevcol_hl_flag = TRUE;
4341 else
4342 {
4343 cur = wp->w_match_head;
4344 while (cur != NULL)
4345 {
4346 if (prevcol == (long)cur->hl.startcol)
4347 {
4348 prevcol_hl_flag = TRUE;
4349 break;
4350 }
4351 cur = cur->next;
4352 }
4353 }
4354#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 if (lcs_eol == lcs_eol_one
Bram Moolenaar91170f82006-05-05 21:15:17 +00004356 && ((area_attr != 0 && vcol == fromcol && c == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357#ifdef FEAT_SEARCH_EXTRA
4358 /* highlight 'hlsearch' match at end of line */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004359 || (prevcol_hl_flag == TRUE
Bram Moolenaar6c60ea22006-07-11 20:36:45 +00004360# if defined(LINE_ATTR)
Bram Moolenaar91170f82006-05-05 21:15:17 +00004361 && did_line_attr <= 1
4362# endif
4363 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364#endif
4365 ))
4366 {
4367 int n = 0;
4368
4369#ifdef FEAT_RIGHTLEFT
4370 if (wp->w_p_rl)
4371 {
4372 if (col < 0)
4373 n = 1;
4374 }
4375 else
4376#endif
4377 {
4378 if (col >= W_WIDTH(wp))
4379 n = -1;
4380 }
4381 if (n != 0)
4382 {
4383 /* At the window boundary, highlight the last character
4384 * instead (better than nothing). */
4385 off += n;
4386 col += n;
4387 }
4388 else
4389 {
4390 /* Add a blank character to highlight. */
4391 ScreenLines[off] = ' ';
4392#ifdef FEAT_MBYTE
4393 if (enc_utf8)
4394 ScreenLinesUC[off] = 0;
4395#endif
4396 }
4397#ifdef FEAT_SEARCH_EXTRA
4398 if (area_attr == 0)
4399 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004400 /* Use attributes from match with highest priority among
4401 * 'search_hl' and the match list. */
4402 char_attr = search_hl.attr;
4403 cur = wp->w_match_head;
4404 shl_flag = FALSE;
4405 while (cur != NULL || shl_flag == FALSE)
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004406 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004407 if (shl_flag == FALSE
4408 && ((cur != NULL
4409 && cur->priority > SEARCH_HL_PRIORITY)
4410 || cur == NULL))
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004411 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004412 shl = &search_hl;
4413 shl_flag = TRUE;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004414 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004415 else
4416 shl = &cur->hl;
4417 if ((ptr - line) - 1 == (long)shl->startcol)
4418 char_attr = shl->attr;
4419 if (shl != &search_hl && cur != NULL)
4420 cur = cur->next;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 }
4423#endif
4424 ScreenAttrs[off] = char_attr;
4425#ifdef FEAT_RIGHTLEFT
4426 if (wp->w_p_rl)
Bram Moolenaara443af82007-11-08 13:51:42 +00004427 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 --col;
Bram Moolenaara443af82007-11-08 13:51:42 +00004429 --off;
4430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 else
4432#endif
Bram Moolenaara443af82007-11-08 13:51:42 +00004433 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 ++col;
Bram Moolenaara443af82007-11-08 13:51:42 +00004435 ++off;
4436 }
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004437 ++vcol;
Bram Moolenaara443af82007-11-08 13:51:42 +00004438#ifdef FEAT_SYN_HL
4439 eol_hl_off = 1;
4440#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 }
Bram Moolenaar91170f82006-05-05 21:15:17 +00004442 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443
Bram Moolenaar91170f82006-05-05 21:15:17 +00004444 /*
4445 * At end of the text line.
4446 */
4447 if (c == NUL)
4448 {
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004449#ifdef FEAT_SYN_HL
Bram Moolenaara443af82007-11-08 13:51:42 +00004450 if (eol_hl_off > 0 && vcol - eol_hl_off == (long)wp->w_virtcol)
4451 {
4452 /* highlight last char after line */
4453 --col;
4454 --off;
4455 --vcol;
4456 }
4457
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004458 /* Highlight 'cursorcolumn' past end of the line. */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00004459 if (wp->w_p_wrap)
4460 v = wp->w_skipcol;
4461 else
4462 v = wp->w_leftcol;
Bram Moolenaar8dff8182006-04-06 20:18:50 +00004463 /* check if line ends before left margin */
4464 if (vcol < v + col - win_col_off(wp))
4465
4466 vcol = v + col - win_col_off(wp);
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004467 if (wp->w_p_cuc
Bram Moolenaara443af82007-11-08 13:51:42 +00004468 && (int)wp->w_virtcol >= vcol - eol_hl_off
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004469 && (int)wp->w_virtcol < W_WIDTH(wp) * (row - startrow + 1)
4470 + v
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004471 && lnum != wp->w_cursor.lnum
4472# ifdef FEAT_RIGHTLEFT
4473 && !wp->w_p_rl
4474# endif
4475 )
4476 {
4477 while (col < W_WIDTH(wp))
4478 {
4479 ScreenLines[off] = ' ';
4480#ifdef FEAT_MBYTE
4481 if (enc_utf8)
4482 ScreenLinesUC[off] = 0;
4483#endif
4484 ++col;
Bram Moolenaarca003e12006-03-17 23:19:38 +00004485 if (vcol == (long)wp->w_virtcol)
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004486 {
4487 ScreenAttrs[off] = hl_attr(HLF_CUC);
4488 break;
4489 }
4490 ScreenAttrs[off++] = 0;
4491 ++vcol;
4492 }
4493 }
4494#endif
4495
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 SCREEN_LINE(screen_row, W_WINCOL(wp), col, (int)W_WIDTH(wp),
4497 wp->w_p_rl);
4498 row++;
4499
4500 /*
4501 * Update w_cline_height and w_cline_folded if the cursor line was
4502 * updated (saves a call to plines() later).
4503 */
4504 if (wp == curwin && lnum == curwin->w_cursor.lnum)
4505 {
4506 curwin->w_cline_row = startrow;
4507 curwin->w_cline_height = row - startrow;
4508#ifdef FEAT_FOLDING
4509 curwin->w_cline_folded = FALSE;
4510#endif
4511 curwin->w_valid |= (VALID_CHEIGHT|VALID_CROW);
4512 }
4513
4514 break;
4515 }
4516
4517 /* line continues beyond line end */
4518 if (lcs_ext
4519 && !wp->w_p_wrap
4520#ifdef FEAT_DIFF
4521 && filler_todo <= 0
4522#endif
4523 && (
4524#ifdef FEAT_RIGHTLEFT
4525 wp->w_p_rl ? col == 0 :
4526#endif
4527 col == W_WIDTH(wp) - 1)
4528 && (*ptr != NUL
Bram Moolenaar5bbc21d2008-03-09 13:30:56 +00004529 || (wp->w_p_list && lcs_eol_one > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 || (n_extra && (c_extra != NUL || *p_extra != NUL))))
4531 {
4532 c = lcs_ext;
4533 char_attr = hl_attr(HLF_AT);
4534#ifdef FEAT_MBYTE
4535 mb_c = c;
4536 if (enc_utf8 && (*mb_char2len)(c) > 1)
4537 {
4538 mb_utf8 = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004539 u8cc[0] = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004540 c = 0xc0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 }
4542 else
4543 mb_utf8 = FALSE;
4544#endif
4545 }
4546
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004547#ifdef FEAT_SYN_HL
4548 /* Highlight the cursor column if 'cursorcolumn' is set. But don't
4549 * highlight the cursor position itself. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00004550 if (wp->w_p_cuc && vcol == (long)wp->w_virtcol
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004551 && lnum != wp->w_cursor.lnum
4552 && draw_state == WL_LINE)
4553 {
4554 vcol_save_attr = char_attr;
4555 char_attr = hl_combine_attr(char_attr, hl_attr(HLF_CUC));
4556 }
4557 else
4558 vcol_save_attr = -1;
4559#endif
4560
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 /*
4562 * Store character to be displayed.
4563 * Skip characters that are left of the screen for 'nowrap'.
4564 */
4565 vcol_prev = vcol;
4566 if (draw_state < WL_LINE || n_skip <= 0)
4567 {
4568 /*
4569 * Store the character.
4570 */
4571#if defined(FEAT_RIGHTLEFT) && defined(FEAT_MBYTE)
4572 if (has_mbyte && wp->w_p_rl && (*mb_char2cells)(mb_c) > 1)
4573 {
4574 /* A double-wide character is: put first halve in left cell. */
4575 --off;
4576 --col;
4577 }
4578#endif
4579 ScreenLines[off] = c;
4580#ifdef FEAT_MBYTE
4581 if (enc_dbcs == DBCS_JPNU)
4582 ScreenLines2[off] = mb_c & 0xff;
4583 else if (enc_utf8)
4584 {
4585 if (mb_utf8)
4586 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004587 int i;
4588
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 ScreenLinesUC[off] = mb_c;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004590 if ((c & 0xff) == 0)
4591 ScreenLines[off] = 0x80; /* avoid storing zero */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004592 for (i = 0; i < Screen_mco; ++i)
4593 {
4594 ScreenLinesC[i][off] = u8cc[i];
4595 if (u8cc[i] == 0)
4596 break;
4597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 }
4599 else
4600 ScreenLinesUC[off] = 0;
4601 }
4602 if (multi_attr)
4603 {
4604 ScreenAttrs[off] = multi_attr;
4605 multi_attr = 0;
4606 }
4607 else
4608#endif
4609 ScreenAttrs[off] = char_attr;
4610
4611#ifdef FEAT_MBYTE
4612 if (has_mbyte && (*mb_char2cells)(mb_c) > 1)
4613 {
4614 /* Need to fill two screen columns. */
4615 ++off;
4616 ++col;
4617 if (enc_utf8)
4618 /* UTF-8: Put a 0 in the second screen char. */
4619 ScreenLines[off] = 0;
4620 else
4621 /* DBCS: Put second byte in the second screen char. */
4622 ScreenLines[off] = mb_c & 0xff;
4623 ++vcol;
4624 /* When "tocol" is halfway a character, set it to the end of
4625 * the character, otherwise highlighting won't stop. */
4626 if (tocol == vcol)
4627 ++tocol;
4628#ifdef FEAT_RIGHTLEFT
4629 if (wp->w_p_rl)
4630 {
4631 /* now it's time to backup one cell */
4632 --off;
4633 --col;
4634 }
4635#endif
4636 }
4637#endif
4638#ifdef FEAT_RIGHTLEFT
4639 if (wp->w_p_rl)
4640 {
4641 --off;
4642 --col;
4643 }
4644 else
4645#endif
4646 {
4647 ++off;
4648 ++col;
4649 }
4650 }
4651 else
4652 --n_skip;
4653
4654 /* Only advance the "vcol" when after the 'number' column. */
4655 if (draw_state >= WL_SBR
4656#ifdef FEAT_DIFF
4657 && filler_todo <= 0
4658#endif
4659 )
4660 ++vcol;
4661
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004662#ifdef FEAT_SYN_HL
4663 if (vcol_save_attr >= 0)
4664 char_attr = vcol_save_attr;
4665#endif
4666
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 /* restore attributes after "predeces" in 'listchars' */
4668 if (draw_state > WL_NR && n_attr3 > 0 && --n_attr3 == 0)
4669 char_attr = saved_attr3;
4670
4671 /* restore attributes after last 'listchars' or 'number' char */
4672 if (n_attr > 0 && draw_state == WL_LINE && --n_attr == 0)
4673 char_attr = saved_attr2;
4674
4675 /*
4676 * At end of screen line and there is more to come: Display the line
Bram Moolenaar367329b2007-08-30 11:53:22 +00004677 * so far. If there is no more to display it is caught above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 */
4679 if ((
4680#ifdef FEAT_RIGHTLEFT
4681 wp->w_p_rl ? (col < 0) :
4682#endif
4683 (col >= W_WIDTH(wp)))
4684 && (*ptr != NUL
4685#ifdef FEAT_DIFF
4686 || filler_todo > 0
4687#endif
4688 || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str)
4689 || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
4690 )
4691 {
4692 SCREEN_LINE(screen_row, W_WINCOL(wp), col, (int)W_WIDTH(wp),
4693 wp->w_p_rl);
4694 ++row;
4695 ++screen_row;
4696
4697 /* When not wrapping and finished diff lines, or when displayed
4698 * '$' and highlighting until last column, break here. */
4699 if ((!wp->w_p_wrap
4700#ifdef FEAT_DIFF
4701 && filler_todo <= 0
4702#endif
4703 ) || lcs_eol_one == -1)
4704 break;
4705
4706 /* When the window is too narrow draw all "@" lines. */
4707 if (draw_state != WL_LINE
4708#ifdef FEAT_DIFF
4709 && filler_todo <= 0
4710#endif
4711 )
4712 {
4713 win_draw_end(wp, '@', ' ', row, wp->w_height, HLF_AT);
4714#ifdef FEAT_VERTSPLIT
4715 draw_vsep_win(wp, row);
4716#endif
4717 row = endrow;
4718 }
4719
4720 /* When line got too long for screen break here. */
4721 if (row == endrow)
4722 {
4723 ++row;
4724 break;
4725 }
4726
4727 if (screen_cur_row == screen_row - 1
4728#ifdef FEAT_DIFF
4729 && filler_todo <= 0
4730#endif
4731 && W_WIDTH(wp) == Columns)
4732 {
4733 /* Remember that the line wraps, used for modeless copy. */
4734 LineWraps[screen_row - 1] = TRUE;
4735
4736 /*
4737 * Special trick to make copy/paste of wrapped lines work with
4738 * xterm/screen: write an extra character beyond the end of
4739 * the line. This will work with all terminal types
4740 * (regardless of the xn,am settings).
4741 * Only do this on a fast tty.
4742 * Only do this if the cursor is on the current line
4743 * (something has been written in it).
4744 * Don't do this for the GUI.
4745 * Don't do this for double-width characters.
4746 * Don't do this for a window not at the right screen border.
4747 */
4748 if (p_tf
4749#ifdef FEAT_GUI
4750 && !gui.in_use
4751#endif
4752#ifdef FEAT_MBYTE
4753 && !(has_mbyte
Bram Moolenaar367329b2007-08-30 11:53:22 +00004754 && ((*mb_off2cells)(LineOffset[screen_row],
4755 LineOffset[screen_row] + screen_Columns)
4756 == 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 || (*mb_off2cells)(LineOffset[screen_row - 1]
Bram Moolenaar367329b2007-08-30 11:53:22 +00004758 + (int)Columns - 2,
4759 LineOffset[screen_row] + screen_Columns)
4760 == 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761#endif
4762 )
4763 {
4764 /* First make sure we are at the end of the screen line,
4765 * then output the same character again to let the
4766 * terminal know about the wrap. If the terminal doesn't
4767 * auto-wrap, we overwrite the character. */
4768 if (screen_cur_col != W_WIDTH(wp))
4769 screen_char(LineOffset[screen_row - 1]
4770 + (unsigned)Columns - 1,
4771 screen_row - 1, (int)(Columns - 1));
4772
4773#ifdef FEAT_MBYTE
4774 /* When there is a multi-byte character, just output a
4775 * space to keep it simple. */
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00004776 if (has_mbyte && MB_BYTE2LEN(ScreenLines[LineOffset[
4777 screen_row - 1] + (Columns - 1)]) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 out_char(' ');
4779 else
4780#endif
4781 out_char(ScreenLines[LineOffset[screen_row - 1]
4782 + (Columns - 1)]);
4783 /* force a redraw of the first char on the next line */
4784 ScreenAttrs[LineOffset[screen_row]] = (sattr_T)-1;
4785 screen_start(); /* don't know where cursor is now */
4786 }
4787 }
4788
4789 col = 0;
4790 off = (unsigned)(current_ScreenLine - ScreenLines);
4791#ifdef FEAT_RIGHTLEFT
4792 if (wp->w_p_rl)
4793 {
4794 col = W_WIDTH(wp) - 1; /* col is not used if breaking! */
4795 off += col;
4796 }
4797#endif
4798
4799 /* reset the drawing state for the start of a wrapped line */
4800 draw_state = WL_START;
4801 saved_n_extra = n_extra;
4802 saved_p_extra = p_extra;
4803 saved_c_extra = c_extra;
4804 saved_char_attr = char_attr;
4805 n_extra = 0;
4806 lcs_prec_todo = lcs_prec;
4807#ifdef FEAT_LINEBREAK
4808# ifdef FEAT_DIFF
4809 if (filler_todo <= 0)
4810# endif
4811 need_showbreak = TRUE;
4812#endif
4813#ifdef FEAT_DIFF
4814 --filler_todo;
4815 /* When the filler lines are actually below the last line of the
4816 * file, don't draw the line itself, break here. */
4817 if (filler_todo == 0 && wp->w_botfill)
4818 break;
4819#endif
4820 }
4821
4822 } /* for every character in the line */
4823
Bram Moolenaar600dddc2006-03-12 22:05:10 +00004824#ifdef FEAT_SPELL
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +00004825 /* After an empty line check first word for capital. */
4826 if (*skipwhite(line) == NUL)
4827 {
4828 capcol_lnum = lnum + 1;
4829 cap_col = 0;
4830 }
4831#endif
4832
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 return row;
4834}
4835
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004836#ifdef FEAT_MBYTE
4837static int comp_char_differs __ARGS((int, int));
4838
4839/*
4840 * Return if the composing characters at "off_from" and "off_to" differ.
4841 */
4842 static int
4843comp_char_differs(off_from, off_to)
4844 int off_from;
4845 int off_to;
4846{
4847 int i;
4848
4849 for (i = 0; i < Screen_mco; ++i)
4850 {
4851 if (ScreenLinesC[i][off_from] != ScreenLinesC[i][off_to])
4852 return TRUE;
4853 if (ScreenLinesC[i][off_from] == 0)
4854 break;
4855 }
4856 return FALSE;
4857}
4858#endif
4859
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860/*
4861 * Check whether the given character needs redrawing:
4862 * - the (first byte of the) character is different
4863 * - the attributes are different
4864 * - the character is multi-byte and the next byte is different
Bram Moolenaar88f3d3a2008-06-21 12:14:30 +00004865 * - the character is two cells wide and the second cell differs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 */
4867 static int
4868char_needs_redraw(off_from, off_to, cols)
4869 int off_from;
4870 int off_to;
4871 int cols;
4872{
4873 if (cols > 0
4874 && ((ScreenLines[off_from] != ScreenLines[off_to]
4875 || ScreenAttrs[off_from] != ScreenAttrs[off_to])
4876
4877#ifdef FEAT_MBYTE
4878 || (enc_dbcs != 0
4879 && MB_BYTE2LEN(ScreenLines[off_from]) > 1
4880 && (enc_dbcs == DBCS_JPNU && ScreenLines[off_from] == 0x8e
4881 ? ScreenLines2[off_from] != ScreenLines2[off_to]
4882 : (cols > 1 && ScreenLines[off_from + 1]
4883 != ScreenLines[off_to + 1])))
4884 || (enc_utf8
4885 && (ScreenLinesUC[off_from] != ScreenLinesUC[off_to]
4886 || (ScreenLinesUC[off_from] != 0
Bram Moolenaar88f3d3a2008-06-21 12:14:30 +00004887 && comp_char_differs(off_from, off_to))
4888 || (cols > 1 && ScreenLines[off_from + 1]
4889 != ScreenLines[off_to + 1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890#endif
4891 ))
4892 return TRUE;
4893 return FALSE;
4894}
4895
4896/*
4897 * Move one "cooked" screen line to the screen, but only the characters that
4898 * have actually changed. Handle insert/delete character.
4899 * "coloff" gives the first column on the screen for this line.
4900 * "endcol" gives the columns where valid characters are.
4901 * "clear_width" is the width of the window. It's > 0 if the rest of the line
4902 * needs to be cleared, negative otherwise.
4903 * "rlflag" is TRUE in a rightleft window:
4904 * When TRUE and "clear_width" > 0, clear columns 0 to "endcol"
4905 * When FALSE and "clear_width" > 0, clear columns "endcol" to "clear_width"
4906 */
4907 static void
4908screen_line(row, coloff, endcol, clear_width
4909#ifdef FEAT_RIGHTLEFT
4910 , rlflag
4911#endif
4912 )
4913 int row;
4914 int coloff;
4915 int endcol;
4916 int clear_width;
4917#ifdef FEAT_RIGHTLEFT
4918 int rlflag;
4919#endif
4920{
4921 unsigned off_from;
4922 unsigned off_to;
Bram Moolenaar367329b2007-08-30 11:53:22 +00004923#ifdef FEAT_MBYTE
4924 unsigned max_off_from;
4925 unsigned max_off_to;
4926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 int col = 0;
4928#if defined(FEAT_GUI) || defined(UNIX) || defined(FEAT_VERTSPLIT)
4929 int hl;
4930#endif
4931 int force = FALSE; /* force update rest of the line */
4932 int redraw_this /* bool: does character need redraw? */
4933#ifdef FEAT_GUI
4934 = TRUE /* For GUI when while-loop empty */
4935#endif
4936 ;
4937 int redraw_next; /* redraw_this for next character */
4938#ifdef FEAT_MBYTE
4939 int clear_next = FALSE;
4940 int char_cells; /* 1: normal char */
4941 /* 2: occupies two display cells */
4942# define CHAR_CELLS char_cells
4943#else
4944# define CHAR_CELLS 1
4945#endif
4946
4947# ifdef FEAT_CLIPBOARD
4948 clip_may_clear_selection(row, row);
4949# endif
4950
4951 off_from = (unsigned)(current_ScreenLine - ScreenLines);
4952 off_to = LineOffset[row] + coloff;
Bram Moolenaar367329b2007-08-30 11:53:22 +00004953#ifdef FEAT_MBYTE
4954 max_off_from = off_from + screen_Columns;
4955 max_off_to = LineOffset[row] + screen_Columns;
4956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957
4958#ifdef FEAT_RIGHTLEFT
4959 if (rlflag)
4960 {
4961 /* Clear rest first, because it's left of the text. */
4962 if (clear_width > 0)
4963 {
4964 while (col <= endcol && ScreenLines[off_to] == ' '
4965 && ScreenAttrs[off_to] == 0
4966# ifdef FEAT_MBYTE
4967 && (!enc_utf8 || ScreenLinesUC[off_to] == 0)
4968# endif
4969 )
4970 {
4971 ++off_to;
4972 ++col;
4973 }
4974 if (col <= endcol)
4975 screen_fill(row, row + 1, col + coloff,
4976 endcol + coloff + 1, ' ', ' ', 0);
4977 }
4978 col = endcol + 1;
4979 off_to = LineOffset[row] + col + coloff;
4980 off_from += col;
4981 endcol = (clear_width > 0 ? clear_width : -clear_width);
4982 }
4983#endif /* FEAT_RIGHTLEFT */
4984
4985 redraw_next = char_needs_redraw(off_from, off_to, endcol - col);
4986
4987 while (col < endcol)
4988 {
4989#ifdef FEAT_MBYTE
4990 if (has_mbyte && (col + 1 < endcol))
Bram Moolenaar367329b2007-08-30 11:53:22 +00004991 char_cells = (*mb_off2cells)(off_from, max_off_from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 else
4993 char_cells = 1;
4994#endif
4995
4996 redraw_this = redraw_next;
4997 redraw_next = force || char_needs_redraw(off_from + CHAR_CELLS,
4998 off_to + CHAR_CELLS, endcol - col - CHAR_CELLS);
4999
5000#ifdef FEAT_GUI
5001 /* If the next character was bold, then redraw the current character to
5002 * remove any pixels that might have spilt over into us. This only
5003 * happens in the GUI.
5004 */
5005 if (redraw_next && gui.in_use)
5006 {
5007 hl = ScreenAttrs[off_to + CHAR_CELLS];
Bram Moolenaar600dddc2006-03-12 22:05:10 +00005008 if (hl > HL_ALL)
5009 hl = syn_attr2attr(hl);
5010 if (hl & HL_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 redraw_this = TRUE;
5012 }
5013#endif
5014
5015 if (redraw_this)
5016 {
5017 /*
5018 * Special handling when 'xs' termcap flag set (hpterm):
5019 * Attributes for characters are stored at the position where the
5020 * cursor is when writing the highlighting code. The
5021 * start-highlighting code must be written with the cursor on the
5022 * first highlighted character. The stop-highlighting code must
5023 * be written with the cursor just after the last highlighted
5024 * character.
5025 * Overwriting a character doesn't remove it's highlighting. Need
5026 * to clear the rest of the line, and force redrawing it
5027 * completely.
5028 */
5029 if ( p_wiv
5030 && !force
5031#ifdef FEAT_GUI
5032 && !gui.in_use
5033#endif
5034 && ScreenAttrs[off_to] != 0
5035 && ScreenAttrs[off_from] != ScreenAttrs[off_to])
5036 {
5037 /*
5038 * Need to remove highlighting attributes here.
5039 */
5040 windgoto(row, col + coloff);
5041 out_str(T_CE); /* clear rest of this screen line */
5042 screen_start(); /* don't know where cursor is now */
5043 force = TRUE; /* force redraw of rest of the line */
5044 redraw_next = TRUE; /* or else next char would miss out */
5045
5046 /*
5047 * If the previous character was highlighted, need to stop
5048 * highlighting at this character.
5049 */
5050 if (col + coloff > 0 && ScreenAttrs[off_to - 1] != 0)
5051 {
5052 screen_attr = ScreenAttrs[off_to - 1];
5053 term_windgoto(row, col + coloff);
5054 screen_stop_highlight();
5055 }
5056 else
5057 screen_attr = 0; /* highlighting has stopped */
5058 }
5059#ifdef FEAT_MBYTE
5060 if (enc_dbcs != 0)
5061 {
5062 /* Check if overwriting a double-byte with a single-byte or
5063 * the other way around requires another character to be
5064 * redrawn. For UTF-8 this isn't needed, because comparing
5065 * ScreenLinesUC[] is sufficient. */
5066 if (char_cells == 1
5067 && col + 1 < endcol
Bram Moolenaar367329b2007-08-30 11:53:22 +00005068 && (*mb_off2cells)(off_to, max_off_to) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 {
5070 /* Writing a single-cell character over a double-cell
5071 * character: need to redraw the next cell. */
5072 ScreenLines[off_to + 1] = 0;
5073 redraw_next = TRUE;
5074 }
5075 else if (char_cells == 2
5076 && col + 2 < endcol
Bram Moolenaar367329b2007-08-30 11:53:22 +00005077 && (*mb_off2cells)(off_to, max_off_to) == 1
5078 && (*mb_off2cells)(off_to + 1, max_off_to) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 {
5080 /* Writing the second half of a double-cell character over
5081 * a double-cell character: need to redraw the second
5082 * cell. */
5083 ScreenLines[off_to + 2] = 0;
5084 redraw_next = TRUE;
5085 }
5086
5087 if (enc_dbcs == DBCS_JPNU)
5088 ScreenLines2[off_to] = ScreenLines2[off_from];
5089 }
5090 /* When writing a single-width character over a double-width
5091 * character and at the end of the redrawn text, need to clear out
5092 * the right halve of the old character.
5093 * Also required when writing the right halve of a double-width
5094 * char over the left halve of an existing one. */
5095 if (has_mbyte && col + char_cells == endcol
5096 && ((char_cells == 1
Bram Moolenaar367329b2007-08-30 11:53:22 +00005097 && (*mb_off2cells)(off_to, max_off_to) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 || (char_cells == 2
Bram Moolenaar367329b2007-08-30 11:53:22 +00005099 && (*mb_off2cells)(off_to, max_off_to) == 1
5100 && (*mb_off2cells)(off_to + 1, max_off_to) > 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 clear_next = TRUE;
5102#endif
5103
5104 ScreenLines[off_to] = ScreenLines[off_from];
5105#ifdef FEAT_MBYTE
5106 if (enc_utf8)
5107 {
5108 ScreenLinesUC[off_to] = ScreenLinesUC[off_from];
5109 if (ScreenLinesUC[off_from] != 0)
5110 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005111 int i;
5112
5113 for (i = 0; i < Screen_mco; ++i)
5114 ScreenLinesC[i][off_to] = ScreenLinesC[i][off_from];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 }
5116 }
5117 if (char_cells == 2)
5118 ScreenLines[off_to + 1] = ScreenLines[off_from + 1];
5119#endif
5120
5121#if defined(FEAT_GUI) || defined(UNIX)
5122 /* The bold trick makes a single row of pixels appear in the next
5123 * character. When a bold character is removed, the next
5124 * character should be redrawn too. This happens for our own GUI
5125 * and for some xterms. */
5126 if (
5127# ifdef FEAT_GUI
5128 gui.in_use
5129# endif
5130# if defined(FEAT_GUI) && defined(UNIX)
5131 ||
5132# endif
5133# ifdef UNIX
5134 term_is_xterm
5135# endif
5136 )
5137 {
5138 hl = ScreenAttrs[off_to];
Bram Moolenaar600dddc2006-03-12 22:05:10 +00005139 if (hl > HL_ALL)
5140 hl = syn_attr2attr(hl);
5141 if (hl & HL_BOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 redraw_next = TRUE;
5143 }
5144#endif
5145 ScreenAttrs[off_to] = ScreenAttrs[off_from];
5146#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005147 /* For simplicity set the attributes of second half of a
5148 * double-wide character equal to the first half. */
5149 if (char_cells == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 ScreenAttrs[off_to + 1] = ScreenAttrs[off_from];
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005151
5152 if (enc_dbcs != 0 && char_cells == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 screen_char_2(off_to, row, col + coloff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 else
5155#endif
5156 screen_char(off_to, row, col + coloff);
5157 }
5158 else if ( p_wiv
5159#ifdef FEAT_GUI
5160 && !gui.in_use
5161#endif
5162 && col + coloff > 0)
5163 {
5164 if (ScreenAttrs[off_to] == ScreenAttrs[off_to - 1])
5165 {
5166 /*
5167 * Don't output stop-highlight when moving the cursor, it will
5168 * stop the highlighting when it should continue.
5169 */
5170 screen_attr = 0;
5171 }
5172 else if (screen_attr != 0)
5173 screen_stop_highlight();
5174 }
5175
5176 off_to += CHAR_CELLS;
5177 off_from += CHAR_CELLS;
5178 col += CHAR_CELLS;
5179 }
5180
5181#ifdef FEAT_MBYTE
5182 if (clear_next)
5183 {
5184 /* Clear the second half of a double-wide character of which the left
5185 * half was overwritten with a single-wide character. */
5186 ScreenLines[off_to] = ' ';
5187 if (enc_utf8)
5188 ScreenLinesUC[off_to] = 0;
5189 screen_char(off_to, row, col + coloff);
5190 }
5191#endif
5192
5193 if (clear_width > 0
5194#ifdef FEAT_RIGHTLEFT
5195 && !rlflag
5196#endif
5197 )
5198 {
5199#ifdef FEAT_GUI
5200 int startCol = col;
5201#endif
5202
5203 /* blank out the rest of the line */
5204 while (col < clear_width && ScreenLines[off_to] == ' '
5205 && ScreenAttrs[off_to] == 0
5206#ifdef FEAT_MBYTE
5207 && (!enc_utf8 || ScreenLinesUC[off_to] == 0)
5208#endif
5209 )
5210 {
5211 ++off_to;
5212 ++col;
5213 }
5214 if (col < clear_width)
5215 {
5216#ifdef FEAT_GUI
5217 /*
5218 * In the GUI, clearing the rest of the line may leave pixels
5219 * behind if the first character cleared was bold. Some bold
5220 * fonts spill over the left. In this case we redraw the previous
5221 * character too. If we didn't skip any blanks above, then we
5222 * only redraw if the character wasn't already redrawn anyway.
5223 */
Bram Moolenaar9c697322006-10-09 20:11:17 +00005224 if (gui.in_use && (col > startCol || !redraw_this))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 {
5226 hl = ScreenAttrs[off_to];
5227 if (hl > HL_ALL || (hl & HL_BOLD))
Bram Moolenaar9c697322006-10-09 20:11:17 +00005228 {
5229 int prev_cells = 1;
5230# ifdef FEAT_MBYTE
5231 if (enc_utf8)
5232 /* for utf-8, ScreenLines[char_offset + 1] == 0 means
5233 * that its width is 2. */
5234 prev_cells = ScreenLines[off_to - 1] == 0 ? 2 : 1;
5235 else if (enc_dbcs != 0)
5236 {
5237 /* find previous character by counting from first
5238 * column and get its width. */
5239 unsigned off = LineOffset[row];
Bram Moolenaar367329b2007-08-30 11:53:22 +00005240 unsigned max_off = LineOffset[row] + screen_Columns;
Bram Moolenaar9c697322006-10-09 20:11:17 +00005241
5242 while (off < off_to)
5243 {
Bram Moolenaar367329b2007-08-30 11:53:22 +00005244 prev_cells = (*mb_off2cells)(off, max_off);
Bram Moolenaar9c697322006-10-09 20:11:17 +00005245 off += prev_cells;
5246 }
5247 }
5248
5249 if (enc_dbcs != 0 && prev_cells > 1)
5250 screen_char_2(off_to - prev_cells, row,
5251 col + coloff - prev_cells);
5252 else
5253# endif
5254 screen_char(off_to - prev_cells, row,
5255 col + coloff - prev_cells);
5256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 }
5258#endif
5259 screen_fill(row, row + 1, col + coloff, clear_width + coloff,
5260 ' ', ' ', 0);
5261#ifdef FEAT_VERTSPLIT
5262 off_to += clear_width - col;
5263 col = clear_width;
5264#endif
5265 }
5266 }
5267
5268 if (clear_width > 0)
5269 {
5270#ifdef FEAT_VERTSPLIT
5271 /* For a window that's left of another, draw the separator char. */
5272 if (col + coloff < Columns)
5273 {
5274 int c;
5275
5276 c = fillchar_vsep(&hl);
5277 if (ScreenLines[off_to] != c
5278# ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005279 || (enc_utf8 && (int)ScreenLinesUC[off_to]
5280 != (c >= 0x80 ? c : 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281# endif
5282 || ScreenAttrs[off_to] != hl)
5283 {
5284 ScreenLines[off_to] = c;
5285 ScreenAttrs[off_to] = hl;
5286# ifdef FEAT_MBYTE
5287 if (enc_utf8)
5288 {
5289 if (c >= 0x80)
5290 {
5291 ScreenLinesUC[off_to] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005292 ScreenLinesC[0][off_to] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 }
5294 else
5295 ScreenLinesUC[off_to] = 0;
5296 }
5297# endif
5298 screen_char(off_to, row, col + coloff);
5299 }
5300 }
5301 else
5302#endif
5303 LineWraps[row] = FALSE;
5304 }
5305}
5306
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005307#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005309 * Mirror text "str" for right-left displaying.
5310 * Only works for single-byte characters (e.g., numbers).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005312 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313rl_mirror(str)
5314 char_u *str;
5315{
5316 char_u *p1, *p2;
5317 int t;
5318
5319 for (p1 = str, p2 = str + STRLEN(str) - 1; p1 < p2; ++p1, --p2)
5320 {
5321 t = *p1;
5322 *p1 = *p2;
5323 *p2 = t;
5324 }
5325}
5326#endif
5327
5328#if defined(FEAT_WINDOWS) || defined(PROTO)
5329/*
5330 * mark all status lines for redraw; used after first :cd
5331 */
5332 void
5333status_redraw_all()
5334{
5335 win_T *wp;
5336
5337 for (wp = firstwin; wp; wp = wp->w_next)
5338 if (wp->w_status_height)
5339 {
5340 wp->w_redr_status = TRUE;
5341 redraw_later(VALID);
5342 }
5343}
5344
5345/*
5346 * mark all status lines of the current buffer for redraw
5347 */
5348 void
5349status_redraw_curbuf()
5350{
5351 win_T *wp;
5352
5353 for (wp = firstwin; wp; wp = wp->w_next)
5354 if (wp->w_status_height != 0 && wp->w_buffer == curbuf)
5355 {
5356 wp->w_redr_status = TRUE;
5357 redraw_later(VALID);
5358 }
5359}
5360
5361/*
5362 * Redraw all status lines that need to be redrawn.
5363 */
5364 void
5365redraw_statuslines()
5366{
5367 win_T *wp;
5368
5369 for (wp = firstwin; wp; wp = wp->w_next)
5370 if (wp->w_redr_status)
5371 win_redr_status(wp);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005372 if (redraw_tabline)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005373 draw_tabline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374}
5375#endif
5376
5377#if (defined(FEAT_WILDMENU) && defined(FEAT_VERTSPLIT)) || defined(PROTO)
5378/*
5379 * Redraw all status lines at the bottom of frame "frp".
5380 */
5381 void
5382win_redraw_last_status(frp)
5383 frame_T *frp;
5384{
5385 if (frp->fr_layout == FR_LEAF)
5386 frp->fr_win->w_redr_status = TRUE;
5387 else if (frp->fr_layout == FR_ROW)
5388 {
5389 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
5390 win_redraw_last_status(frp);
5391 }
5392 else /* frp->fr_layout == FR_COL */
5393 {
5394 frp = frp->fr_child;
5395 while (frp->fr_next != NULL)
5396 frp = frp->fr_next;
5397 win_redraw_last_status(frp);
5398 }
5399}
5400#endif
5401
5402#ifdef FEAT_VERTSPLIT
5403/*
5404 * Draw the verticap separator right of window "wp" starting with line "row".
5405 */
5406 static void
5407draw_vsep_win(wp, row)
5408 win_T *wp;
5409 int row;
5410{
5411 int hl;
5412 int c;
5413
5414 if (wp->w_vsep_width)
5415 {
5416 /* draw the vertical separator right of this window */
5417 c = fillchar_vsep(&hl);
5418 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height,
5419 W_ENDCOL(wp), W_ENDCOL(wp) + 1,
5420 c, ' ', hl);
5421 }
5422}
5423#endif
5424
5425#ifdef FEAT_WILDMENU
5426static int status_match_len __ARGS((expand_T *xp, char_u *s));
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005427static int skip_status_match_char __ARGS((expand_T *xp, char_u *s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428
5429/*
Bram Moolenaar367329b2007-08-30 11:53:22 +00005430 * Get the length of an item as it will be shown in the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431 */
5432 static int
5433status_match_len(xp, s)
5434 expand_T *xp;
5435 char_u *s;
5436{
5437 int len = 0;
5438
5439#ifdef FEAT_MENU
5440 int emenu = (xp->xp_context == EXPAND_MENUS
5441 || xp->xp_context == EXPAND_MENUNAMES);
5442
5443 /* Check for menu separators - replace with '|'. */
5444 if (emenu && menu_is_separator(s))
5445 return 1;
5446#endif
5447
5448 while (*s != NUL)
5449 {
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005450 if (skip_status_match_char(xp, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451 ++s;
Bram Moolenaar81695252004-12-29 20:58:21 +00005452 len += ptr2cells(s);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005453 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 }
5455
5456 return len;
5457}
5458
5459/*
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005460 * Return TRUE for characters that are not displayed in a status match.
5461 * These are backslashes used for escaping. Do show backslashes in help tags.
5462 */
5463 static int
5464skip_status_match_char(xp, s)
5465 expand_T *xp;
5466 char_u *s;
5467{
5468 return ((rem_backslash(s) && xp->xp_context != EXPAND_HELP)
5469#ifdef FEAT_MENU
5470 || ((xp->xp_context == EXPAND_MENUS
5471 || xp->xp_context == EXPAND_MENUNAMES)
5472 && (s[0] == '\t' || (s[0] == '\\' && s[1] != NUL)))
5473#endif
5474 );
5475}
5476
5477/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 * Show wildchar matches in the status line.
5479 * Show at least the "match" item.
5480 * We start at item 'first_match' in the list and show all matches that fit.
5481 *
5482 * If inversion is possible we use it. Else '=' characters are used.
5483 */
5484 void
5485win_redr_status_matches(xp, num_matches, matches, match, showtail)
5486 expand_T *xp;
5487 int num_matches;
5488 char_u **matches; /* list of matches */
5489 int match;
5490 int showtail;
5491{
5492#define L_MATCH(m) (showtail ? sm_gettail(matches[m]) : matches[m])
5493 int row;
5494 char_u *buf;
5495 int len;
Bram Moolenaar367329b2007-08-30 11:53:22 +00005496 int clen; /* length in screen cells */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 int fillchar;
5498 int attr;
5499 int i;
5500 int highlight = TRUE;
5501 char_u *selstart = NULL;
5502 int selstart_col = 0;
5503 char_u *selend = NULL;
5504 static int first_match = 0;
5505 int add_left = FALSE;
5506 char_u *s;
5507#ifdef FEAT_MENU
5508 int emenu;
5509#endif
5510#if defined(FEAT_MBYTE) || defined(FEAT_MENU)
5511 int l;
5512#endif
5513
5514 if (matches == NULL) /* interrupted completion? */
5515 return;
5516
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005517#ifdef FEAT_MBYTE
5518 if (has_mbyte)
5519 buf = alloc((unsigned)Columns * MB_MAXBYTES + 1);
5520 else
5521#endif
5522 buf = alloc((unsigned)Columns + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 if (buf == NULL)
5524 return;
5525
5526 if (match == -1) /* don't show match but original text */
5527 {
5528 match = 0;
5529 highlight = FALSE;
5530 }
5531 /* count 1 for the ending ">" */
5532 clen = status_match_len(xp, L_MATCH(match)) + 3;
5533 if (match == 0)
5534 first_match = 0;
5535 else if (match < first_match)
5536 {
5537 /* jumping left, as far as we can go */
5538 first_match = match;
5539 add_left = TRUE;
5540 }
5541 else
5542 {
5543 /* check if match fits on the screen */
5544 for (i = first_match; i < match; ++i)
5545 clen += status_match_len(xp, L_MATCH(i)) + 2;
5546 if (first_match > 0)
5547 clen += 2;
5548 /* jumping right, put match at the left */
5549 if ((long)clen > Columns)
5550 {
5551 first_match = match;
5552 /* if showing the last match, we can add some on the left */
5553 clen = 2;
5554 for (i = match; i < num_matches; ++i)
5555 {
5556 clen += status_match_len(xp, L_MATCH(i)) + 2;
5557 if ((long)clen >= Columns)
5558 break;
5559 }
5560 if (i == num_matches)
5561 add_left = TRUE;
5562 }
5563 }
5564 if (add_left)
5565 while (first_match > 0)
5566 {
5567 clen += status_match_len(xp, L_MATCH(first_match - 1)) + 2;
5568 if ((long)clen >= Columns)
5569 break;
5570 --first_match;
5571 }
5572
5573 fillchar = fillchar_status(&attr, TRUE);
5574
5575 if (first_match == 0)
5576 {
5577 *buf = NUL;
5578 len = 0;
5579 }
5580 else
5581 {
5582 STRCPY(buf, "< ");
5583 len = 2;
5584 }
5585 clen = len;
5586
5587 i = first_match;
5588 while ((long)(clen + status_match_len(xp, L_MATCH(i)) + 2) < Columns)
5589 {
5590 if (i == match)
5591 {
5592 selstart = buf + len;
5593 selstart_col = clen;
5594 }
5595
5596 s = L_MATCH(i);
5597 /* Check for menu separators - replace with '|' */
5598#ifdef FEAT_MENU
5599 emenu = (xp->xp_context == EXPAND_MENUS
5600 || xp->xp_context == EXPAND_MENUNAMES);
5601 if (emenu && menu_is_separator(s))
5602 {
5603 STRCPY(buf + len, transchar('|'));
5604 l = (int)STRLEN(buf + len);
5605 len += l;
5606 clen += l;
5607 }
5608 else
5609#endif
5610 for ( ; *s != NUL; ++s)
5611 {
Bram Moolenaar35c54e52005-05-20 21:25:31 +00005612 if (skip_status_match_char(xp, s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 ++s;
5614 clen += ptr2cells(s);
5615#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005616 if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 {
5618 STRNCPY(buf + len, s, l);
5619 s += l - 1;
5620 len += l;
5621 }
5622 else
5623#endif
5624 {
5625 STRCPY(buf + len, transchar_byte(*s));
5626 len += (int)STRLEN(buf + len);
5627 }
5628 }
5629 if (i == match)
5630 selend = buf + len;
5631
5632 *(buf + len++) = ' ';
5633 *(buf + len++) = ' ';
5634 clen += 2;
5635 if (++i == num_matches)
5636 break;
5637 }
5638
5639 if (i != num_matches)
5640 {
5641 *(buf + len++) = '>';
5642 ++clen;
5643 }
5644
5645 buf[len] = NUL;
5646
5647 row = cmdline_row - 1;
5648 if (row >= 0)
5649 {
5650 if (wild_menu_showing == 0)
5651 {
5652 if (msg_scrolled > 0)
5653 {
5654 /* Put the wildmenu just above the command line. If there is
5655 * no room, scroll the screen one line up. */
5656 if (cmdline_row == Rows - 1)
5657 {
5658 screen_del_lines(0, 0, 1, (int)Rows, TRUE, NULL);
5659 ++msg_scrolled;
5660 }
5661 else
5662 {
5663 ++cmdline_row;
5664 ++row;
5665 }
5666 wild_menu_showing = WM_SCROLLED;
5667 }
5668 else
5669 {
5670 /* Create status line if needed by setting 'laststatus' to 2.
5671 * Set 'winminheight' to zero to avoid that the window is
5672 * resized. */
5673 if (lastwin->w_status_height == 0)
5674 {
5675 save_p_ls = p_ls;
5676 save_p_wmh = p_wmh;
5677 p_ls = 2;
5678 p_wmh = 0;
5679 last_status(FALSE);
5680 }
5681 wild_menu_showing = WM_SHOWN;
5682 }
5683 }
5684
5685 screen_puts(buf, row, 0, attr);
5686 if (selstart != NULL && highlight)
5687 {
5688 *selend = NUL;
5689 screen_puts(selstart, row, selstart_col, hl_attr(HLF_WM));
5690 }
5691
5692 screen_fill(row, row + 1, clen, (int)Columns, fillchar, fillchar, attr);
5693 }
5694
5695#ifdef FEAT_VERTSPLIT
5696 win_redraw_last_status(topframe);
5697#else
5698 lastwin->w_redr_status = TRUE;
5699#endif
5700 vim_free(buf);
5701}
5702#endif
5703
5704#if defined(FEAT_WINDOWS) || defined(PROTO)
5705/*
5706 * Redraw the status line of window wp.
5707 *
5708 * If inversion is possible we use it. Else '=' characters are used.
5709 */
5710 void
5711win_redr_status(wp)
5712 win_T *wp;
5713{
5714 int row;
5715 char_u *p;
5716 int len;
5717 int fillchar;
5718 int attr;
5719 int this_ru_col;
5720
5721 wp->w_redr_status = FALSE;
5722 if (wp->w_status_height == 0)
5723 {
5724 /* no status line, can only be last window */
5725 redraw_cmdline = TRUE;
5726 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005727 else if (!redrawing()
5728#ifdef FEAT_INS_EXPAND
5729 /* don't update status line when popup menu is visible and may be
5730 * drawn over it */
5731 || pum_visible()
5732#endif
5733 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 {
5735 /* Don't redraw right now, do it later. */
5736 wp->w_redr_status = TRUE;
5737 }
5738#ifdef FEAT_STL_OPT
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00005739 else if (*p_stl != NUL || *wp->w_p_stl != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 {
5741 /* redraw custom status line */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005742 redraw_custum_statusline(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743 }
5744#endif
5745 else
5746 {
5747 fillchar = fillchar_status(&attr, wp == curwin);
5748
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005749 get_trans_bufname(wp->w_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 p = NameBuff;
5751 len = (int)STRLEN(p);
5752
5753 if (wp->w_buffer->b_help
5754#ifdef FEAT_QUICKFIX
5755 || wp->w_p_pvw
5756#endif
5757 || bufIsChanged(wp->w_buffer)
5758 || wp->w_buffer->b_p_ro)
5759 *(p + len++) = ' ';
5760 if (wp->w_buffer->b_help)
5761 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00005762 STRCPY(p + len, _("[Help]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 len += (int)STRLEN(p + len);
5764 }
5765#ifdef FEAT_QUICKFIX
5766 if (wp->w_p_pvw)
5767 {
5768 STRCPY(p + len, _("[Preview]"));
5769 len += (int)STRLEN(p + len);
5770 }
5771#endif
5772 if (bufIsChanged(wp->w_buffer))
5773 {
5774 STRCPY(p + len, "[+]");
5775 len += 3;
5776 }
5777 if (wp->w_buffer->b_p_ro)
5778 {
5779 STRCPY(p + len, "[RO]");
5780 len += 4;
5781 }
5782
5783#ifndef FEAT_VERTSPLIT
5784 this_ru_col = ru_col;
5785 if (this_ru_col < (Columns + 1) / 2)
5786 this_ru_col = (Columns + 1) / 2;
5787#else
5788 this_ru_col = ru_col - (Columns - W_WIDTH(wp));
5789 if (this_ru_col < (W_WIDTH(wp) + 1) / 2)
5790 this_ru_col = (W_WIDTH(wp) + 1) / 2;
5791 if (this_ru_col <= 1)
5792 {
5793 p = (char_u *)"<"; /* No room for file name! */
5794 len = 1;
5795 }
5796 else
5797#endif
5798#ifdef FEAT_MBYTE
5799 if (has_mbyte)
5800 {
5801 int clen = 0, i;
5802
5803 /* Count total number of display cells. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005804 for (i = 0; p[i] != NUL; i += (*mb_ptr2len)(p + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 clen += (*mb_ptr2cells)(p + i);
5806 /* Find first character that will fit.
5807 * Going from start to end is much faster for DBCS. */
5808 for (i = 0; p[i] != NUL && clen >= this_ru_col - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005809 i += (*mb_ptr2len)(p + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 clen -= (*mb_ptr2cells)(p + i);
5811 len = clen;
5812 if (i > 0)
5813 {
5814 p = p + i - 1;
5815 *p = '<';
5816 ++len;
5817 }
5818
5819 }
5820 else
5821#endif
5822 if (len > this_ru_col - 1)
5823 {
5824 p += len - (this_ru_col - 1);
5825 *p = '<';
5826 len = this_ru_col - 1;
5827 }
5828
5829 row = W_WINROW(wp) + wp->w_height;
5830 screen_puts(p, row, W_WINCOL(wp), attr);
5831 screen_fill(row, row + 1, len + W_WINCOL(wp),
5832 this_ru_col + W_WINCOL(wp), fillchar, fillchar, attr);
5833
5834 if (get_keymap_str(wp, NameBuff, MAXPATHL)
5835 && (int)(this_ru_col - len) > (int)(STRLEN(NameBuff) + 1))
5836 screen_puts(NameBuff, row, (int)(this_ru_col - STRLEN(NameBuff)
5837 - 1 + W_WINCOL(wp)), attr);
5838
5839#ifdef FEAT_CMDL_INFO
5840 win_redr_ruler(wp, TRUE);
5841#endif
5842 }
5843
5844#ifdef FEAT_VERTSPLIT
5845 /*
5846 * May need to draw the character below the vertical separator.
5847 */
5848 if (wp->w_vsep_width != 0 && wp->w_status_height != 0 && redrawing())
5849 {
5850 if (stl_connected(wp))
5851 fillchar = fillchar_status(&attr, wp == curwin);
5852 else
5853 fillchar = fillchar_vsep(&attr);
5854 screen_putchar(fillchar, W_WINROW(wp) + wp->w_height, W_ENDCOL(wp),
5855 attr);
5856 }
5857#endif
5858}
5859
Bram Moolenaar238a5642006-02-21 22:12:05 +00005860#ifdef FEAT_STL_OPT
5861/*
5862 * Redraw the status line according to 'statusline' and take care of any
5863 * errors encountered.
5864 */
5865 static void
5866redraw_custum_statusline(wp)
5867 win_T *wp;
5868{
5869 int save_called_emsg = called_emsg;
5870
5871 called_emsg = FALSE;
5872 win_redr_custom(wp, FALSE);
5873 if (called_emsg)
5874 set_string_option_direct((char_u *)"statusline", -1,
5875 (char_u *)"", OPT_FREE | (*wp->w_p_stl != NUL
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005876 ? OPT_LOCAL : OPT_GLOBAL), SID_ERROR);
Bram Moolenaar238a5642006-02-21 22:12:05 +00005877 called_emsg |= save_called_emsg;
5878}
5879#endif
5880
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881# ifdef FEAT_VERTSPLIT
5882/*
5883 * Return TRUE if the status line of window "wp" is connected to the status
5884 * line of the window right of it. If not, then it's a vertical separator.
5885 * Only call if (wp->w_vsep_width != 0).
5886 */
5887 int
5888stl_connected(wp)
5889 win_T *wp;
5890{
5891 frame_T *fr;
5892
5893 fr = wp->w_frame;
5894 while (fr->fr_parent != NULL)
5895 {
5896 if (fr->fr_parent->fr_layout == FR_COL)
5897 {
5898 if (fr->fr_next != NULL)
5899 break;
5900 }
5901 else
5902 {
5903 if (fr->fr_next != NULL)
5904 return TRUE;
5905 }
5906 fr = fr->fr_parent;
5907 }
5908 return FALSE;
5909}
5910# endif
5911
5912#endif /* FEAT_WINDOWS */
5913
5914#if defined(FEAT_WINDOWS) || defined(FEAT_STL_OPT) || defined(PROTO)
5915/*
5916 * Get the value to show for the language mappings, active 'keymap'.
5917 */
5918 int
5919get_keymap_str(wp, buf, len)
5920 win_T *wp;
5921 char_u *buf; /* buffer for the result */
5922 int len; /* length of buffer */
5923{
5924 char_u *p;
5925
5926 if (wp->w_buffer->b_p_iminsert != B_IMODE_LMAP)
5927 return FALSE;
5928
5929 {
5930#ifdef FEAT_EVAL
5931 buf_T *old_curbuf = curbuf;
5932 win_T *old_curwin = curwin;
5933 char_u *s;
5934
5935 curbuf = wp->w_buffer;
5936 curwin = wp;
5937 STRCPY(buf, "b:keymap_name"); /* must be writable */
5938 ++emsg_skip;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005939 s = p = eval_to_string(buf, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 --emsg_skip;
5941 curbuf = old_curbuf;
5942 curwin = old_curwin;
5943 if (p == NULL || *p == NUL)
5944#endif
5945 {
5946#ifdef FEAT_KEYMAP
5947 if (wp->w_buffer->b_kmap_state & KEYMAP_LOADED)
5948 p = wp->w_buffer->b_p_keymap;
5949 else
5950#endif
5951 p = (char_u *)"lang";
5952 }
5953 if ((int)(STRLEN(p) + 3) < len)
5954 sprintf((char *)buf, "<%s>", p);
5955 else
5956 buf[0] = NUL;
5957#ifdef FEAT_EVAL
5958 vim_free(s);
5959#endif
5960 }
5961 return buf[0] != NUL;
5962}
5963#endif
5964
5965#if defined(FEAT_STL_OPT) || defined(PROTO)
5966/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005967 * Redraw the status line or ruler of window "wp".
5968 * When "wp" is NULL redraw the tab pages line from 'tabline'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 */
5970 static void
Bram Moolenaar9372a112005-12-06 19:59:18 +00005971win_redr_custom(wp, draw_ruler)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972 win_T *wp;
Bram Moolenaar9372a112005-12-06 19:59:18 +00005973 int draw_ruler; /* TRUE or FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974{
5975 int attr;
5976 int curattr;
5977 int row;
5978 int col = 0;
5979 int maxwidth;
5980 int width;
5981 int n;
5982 int len;
5983 int fillchar;
5984 char_u buf[MAXPATHL];
5985 char_u *p;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005986 struct stl_hlrec hltab[STL_MAX_ITEM];
5987 struct stl_hlrec tabtab[STL_MAX_ITEM];
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005988 int use_sandbox = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989
5990 /* setup environment for the task at hand */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005991 if (wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005993 /* Use 'tabline'. Always at the first line of the screen. */
5994 p = p_tal;
5995 row = 0;
Bram Moolenaar65c923a2006-03-03 22:56:30 +00005996 fillchar = ' ';
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00005997 attr = hl_attr(HLF_TPF);
5998 maxwidth = Columns;
5999# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006000 use_sandbox = was_set_insecurely((char_u *)"tabline", 0);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00006001# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00006003 else
6004 {
6005 row = W_WINROW(wp) + wp->w_height;
6006 fillchar = fillchar_status(&attr, wp == curwin);
6007 maxwidth = W_WIDTH(wp);
6008
6009 if (draw_ruler)
6010 {
6011 p = p_ruf;
6012 /* advance past any leading group spec - implicit in ru_col */
6013 if (*p == '%')
6014 {
6015 if (*++p == '-')
6016 p++;
6017 if (atoi((char *) p))
6018 while (VIM_ISDIGIT(*p))
6019 p++;
6020 if (*p++ != '(')
6021 p = p_ruf;
6022 }
6023#ifdef FEAT_VERTSPLIT
6024 col = ru_col - (Columns - W_WIDTH(wp));
6025 if (col < (W_WIDTH(wp) + 1) / 2)
6026 col = (W_WIDTH(wp) + 1) / 2;
6027#else
6028 col = ru_col;
6029 if (col > (Columns + 1) / 2)
6030 col = (Columns + 1) / 2;
6031#endif
6032 maxwidth = W_WIDTH(wp) - col;
6033#ifdef FEAT_WINDOWS
6034 if (!wp->w_status_height)
6035#endif
6036 {
6037 row = Rows - 1;
6038 --maxwidth; /* writing in last column may cause scrolling */
6039 fillchar = ' ';
6040 attr = 0;
6041 }
6042
6043# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006044 use_sandbox = was_set_insecurely((char_u *)"rulerformat", 0);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00006045# endif
6046 }
6047 else
6048 {
6049 if (*wp->w_p_stl != NUL)
6050 p = wp->w_p_stl;
6051 else
6052 p = p_stl;
6053# ifdef FEAT_EVAL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006054 use_sandbox = was_set_insecurely((char_u *)"statusline",
6055 *wp->w_p_stl == NUL ? 0 : OPT_LOCAL);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00006056# endif
6057 }
6058
6059#ifdef FEAT_VERTSPLIT
6060 col += W_WINCOL(wp);
6061#endif
6062 }
6063
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 if (maxwidth <= 0)
6065 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00006067 width = build_stl_str_hl(wp == NULL ? curwin : wp,
6068 buf, sizeof(buf),
6069 p, use_sandbox,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006070 fillchar, maxwidth, hltab, tabtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006071 len = (int)STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072
6073 while (width < maxwidth && len < sizeof(buf) - 1)
6074 {
6075#ifdef FEAT_MBYTE
6076 len += (*mb_char2bytes)(fillchar, buf + len);
6077#else
6078 buf[len++] = fillchar;
6079#endif
6080 ++width;
6081 }
6082 buf[len] = NUL;
6083
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006084 /*
6085 * Draw each snippet with the specified highlighting.
6086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 curattr = attr;
6088 p = buf;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006089 for (n = 0; hltab[n].start != NULL; n++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006091 len = (int)(hltab[n].start - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092 screen_puts_len(p, len, row, col, curattr);
6093 col += vim_strnsize(p, len);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006094 p = hltab[n].start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006096 if (hltab[n].userhl == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097 curattr = attr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006098 else if (hltab[n].userhl < 0)
6099 curattr = syn_id2attr(-hltab[n].userhl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100#ifdef FEAT_WINDOWS
Bram Moolenaar238a5642006-02-21 22:12:05 +00006101 else if (wp != NULL && wp != curwin && wp->w_status_height != 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006102 curattr = highlight_stlnc[hltab[n].userhl - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103#endif
6104 else
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006105 curattr = highlight_user[hltab[n].userhl - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006106 }
6107 screen_puts(p, row, col, curattr);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006108
6109 if (wp == NULL)
6110 {
6111 /* Fill the TabPageIdxs[] array for clicking in the tab pagesline. */
6112 col = 0;
6113 len = 0;
6114 p = buf;
6115 fillchar = 0;
6116 for (n = 0; tabtab[n].start != NULL; n++)
6117 {
6118 len += vim_strnsize(p, (int)(tabtab[n].start - p));
6119 while (col < len)
6120 TabPageIdxs[col++] = fillchar;
6121 p = tabtab[n].start;
6122 fillchar = tabtab[n].userhl;
6123 }
6124 while (col < Columns)
6125 TabPageIdxs[col++] = fillchar;
6126 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127}
6128
6129#endif /* FEAT_STL_OPT */
6130
6131/*
6132 * Output a single character directly to the screen and update ScreenLines.
6133 */
6134 void
6135screen_putchar(c, row, col, attr)
6136 int c;
6137 int row, col;
6138 int attr;
6139{
6140#ifdef FEAT_MBYTE
6141 char_u buf[MB_MAXBYTES + 1];
6142
6143 buf[(*mb_char2bytes)(c, buf)] = NUL;
6144#else
6145 char_u buf[2];
6146
6147 buf[0] = c;
6148 buf[1] = NUL;
6149#endif
6150 screen_puts(buf, row, col, attr);
6151}
6152
6153/*
6154 * Get a single character directly from ScreenLines into "bytes[]".
6155 * Also return its attribute in *attrp;
6156 */
6157 void
6158screen_getbytes(row, col, bytes, attrp)
6159 int row, col;
6160 char_u *bytes;
6161 int *attrp;
6162{
6163 unsigned off;
6164
6165 /* safety check */
6166 if (ScreenLines != NULL && row < screen_Rows && col < screen_Columns)
6167 {
6168 off = LineOffset[row] + col;
6169 *attrp = ScreenAttrs[off];
6170 bytes[0] = ScreenLines[off];
6171 bytes[1] = NUL;
6172
6173#ifdef FEAT_MBYTE
6174 if (enc_utf8 && ScreenLinesUC[off] != 0)
6175 bytes[utfc_char2bytes(off, bytes)] = NUL;
6176 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
6177 {
6178 bytes[0] = ScreenLines[off];
6179 bytes[1] = ScreenLines2[off];
6180 bytes[2] = NUL;
6181 }
6182 else if (enc_dbcs && MB_BYTE2LEN(bytes[0]) > 1)
6183 {
6184 bytes[1] = ScreenLines[off + 1];
6185 bytes[2] = NUL;
6186 }
6187#endif
6188 }
6189}
6190
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006191#ifdef FEAT_MBYTE
6192static int screen_comp_differs __ARGS((int, int*));
6193
6194/*
6195 * Return TRUE if composing characters for screen posn "off" differs from
6196 * composing characters in "u8cc".
6197 */
6198 static int
6199screen_comp_differs(off, u8cc)
6200 int off;
6201 int *u8cc;
6202{
6203 int i;
6204
6205 for (i = 0; i < Screen_mco; ++i)
6206 {
6207 if (ScreenLinesC[i][off] != (u8char_T)u8cc[i])
6208 return TRUE;
6209 if (u8cc[i] == 0)
6210 break;
6211 }
6212 return FALSE;
6213}
6214#endif
6215
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216/*
6217 * Put string '*text' on the screen at position 'row' and 'col', with
6218 * attributes 'attr', and update ScreenLines[] and ScreenAttrs[].
6219 * Note: only outputs within one row, message is truncated at screen boundary!
6220 * Note: if ScreenLines[], row and/or col is invalid, nothing is done.
6221 */
6222 void
6223screen_puts(text, row, col, attr)
6224 char_u *text;
6225 int row;
6226 int col;
6227 int attr;
6228{
6229 screen_puts_len(text, -1, row, col, attr);
6230}
6231
6232/*
6233 * Like screen_puts(), but output "text[len]". When "len" is -1 output up to
6234 * a NUL.
6235 */
6236 void
6237screen_puts_len(text, len, row, col, attr)
6238 char_u *text;
6239 int len;
6240 int row;
6241 int col;
6242 int attr;
6243{
6244 unsigned off;
6245 char_u *ptr = text;
6246 int c;
6247#ifdef FEAT_MBYTE
Bram Moolenaar367329b2007-08-30 11:53:22 +00006248 unsigned max_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 int mbyte_blen = 1;
6250 int mbyte_cells = 1;
6251 int u8c = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006252 int u8cc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 int clear_next_cell = FALSE;
6254# ifdef FEAT_ARABIC
6255 int prev_c = 0; /* previous Arabic character */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006256 int pc, nc, nc1;
6257 int pcc[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258# endif
6259#endif
6260
6261 if (ScreenLines == NULL || row >= screen_Rows) /* safety check */
6262 return;
6263
Bram Moolenaarc236c162008-07-13 17:41:49 +00006264#ifdef FEAT_MBYTE
6265 /* When drawing over the right halve of a double-wide char clear out the
6266 * left halve. Only needed in a terminal. */
6267 if (has_mbyte
6268# ifdef FEAT_GUI
6269 && !gui.in_use
6270# endif
6271 && mb_fix_col(col, row) != col)
Bram Moolenaard91ffe92008-07-14 17:51:11 +00006272 screen_puts_len((char_u *)" ", 1, row, col - 1, 0);
Bram Moolenaarc236c162008-07-13 17:41:49 +00006273#endif
6274
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275 off = LineOffset[row] + col;
Bram Moolenaar367329b2007-08-30 11:53:22 +00006276#ifdef FEAT_MBYTE
6277 max_off = LineOffset[row] + screen_Columns;
6278#endif
Bram Moolenaara064ac82007-08-05 18:10:54 +00006279 while (col < screen_Columns
6280 && (len < 0 || (int)(ptr - text) < len)
6281 && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 {
6283 c = *ptr;
6284#ifdef FEAT_MBYTE
6285 /* check if this is the first byte of a multibyte */
6286 if (has_mbyte)
6287 {
6288 if (enc_utf8 && len > 0)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006289 mbyte_blen = utfc_ptr2len_len(ptr, (int)((text + len) - ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006291 mbyte_blen = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 if (enc_dbcs == DBCS_JPNU && c == 0x8e)
6293 mbyte_cells = 1;
6294 else if (enc_dbcs != 0)
6295 mbyte_cells = mbyte_blen;
6296 else /* enc_utf8 */
6297 {
6298 if (len >= 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006299 u8c = utfc_ptr2char_len(ptr, u8cc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300 (int)((text + len) - ptr));
6301 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006302 u8c = utfc_ptr2char(ptr, u8cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 mbyte_cells = utf_char2cells(u8c);
Bram Moolenaar11936362007-09-17 20:39:42 +00006304# ifdef UNICODE16
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 /* Non-BMP character: display as ? or fullwidth ?. */
6306 if (u8c >= 0x10000)
6307 {
6308 u8c = (mbyte_cells == 2) ? 0xff1f : (int)'?';
6309 if (attr == 0)
6310 attr = hl_attr(HLF_8);
6311 }
Bram Moolenaar11936362007-09-17 20:39:42 +00006312# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313# ifdef FEAT_ARABIC
6314 if (p_arshape && !p_tbidi && ARABIC_CHAR(u8c))
6315 {
6316 /* Do Arabic shaping. */
6317 if (len >= 0 && (int)(ptr - text) + mbyte_blen >= len)
6318 {
6319 /* Past end of string to be displayed. */
6320 nc = NUL;
6321 nc1 = NUL;
6322 }
6323 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006324 {
6325 nc = utfc_ptr2char(ptr + mbyte_blen, pcc);
6326 nc1 = pcc[0];
6327 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328 pc = prev_c;
6329 prev_c = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006330 u8c = arabic_shape(u8c, &c, &u8cc[0], nc, nc1, pc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 }
6332 else
6333 prev_c = u8c;
6334# endif
6335 }
6336 }
6337#endif
6338
6339 if (ScreenLines[off] != c
6340#ifdef FEAT_MBYTE
6341 || (mbyte_cells == 2
6342 && ScreenLines[off + 1] != (enc_dbcs ? ptr[1] : 0))
6343 || (enc_dbcs == DBCS_JPNU
6344 && c == 0x8e
6345 && ScreenLines2[off] != ptr[1])
6346 || (enc_utf8
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006347 && (ScreenLinesUC[off] != (u8char_T)u8c
6348 || screen_comp_differs(off, u8cc)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349#endif
6350 || ScreenAttrs[off] != attr
6351 || exmode_active
6352 )
6353 {
6354#if defined(FEAT_GUI) || defined(UNIX)
6355 /* The bold trick makes a single row of pixels appear in the next
6356 * character. When a bold character is removed, the next
6357 * character should be redrawn too. This happens for our own GUI
6358 * and for some xterms.
6359 * Force the redraw by setting the attribute to a different value
6360 * than "attr", the contents of ScreenLines[] may be needed by
6361 * mb_off2cells() further on.
6362 * Don't do this for the last drawn character, because the next
6363 * character may not be redrawn. */
6364 if (
6365# ifdef FEAT_GUI
6366 gui.in_use
6367# endif
6368# if defined(FEAT_GUI) && defined(UNIX)
6369 ||
6370# endif
6371# ifdef UNIX
6372 term_is_xterm
6373# endif
6374 )
6375 {
6376 int n;
6377
6378 n = ScreenAttrs[off];
6379# ifdef FEAT_MBYTE
6380 if (col + mbyte_cells < screen_Columns
6381 && (n > HL_ALL || (n & HL_BOLD))
6382 && (len < 0 ? ptr[mbyte_blen] != NUL
6383 : ptr + mbyte_blen < text + len))
6384 ScreenAttrs[off + mbyte_cells] = attr + 1;
6385# else
6386 if (col + 1 < screen_Columns
6387 && (n > HL_ALL || (n & HL_BOLD))
6388 && (len < 0 ? ptr[1] != NUL : ptr + 1 < text + len))
6389 ScreenLines[off + 1] = 0;
6390# endif
6391 }
6392#endif
6393#ifdef FEAT_MBYTE
6394 /* When at the end of the text and overwriting a two-cell
6395 * character with a one-cell character, need to clear the next
6396 * cell. Also when overwriting the left halve of a two-cell char
6397 * with the right halve of a two-cell char. Do this only once
6398 * (mb_off2cells() may return 2 on the right halve). */
6399 if (clear_next_cell)
6400 clear_next_cell = FALSE;
6401 else if (has_mbyte
6402 && (len < 0 ? ptr[mbyte_blen] == NUL
6403 : ptr + mbyte_blen >= text + len)
Bram Moolenaar367329b2007-08-30 11:53:22 +00006404 && ((mbyte_cells == 1 && (*mb_off2cells)(off, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405 || (mbyte_cells == 2
Bram Moolenaar367329b2007-08-30 11:53:22 +00006406 && (*mb_off2cells)(off, max_off) == 1
6407 && (*mb_off2cells)(off + 1, max_off) > 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 clear_next_cell = TRUE;
6409
6410 /* Make sure we never leave a second byte of a double-byte behind,
6411 * it confuses mb_off2cells(). */
6412 if (enc_dbcs
Bram Moolenaar367329b2007-08-30 11:53:22 +00006413 && ((mbyte_cells == 1 && (*mb_off2cells)(off, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414 || (mbyte_cells == 2
Bram Moolenaar367329b2007-08-30 11:53:22 +00006415 && (*mb_off2cells)(off, max_off) == 1
6416 && (*mb_off2cells)(off + 1, max_off) > 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 ScreenLines[off + mbyte_blen] = 0;
6418#endif
6419 ScreenLines[off] = c;
6420 ScreenAttrs[off] = attr;
6421#ifdef FEAT_MBYTE
6422 if (enc_utf8)
6423 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006424 if (c < 0x80 && u8cc[0] == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425 ScreenLinesUC[off] = 0;
6426 else
6427 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006428 int i;
6429
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 ScreenLinesUC[off] = u8c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006431 for (i = 0; i < Screen_mco; ++i)
6432 {
6433 ScreenLinesC[i][off] = u8cc[i];
6434 if (u8cc[i] == 0)
6435 break;
6436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437 }
6438 if (mbyte_cells == 2)
6439 {
6440 ScreenLines[off + 1] = 0;
6441 ScreenAttrs[off + 1] = attr;
6442 }
6443 screen_char(off, row, col);
6444 }
6445 else if (mbyte_cells == 2)
6446 {
6447 ScreenLines[off + 1] = ptr[1];
6448 ScreenAttrs[off + 1] = attr;
6449 screen_char_2(off, row, col);
6450 }
6451 else if (enc_dbcs == DBCS_JPNU && c == 0x8e)
6452 {
6453 ScreenLines2[off] = ptr[1];
6454 screen_char(off, row, col);
6455 }
6456 else
6457#endif
6458 screen_char(off, row, col);
6459 }
6460#ifdef FEAT_MBYTE
6461 if (has_mbyte)
6462 {
6463 off += mbyte_cells;
6464 col += mbyte_cells;
6465 ptr += mbyte_blen;
6466 if (clear_next_cell)
6467 ptr = (char_u *)" ";
6468 }
6469 else
6470#endif
6471 {
6472 ++off;
6473 ++col;
6474 ++ptr;
6475 }
6476 }
6477}
6478
6479#ifdef FEAT_SEARCH_EXTRA
6480/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006481 * Prepare for 'hlsearch' highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 */
6483 static void
6484start_search_hl()
6485{
6486 if (p_hls && !no_hlsearch)
6487 {
6488 last_pat_prog(&search_hl.rm);
6489 search_hl.attr = hl_attr(HLF_L);
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006490# ifdef FEAT_RELTIME
6491 /* Set the time limit to 'redrawtime'. */
6492 profile_setlimit(p_rdt, &search_hl.tm);
6493# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 }
6495}
6496
6497/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006498 * Clean up for 'hlsearch' highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 */
6500 static void
6501end_search_hl()
6502{
6503 if (search_hl.rm.regprog != NULL)
6504 {
6505 vim_free(search_hl.rm.regprog);
6506 search_hl.rm.regprog = NULL;
6507 }
6508}
6509
6510/*
6511 * Advance to the match in window "wp" line "lnum" or past it.
6512 */
6513 static void
6514prepare_search_hl(wp, lnum)
6515 win_T *wp;
6516 linenr_T lnum;
6517{
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006518 matchitem_T *cur; /* points to the match list */
6519 match_T *shl; /* points to search_hl or a match */
6520 int shl_flag; /* flag to indicate whether search_hl
6521 has been processed or not */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 int n;
6523
6524 /*
6525 * When using a multi-line pattern, start searching at the top
6526 * of the window or just after a closed fold.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006527 * Do this both for search_hl and the match list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006529 cur = wp->w_match_head;
6530 shl_flag = FALSE;
6531 while (cur != NULL || shl_flag == FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006533 if (shl_flag == FALSE)
6534 {
6535 shl = &search_hl;
6536 shl_flag = TRUE;
6537 }
6538 else
6539 shl = &cur->hl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540 if (shl->rm.regprog != NULL
6541 && shl->lnum == 0
6542 && re_multiline(shl->rm.regprog))
6543 {
6544 if (shl->first_lnum == 0)
6545 {
6546# ifdef FEAT_FOLDING
6547 for (shl->first_lnum = lnum;
6548 shl->first_lnum > wp->w_topline; --shl->first_lnum)
6549 if (hasFoldingWin(wp, shl->first_lnum - 1,
6550 NULL, NULL, TRUE, NULL))
6551 break;
6552# else
6553 shl->first_lnum = wp->w_topline;
6554# endif
6555 }
6556 n = 0;
6557 while (shl->first_lnum < lnum && shl->rm.regprog != NULL)
6558 {
6559 next_search_hl(wp, shl, shl->first_lnum, (colnr_T)n);
6560 if (shl->lnum != 0)
6561 {
6562 shl->first_lnum = shl->lnum
6563 + shl->rm.endpos[0].lnum
6564 - shl->rm.startpos[0].lnum;
6565 n = shl->rm.endpos[0].col;
6566 }
6567 else
6568 {
6569 ++shl->first_lnum;
6570 n = 0;
6571 }
6572 }
6573 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006574 if (shl != &search_hl && cur != NULL)
6575 cur = cur->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 }
6577}
6578
6579/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006580 * Search for a next 'hlsearch' or match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581 * Uses shl->buf.
6582 * Sets shl->lnum and shl->rm contents.
6583 * Note: Assumes a previous match is always before "lnum", unless
6584 * shl->lnum is zero.
6585 * Careful: Any pointers for buffer lines will become invalid.
6586 */
6587 static void
6588next_search_hl(win, shl, lnum, mincol)
6589 win_T *win;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006590 match_T *shl; /* points to search_hl or a match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 linenr_T lnum;
6592 colnr_T mincol; /* minimal column for a match */
6593{
6594 linenr_T l;
6595 colnr_T matchcol;
6596 long nmatched;
6597
6598 if (shl->lnum != 0)
6599 {
6600 /* Check for three situations:
6601 * 1. If the "lnum" is below a previous match, start a new search.
6602 * 2. If the previous match includes "mincol", use it.
6603 * 3. Continue after the previous match.
6604 */
6605 l = shl->lnum + shl->rm.endpos[0].lnum - shl->rm.startpos[0].lnum;
6606 if (lnum > l)
6607 shl->lnum = 0;
6608 else if (lnum < l || shl->rm.endpos[0].col > mincol)
6609 return;
6610 }
6611
6612 /*
6613 * Repeat searching for a match until one is found that includes "mincol"
6614 * or none is found in this line.
6615 */
6616 called_emsg = FALSE;
6617 for (;;)
6618 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006619#ifdef FEAT_RELTIME
6620 /* Stop searching after passing the time limit. */
6621 if (profile_passed_limit(&(shl->tm)))
6622 {
6623 shl->lnum = 0; /* no match found in time */
6624 break;
6625 }
6626#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627 /* Three situations:
6628 * 1. No useful previous match: search from start of line.
6629 * 2. Not Vi compatible or empty match: continue at next character.
6630 * Break the loop if this is beyond the end of the line.
6631 * 3. Vi compatible searching: continue at end of previous match.
6632 */
6633 if (shl->lnum == 0)
6634 matchcol = 0;
6635 else if (vim_strchr(p_cpo, CPO_SEARCH) == NULL
6636 || (shl->rm.endpos[0].lnum == 0
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006637 && shl->rm.endpos[0].col <= shl->rm.startpos[0].col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006639 char_u *ml;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006640
6641 matchcol = shl->rm.startpos[0].col;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006642 ml = ml_get_buf(shl->buf, lnum, FALSE) + matchcol;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006643 if (*ml == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006645 ++matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 shl->lnum = 0;
6647 break;
6648 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006649#ifdef FEAT_MBYTE
6650 if (has_mbyte)
6651 matchcol += mb_ptr2len(ml);
6652 else
6653#endif
6654 ++matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655 }
6656 else
6657 matchcol = shl->rm.endpos[0].col;
6658
6659 shl->lnum = lnum;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006660 nmatched = vim_regexec_multi(&shl->rm, win, shl->buf, lnum, matchcol,
6661#ifdef FEAT_RELTIME
6662 &(shl->tm)
6663#else
6664 NULL
6665#endif
6666 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 if (called_emsg)
6668 {
6669 /* Error while handling regexp: stop using this regexp. */
Bram Moolenaar0ddf0a72007-05-01 20:04:53 +00006670 if (shl == &search_hl)
6671 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006672 /* don't free regprog in the match list, it's a copy */
Bram Moolenaar0ddf0a72007-05-01 20:04:53 +00006673 vim_free(shl->rm.regprog);
6674 no_hlsearch = TRUE;
6675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676 shl->rm.regprog = NULL;
Bram Moolenaar0ddf0a72007-05-01 20:04:53 +00006677 shl->lnum = 0;
6678 got_int = FALSE; /* avoid the "Type :quit to exit Vim" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006679 break;
6680 }
6681 if (nmatched == 0)
6682 {
6683 shl->lnum = 0; /* no match found */
6684 break;
6685 }
6686 if (shl->rm.startpos[0].lnum > 0
6687 || shl->rm.startpos[0].col >= mincol
6688 || nmatched > 1
6689 || shl->rm.endpos[0].col > mincol)
6690 {
6691 shl->lnum += shl->rm.startpos[0].lnum;
6692 break; /* useful match found */
6693 }
6694 }
6695}
6696#endif
6697
6698 static void
6699screen_start_highlight(attr)
6700 int attr;
6701{
6702 attrentry_T *aep = NULL;
6703
6704 screen_attr = attr;
6705 if (full_screen
6706#ifdef WIN3264
6707 && termcap_active
6708#endif
6709 )
6710 {
6711#ifdef FEAT_GUI
6712 if (gui.in_use)
6713 {
6714 char buf[20];
6715
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006716 /* The GUI handles this internally. */
6717 sprintf(buf, IF_EB("\033|%dh", ESC_STR "|%dh"), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 OUT_STR(buf);
6719 }
6720 else
6721#endif
6722 {
6723 if (attr > HL_ALL) /* special HL attr. */
6724 {
6725 if (t_colors > 1)
6726 aep = syn_cterm_attr2entry(attr);
6727 else
6728 aep = syn_term_attr2entry(attr);
6729 if (aep == NULL) /* did ":syntax clear" */
6730 attr = 0;
6731 else
6732 attr = aep->ae_attr;
6733 }
6734 if ((attr & HL_BOLD) && T_MD != NULL) /* bold */
6735 out_str(T_MD);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006736 else if (aep != NULL && t_colors > 1 && aep->ae_u.cterm.fg_color
6737 && cterm_normal_fg_bold)
6738 /* If the Normal FG color has BOLD attribute and the new HL
6739 * has a FG color defined, clear BOLD. */
6740 out_str(T_ME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741 if ((attr & HL_STANDOUT) && T_SO != NULL) /* standout */
6742 out_str(T_SO);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006743 if ((attr & (HL_UNDERLINE | HL_UNDERCURL)) && T_US != NULL)
6744 /* underline or undercurl */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745 out_str(T_US);
6746 if ((attr & HL_ITALIC) && T_CZH != NULL) /* italic */
6747 out_str(T_CZH);
6748 if ((attr & HL_INVERSE) && T_MR != NULL) /* inverse (reverse) */
6749 out_str(T_MR);
6750
6751 /*
6752 * Output the color or start string after bold etc., in case the
6753 * bold etc. override the color setting.
6754 */
6755 if (aep != NULL)
6756 {
6757 if (t_colors > 1)
6758 {
6759 if (aep->ae_u.cterm.fg_color)
6760 term_fg_color(aep->ae_u.cterm.fg_color - 1);
6761 if (aep->ae_u.cterm.bg_color)
6762 term_bg_color(aep->ae_u.cterm.bg_color - 1);
6763 }
6764 else
6765 {
6766 if (aep->ae_u.term.start != NULL)
6767 out_str(aep->ae_u.term.start);
6768 }
6769 }
6770 }
6771 }
6772}
6773
6774 void
6775screen_stop_highlight()
6776{
6777 int do_ME = FALSE; /* output T_ME code */
6778
6779 if (screen_attr != 0
6780#ifdef WIN3264
6781 && termcap_active
6782#endif
6783 )
6784 {
6785#ifdef FEAT_GUI
6786 if (gui.in_use)
6787 {
6788 char buf[20];
6789
6790 /* use internal GUI code */
6791 sprintf(buf, IF_EB("\033|%dH", ESC_STR "|%dH"), screen_attr);
6792 OUT_STR(buf);
6793 }
6794 else
6795#endif
6796 {
6797 if (screen_attr > HL_ALL) /* special HL attr. */
6798 {
6799 attrentry_T *aep;
6800
6801 if (t_colors > 1)
6802 {
6803 /*
6804 * Assume that t_me restores the original colors!
6805 */
6806 aep = syn_cterm_attr2entry(screen_attr);
6807 if (aep != NULL && (aep->ae_u.cterm.fg_color
6808 || aep->ae_u.cterm.bg_color))
6809 do_ME = TRUE;
6810 }
6811 else
6812 {
6813 aep = syn_term_attr2entry(screen_attr);
6814 if (aep != NULL && aep->ae_u.term.stop != NULL)
6815 {
6816 if (STRCMP(aep->ae_u.term.stop, T_ME) == 0)
6817 do_ME = TRUE;
6818 else
6819 out_str(aep->ae_u.term.stop);
6820 }
6821 }
6822 if (aep == NULL) /* did ":syntax clear" */
6823 screen_attr = 0;
6824 else
6825 screen_attr = aep->ae_attr;
6826 }
6827
6828 /*
6829 * Often all ending-codes are equal to T_ME. Avoid outputting the
6830 * same sequence several times.
6831 */
6832 if (screen_attr & HL_STANDOUT)
6833 {
6834 if (STRCMP(T_SE, T_ME) == 0)
6835 do_ME = TRUE;
6836 else
6837 out_str(T_SE);
6838 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00006839 if (screen_attr & (HL_UNDERLINE | HL_UNDERCURL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840 {
6841 if (STRCMP(T_UE, T_ME) == 0)
6842 do_ME = TRUE;
6843 else
6844 out_str(T_UE);
6845 }
6846 if (screen_attr & HL_ITALIC)
6847 {
6848 if (STRCMP(T_CZR, T_ME) == 0)
6849 do_ME = TRUE;
6850 else
6851 out_str(T_CZR);
6852 }
6853 if (do_ME || (screen_attr & (HL_BOLD | HL_INVERSE)))
6854 out_str(T_ME);
6855
6856 if (t_colors > 1)
6857 {
6858 /* set Normal cterm colors */
6859 if (cterm_normal_fg_color != 0)
6860 term_fg_color(cterm_normal_fg_color - 1);
6861 if (cterm_normal_bg_color != 0)
6862 term_bg_color(cterm_normal_bg_color - 1);
6863 if (cterm_normal_fg_bold)
6864 out_str(T_MD);
6865 }
6866 }
6867 }
6868 screen_attr = 0;
6869}
6870
6871/*
6872 * Reset the colors for a cterm. Used when leaving Vim.
6873 * The machine specific code may override this again.
6874 */
6875 void
6876reset_cterm_colors()
6877{
6878 if (t_colors > 1)
6879 {
6880 /* set Normal cterm colors */
6881 if (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0)
6882 {
6883 out_str(T_OP);
6884 screen_attr = -1;
6885 }
6886 if (cterm_normal_fg_bold)
6887 {
6888 out_str(T_ME);
6889 screen_attr = -1;
6890 }
6891 }
6892}
6893
6894/*
6895 * Put character ScreenLines["off"] on the screen at position "row" and "col",
6896 * using the attributes from ScreenAttrs["off"].
6897 */
6898 static void
6899screen_char(off, row, col)
6900 unsigned off;
6901 int row;
6902 int col;
6903{
6904 int attr;
6905
6906 /* Check for illegal values, just in case (could happen just after
6907 * resizing). */
6908 if (row >= screen_Rows || col >= screen_Columns)
6909 return;
6910
6911 /* Outputting the last character on the screen may scrollup the screen.
6912 * Don't to it! Mark the character invalid (update it when scrolled up) */
6913 if (row == screen_Rows - 1 && col == screen_Columns - 1
6914#ifdef FEAT_RIGHTLEFT
6915 /* account for first command-line character in rightleft mode */
6916 && !cmdmsg_rl
6917#endif
6918 )
6919 {
6920 ScreenAttrs[off] = (sattr_T)-1;
6921 return;
6922 }
6923
6924 /*
6925 * Stop highlighting first, so it's easier to move the cursor.
6926 */
6927#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT)
6928 if (screen_char_attr != 0)
6929 attr = screen_char_attr;
6930 else
6931#endif
6932 attr = ScreenAttrs[off];
6933 if (screen_attr != attr)
6934 screen_stop_highlight();
6935
6936 windgoto(row, col);
6937
6938 if (screen_attr != attr)
6939 screen_start_highlight(attr);
6940
6941#ifdef FEAT_MBYTE
6942 if (enc_utf8 && ScreenLinesUC[off] != 0)
6943 {
6944 char_u buf[MB_MAXBYTES + 1];
6945
6946 /* Convert UTF-8 character to bytes and write it. */
6947
6948 buf[utfc_char2bytes(off, buf)] = NUL;
6949
6950 out_str(buf);
6951 if (utf_char2cells(ScreenLinesUC[off]) > 1)
6952 ++screen_cur_col;
6953 }
6954 else
6955#endif
6956 {
6957#ifdef FEAT_MBYTE
6958 out_flush_check();
6959#endif
6960 out_char(ScreenLines[off]);
6961#ifdef FEAT_MBYTE
6962 /* double-byte character in single-width cell */
6963 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
6964 out_char(ScreenLines2[off]);
6965#endif
6966 }
6967
6968 screen_cur_col++;
6969}
6970
6971#ifdef FEAT_MBYTE
6972
6973/*
6974 * Used for enc_dbcs only: Put one double-wide character at ScreenLines["off"]
6975 * on the screen at position 'row' and 'col'.
6976 * The attributes of the first byte is used for all. This is required to
6977 * output the two bytes of a double-byte character with nothing in between.
6978 */
6979 static void
6980screen_char_2(off, row, col)
6981 unsigned off;
6982 int row;
6983 int col;
6984{
6985 /* Check for illegal values (could be wrong when screen was resized). */
6986 if (off + 1 >= (unsigned)(screen_Rows * screen_Columns))
6987 return;
6988
6989 /* Outputting the last character on the screen may scrollup the screen.
6990 * Don't to it! Mark the character invalid (update it when scrolled up) */
6991 if (row == screen_Rows - 1 && col >= screen_Columns - 2)
6992 {
6993 ScreenAttrs[off] = (sattr_T)-1;
6994 return;
6995 }
6996
6997 /* Output the first byte normally (positions the cursor), then write the
6998 * second byte directly. */
6999 screen_char(off, row, col);
7000 out_char(ScreenLines[off + 1]);
7001 ++screen_cur_col;
7002}
7003#endif
7004
7005#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT) || defined(PROTO)
7006/*
7007 * Draw a rectangle of the screen, inverted when "invert" is TRUE.
7008 * This uses the contents of ScreenLines[] and doesn't change it.
7009 */
7010 void
7011screen_draw_rectangle(row, col, height, width, invert)
7012 int row;
7013 int col;
7014 int height;
7015 int width;
7016 int invert;
7017{
7018 int r, c;
7019 int off;
Bram Moolenaar367329b2007-08-30 11:53:22 +00007020#ifdef FEAT_MBYTE
7021 int max_off;
7022#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007024 /* Can't use ScreenLines unless initialized */
7025 if (ScreenLines == NULL)
7026 return;
7027
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 if (invert)
7029 screen_char_attr = HL_INVERSE;
7030 for (r = row; r < row + height; ++r)
7031 {
7032 off = LineOffset[r];
Bram Moolenaar367329b2007-08-30 11:53:22 +00007033#ifdef FEAT_MBYTE
7034 max_off = off + screen_Columns;
7035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 for (c = col; c < col + width; ++c)
7037 {
7038#ifdef FEAT_MBYTE
Bram Moolenaar367329b2007-08-30 11:53:22 +00007039 if (enc_dbcs != 0 && dbcs_off2cells(off + c, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 {
7041 screen_char_2(off + c, r, c);
7042 ++c;
7043 }
7044 else
7045#endif
7046 {
7047 screen_char(off + c, r, c);
7048#ifdef FEAT_MBYTE
Bram Moolenaar367329b2007-08-30 11:53:22 +00007049 if (utf_off2cells(off + c, max_off) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 ++c;
7051#endif
7052 }
7053 }
7054 }
7055 screen_char_attr = 0;
7056}
7057#endif
7058
7059#ifdef FEAT_VERTSPLIT
7060/*
7061 * Redraw the characters for a vertically split window.
7062 */
7063 static void
7064redraw_block(row, end, wp)
7065 int row;
7066 int end;
7067 win_T *wp;
7068{
7069 int col;
7070 int width;
7071
7072# ifdef FEAT_CLIPBOARD
7073 clip_may_clear_selection(row, end - 1);
7074# endif
7075
7076 if (wp == NULL)
7077 {
7078 col = 0;
7079 width = Columns;
7080 }
7081 else
7082 {
7083 col = wp->w_wincol;
7084 width = wp->w_width;
7085 }
7086 screen_draw_rectangle(row, col, end - row, width, FALSE);
7087}
7088#endif
7089
7090/*
7091 * Fill the screen from 'start_row' to 'end_row', from 'start_col' to 'end_col'
7092 * with character 'c1' in first column followed by 'c2' in the other columns.
7093 * Use attributes 'attr'.
7094 */
7095 void
7096screen_fill(start_row, end_row, start_col, end_col, c1, c2, attr)
7097 int start_row, end_row;
7098 int start_col, end_col;
7099 int c1, c2;
7100 int attr;
7101{
7102 int row;
7103 int col;
7104 int off;
7105 int end_off;
7106 int did_delete;
7107 int c;
7108 int norm_term;
7109#if defined(FEAT_GUI) || defined(UNIX)
7110 int force_next = FALSE;
7111#endif
7112
7113 if (end_row > screen_Rows) /* safety check */
7114 end_row = screen_Rows;
7115 if (end_col > screen_Columns) /* safety check */
7116 end_col = screen_Columns;
7117 if (ScreenLines == NULL
7118 || start_row >= end_row
7119 || start_col >= end_col) /* nothing to do */
7120 return;
7121
7122 /* it's a "normal" terminal when not in a GUI or cterm */
7123 norm_term = (
7124#ifdef FEAT_GUI
7125 !gui.in_use &&
7126#endif
7127 t_colors <= 1);
7128 for (row = start_row; row < end_row; ++row)
7129 {
Bram Moolenaarc236c162008-07-13 17:41:49 +00007130#ifdef FEAT_MBYTE
7131 if (has_mbyte
7132# ifdef FEAT_GUI
7133 && !gui.in_use
7134# endif
7135 )
7136 {
7137 /* When drawing over the right halve of a double-wide char clear
7138 * out the left halve. When drawing over the left halve of a
7139 * double wide-char clear out the right halve. Only needed in a
7140 * terminal. */
7141 if (mb_fix_col(start_col, row) != start_col)
Bram Moolenaard91ffe92008-07-14 17:51:11 +00007142 screen_puts_len((char_u *)" ", 1, row, start_col - 1, 0);
Bram Moolenaarc236c162008-07-13 17:41:49 +00007143 if (mb_fix_col(end_col, row) != end_col)
Bram Moolenaard91ffe92008-07-14 17:51:11 +00007144 screen_puts_len((char_u *)" ", 1, row, end_col, 0);
Bram Moolenaarc236c162008-07-13 17:41:49 +00007145 }
7146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147 /*
7148 * Try to use delete-line termcap code, when no attributes or in a
7149 * "normal" terminal, where a bold/italic space is just a
7150 * space.
7151 */
7152 did_delete = FALSE;
7153 if (c2 == ' '
7154 && end_col == Columns
7155 && can_clear(T_CE)
7156 && (attr == 0
7157 || (norm_term
7158 && attr <= HL_ALL
7159 && ((attr & ~(HL_BOLD | HL_ITALIC)) == 0))))
7160 {
7161 /*
7162 * check if we really need to clear something
7163 */
7164 col = start_col;
7165 if (c1 != ' ') /* don't clear first char */
7166 ++col;
7167
7168 off = LineOffset[row] + col;
7169 end_off = LineOffset[row] + end_col;
7170
7171 /* skip blanks (used often, keep it fast!) */
7172#ifdef FEAT_MBYTE
7173 if (enc_utf8)
7174 while (off < end_off && ScreenLines[off] == ' '
7175 && ScreenAttrs[off] == 0 && ScreenLinesUC[off] == 0)
7176 ++off;
7177 else
7178#endif
7179 while (off < end_off && ScreenLines[off] == ' '
7180 && ScreenAttrs[off] == 0)
7181 ++off;
7182 if (off < end_off) /* something to be cleared */
7183 {
7184 col = off - LineOffset[row];
7185 screen_stop_highlight();
7186 term_windgoto(row, col);/* clear rest of this screen line */
7187 out_str(T_CE);
7188 screen_start(); /* don't know where cursor is now */
7189 col = end_col - col;
7190 while (col--) /* clear chars in ScreenLines */
7191 {
7192 ScreenLines[off] = ' ';
7193#ifdef FEAT_MBYTE
7194 if (enc_utf8)
7195 ScreenLinesUC[off] = 0;
7196#endif
7197 ScreenAttrs[off] = 0;
7198 ++off;
7199 }
7200 }
7201 did_delete = TRUE; /* the chars are cleared now */
7202 }
7203
7204 off = LineOffset[row] + start_col;
7205 c = c1;
7206 for (col = start_col; col < end_col; ++col)
7207 {
7208 if (ScreenLines[off] != c
7209#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007210 || (enc_utf8 && (int)ScreenLinesUC[off]
7211 != (c >= 0x80 ? c : 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007212#endif
7213 || ScreenAttrs[off] != attr
7214#if defined(FEAT_GUI) || defined(UNIX)
7215 || force_next
7216#endif
7217 )
7218 {
7219#if defined(FEAT_GUI) || defined(UNIX)
7220 /* The bold trick may make a single row of pixels appear in
7221 * the next character. When a bold character is removed, the
7222 * next character should be redrawn too. This happens for our
7223 * own GUI and for some xterms. */
7224 if (
7225# ifdef FEAT_GUI
7226 gui.in_use
7227# endif
7228# if defined(FEAT_GUI) && defined(UNIX)
7229 ||
7230# endif
7231# ifdef UNIX
7232 term_is_xterm
7233# endif
7234 )
7235 {
7236 if (ScreenLines[off] != ' '
7237 && (ScreenAttrs[off] > HL_ALL
7238 || ScreenAttrs[off] & HL_BOLD))
7239 force_next = TRUE;
7240 else
7241 force_next = FALSE;
7242 }
7243#endif
7244 ScreenLines[off] = c;
7245#ifdef FEAT_MBYTE
7246 if (enc_utf8)
7247 {
7248 if (c >= 0x80)
7249 {
7250 ScreenLinesUC[off] = c;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007251 ScreenLinesC[0][off] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007252 }
7253 else
7254 ScreenLinesUC[off] = 0;
7255 }
7256#endif
7257 ScreenAttrs[off] = attr;
7258 if (!did_delete || c != ' ')
7259 screen_char(off, row, col);
7260 }
7261 ++off;
7262 if (col == start_col)
7263 {
7264 if (did_delete)
7265 break;
7266 c = c2;
7267 }
7268 }
7269 if (end_col == Columns)
7270 LineWraps[row] = FALSE;
7271 if (row == Rows - 1) /* overwritten the command line */
7272 {
7273 redraw_cmdline = TRUE;
7274 if (c1 == ' ' && c2 == ' ')
7275 clear_cmdline = FALSE; /* command line has been cleared */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00007276 if (start_col == 0)
7277 mode_displayed = FALSE; /* mode cleared or overwritten */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 }
7279 }
7280}
7281
7282/*
7283 * Check if there should be a delay. Used before clearing or redrawing the
7284 * screen or the command line.
7285 */
7286 void
7287check_for_delay(check_msg_scroll)
7288 int check_msg_scroll;
7289{
7290 if ((emsg_on_display || (check_msg_scroll && msg_scroll))
7291 && !did_wait_return
7292 && emsg_silent == 0)
7293 {
7294 out_flush();
7295 ui_delay(1000L, TRUE);
7296 emsg_on_display = FALSE;
7297 if (check_msg_scroll)
7298 msg_scroll = FALSE;
7299 }
7300}
7301
7302/*
7303 * screen_valid - allocate screen buffers if size changed
7304 * If "clear" is TRUE: clear screen if it has been resized.
7305 * Returns TRUE if there is a valid screen to write to.
7306 * Returns FALSE when starting up and screen not initialized yet.
7307 */
7308 int
7309screen_valid(clear)
7310 int clear;
7311{
7312 screenalloc(clear); /* allocate screen buffers if size changed */
7313 return (ScreenLines != NULL);
7314}
7315
7316/*
7317 * Resize the shell to Rows and Columns.
7318 * Allocate ScreenLines[] and associated items.
7319 *
7320 * There may be some time between setting Rows and Columns and (re)allocating
7321 * ScreenLines[]. This happens when starting up and when (manually) changing
7322 * the shell size. Always use screen_Rows and screen_Columns to access items
7323 * in ScreenLines[]. Use Rows and Columns for positioning text etc. where the
7324 * final size of the shell is needed.
7325 */
7326 void
7327screenalloc(clear)
7328 int clear;
7329{
7330 int new_row, old_row;
7331#ifdef FEAT_GUI
7332 int old_Rows;
7333#endif
7334 win_T *wp;
7335 int outofmem = FALSE;
7336 int len;
7337 schar_T *new_ScreenLines;
7338#ifdef FEAT_MBYTE
7339 u8char_T *new_ScreenLinesUC = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007340 u8char_T *new_ScreenLinesC[MAX_MCO];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 schar_T *new_ScreenLines2 = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007342 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343#endif
7344 sattr_T *new_ScreenAttrs;
7345 unsigned *new_LineOffset;
7346 char_u *new_LineWraps;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007347#ifdef FEAT_WINDOWS
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007348 short *new_TabPageIdxs;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007349 tabpage_T *tp;
7350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 static int entered = FALSE; /* avoid recursiveness */
Bram Moolenaar89d40322006-08-29 15:30:07 +00007352 static int done_outofmem_msg = FALSE; /* did outofmem message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353
7354 /*
7355 * Allocation of the screen buffers is done only when the size changes and
7356 * when Rows and Columns have been set and we have started doing full
7357 * screen stuff.
7358 */
7359 if ((ScreenLines != NULL
7360 && Rows == screen_Rows
7361 && Columns == screen_Columns
7362#ifdef FEAT_MBYTE
7363 && enc_utf8 == (ScreenLinesUC != NULL)
7364 && (enc_dbcs == DBCS_JPNU) == (ScreenLines2 != NULL)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007365 && p_mco == Screen_mco
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366#endif
7367 )
7368 || Rows == 0
7369 || Columns == 0
7370 || (!full_screen && ScreenLines == NULL))
7371 return;
7372
7373 /*
7374 * It's possible that we produce an out-of-memory message below, which
7375 * will cause this function to be called again. To break the loop, just
7376 * return here.
7377 */
7378 if (entered)
7379 return;
7380 entered = TRUE;
7381
Bram Moolenaara3f2ecd2006-07-11 21:01:01 +00007382 /*
7383 * Note that the window sizes are updated before reallocating the arrays,
7384 * thus we must not redraw here!
7385 */
7386 ++RedrawingDisabled;
7387
Bram Moolenaar071d4272004-06-13 20:20:40 +00007388 win_new_shellsize(); /* fit the windows in the new sized shell */
7389
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390 comp_col(); /* recompute columns for shown command and ruler */
7391
7392 /*
7393 * We're changing the size of the screen.
7394 * - Allocate new arrays for ScreenLines and ScreenAttrs.
7395 * - Move lines from the old arrays into the new arrays, clear extra
7396 * lines (unless the screen is going to be cleared).
7397 * - Free the old arrays.
7398 *
7399 * If anything fails, make ScreenLines NULL, so we don't do anything!
7400 * Continuing with the old ScreenLines may result in a crash, because the
7401 * size is wrong.
7402 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00007403 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404 win_free_lsize(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007405
7406 new_ScreenLines = (schar_T *)lalloc((long_u)(
7407 (Rows + 1) * Columns * sizeof(schar_T)), FALSE);
7408#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007409 vim_memset(new_ScreenLinesC, 0, sizeof(u8char_T) * MAX_MCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007410 if (enc_utf8)
7411 {
7412 new_ScreenLinesUC = (u8char_T *)lalloc((long_u)(
7413 (Rows + 1) * Columns * sizeof(u8char_T)), FALSE);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007414 for (i = 0; i < p_mco; ++i)
7415 new_ScreenLinesC[i] = (u8char_T *)lalloc((long_u)(
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416 (Rows + 1) * Columns * sizeof(u8char_T)), FALSE);
7417 }
7418 if (enc_dbcs == DBCS_JPNU)
7419 new_ScreenLines2 = (schar_T *)lalloc((long_u)(
7420 (Rows + 1) * Columns * sizeof(schar_T)), FALSE);
7421#endif
7422 new_ScreenAttrs = (sattr_T *)lalloc((long_u)(
7423 (Rows + 1) * Columns * sizeof(sattr_T)), FALSE);
7424 new_LineOffset = (unsigned *)lalloc((long_u)(
7425 Rows * sizeof(unsigned)), FALSE);
7426 new_LineWraps = (char_u *)lalloc((long_u)(Rows * sizeof(char_u)), FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007427#ifdef FEAT_WINDOWS
Bram Moolenaard1f56e62006-02-22 21:25:37 +00007428 new_TabPageIdxs = (short *)lalloc((long_u)(Columns * sizeof(short)), FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007431 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432 {
7433 if (win_alloc_lines(wp) == FAIL)
7434 {
7435 outofmem = TRUE;
7436#ifdef FEAT_WINDOWS
7437 break;
7438#endif
7439 }
7440 }
7441
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007442#ifdef FEAT_MBYTE
7443 for (i = 0; i < p_mco; ++i)
7444 if (new_ScreenLinesC[i] == NULL)
7445 break;
7446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007447 if (new_ScreenLines == NULL
7448#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007449 || (enc_utf8 && (new_ScreenLinesUC == NULL || i != p_mco))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 || (enc_dbcs == DBCS_JPNU && new_ScreenLines2 == NULL)
7451#endif
7452 || new_ScreenAttrs == NULL
7453 || new_LineOffset == NULL
7454 || new_LineWraps == NULL
Bram Moolenaarf740b292006-02-16 22:11:02 +00007455#ifdef FEAT_WINDOWS
7456 || new_TabPageIdxs == NULL
7457#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458 || outofmem)
7459 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00007460 if (ScreenLines != NULL || !done_outofmem_msg)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007461 {
7462 /* guess the size */
7463 do_outofmem_msg((long_u)((Rows + 1) * Columns));
7464
7465 /* Remember we did this to avoid getting outofmem messages over
7466 * and over again. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00007467 done_outofmem_msg = TRUE;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007468 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469 vim_free(new_ScreenLines);
7470 new_ScreenLines = NULL;
7471#ifdef FEAT_MBYTE
7472 vim_free(new_ScreenLinesUC);
7473 new_ScreenLinesUC = NULL;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007474 for (i = 0; i < p_mco; ++i)
7475 {
7476 vim_free(new_ScreenLinesC[i]);
7477 new_ScreenLinesC[i] = NULL;
7478 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 vim_free(new_ScreenLines2);
7480 new_ScreenLines2 = NULL;
7481#endif
7482 vim_free(new_ScreenAttrs);
7483 new_ScreenAttrs = NULL;
7484 vim_free(new_LineOffset);
7485 new_LineOffset = NULL;
7486 vim_free(new_LineWraps);
7487 new_LineWraps = NULL;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007488#ifdef FEAT_WINDOWS
7489 vim_free(new_TabPageIdxs);
7490 new_TabPageIdxs = NULL;
7491#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007492 }
7493 else
7494 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00007495 done_outofmem_msg = FALSE;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007496
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497 for (new_row = 0; new_row < Rows; ++new_row)
7498 {
7499 new_LineOffset[new_row] = new_row * Columns;
7500 new_LineWraps[new_row] = FALSE;
7501
7502 /*
7503 * If the screen is not going to be cleared, copy as much as
7504 * possible from the old screen to the new one and clear the rest
7505 * (used when resizing the window at the "--more--" prompt or when
7506 * executing an external command, for the GUI).
7507 */
7508 if (!clear)
7509 {
7510 (void)vim_memset(new_ScreenLines + new_row * Columns,
7511 ' ', (size_t)Columns * sizeof(schar_T));
7512#ifdef FEAT_MBYTE
7513 if (enc_utf8)
7514 {
7515 (void)vim_memset(new_ScreenLinesUC + new_row * Columns,
7516 0, (size_t)Columns * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007517 for (i = 0; i < p_mco; ++i)
7518 (void)vim_memset(new_ScreenLinesC[i]
7519 + new_row * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520 0, (size_t)Columns * sizeof(u8char_T));
7521 }
7522 if (enc_dbcs == DBCS_JPNU)
7523 (void)vim_memset(new_ScreenLines2 + new_row * Columns,
7524 0, (size_t)Columns * sizeof(schar_T));
7525#endif
7526 (void)vim_memset(new_ScreenAttrs + new_row * Columns,
7527 0, (size_t)Columns * sizeof(sattr_T));
7528 old_row = new_row + (screen_Rows - Rows);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00007529 if (old_row >= 0 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530 {
7531 if (screen_Columns < Columns)
7532 len = screen_Columns;
7533 else
7534 len = Columns;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007535#ifdef FEAT_MBYTE
Bram Moolenaarf4d11452005-12-02 00:46:37 +00007536 /* When switching to utf-8 don't copy characters, they
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007537 * may be invalid now. Also when p_mco changes. */
7538 if (!(enc_utf8 && ScreenLinesUC == NULL)
7539 && p_mco == Screen_mco)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007540#endif
7541 mch_memmove(new_ScreenLines + new_LineOffset[new_row],
7542 ScreenLines + LineOffset[old_row],
7543 (size_t)len * sizeof(schar_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007544#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007545 if (enc_utf8 && ScreenLinesUC != NULL
7546 && p_mco == Screen_mco)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547 {
7548 mch_memmove(new_ScreenLinesUC + new_LineOffset[new_row],
7549 ScreenLinesUC + LineOffset[old_row],
7550 (size_t)len * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007551 for (i = 0; i < p_mco; ++i)
7552 mch_memmove(new_ScreenLinesC[i]
7553 + new_LineOffset[new_row],
7554 ScreenLinesC[i] + LineOffset[old_row],
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555 (size_t)len * sizeof(u8char_T));
7556 }
7557 if (enc_dbcs == DBCS_JPNU && ScreenLines2 != NULL)
7558 mch_memmove(new_ScreenLines2 + new_LineOffset[new_row],
7559 ScreenLines2 + LineOffset[old_row],
7560 (size_t)len * sizeof(schar_T));
7561#endif
7562 mch_memmove(new_ScreenAttrs + new_LineOffset[new_row],
7563 ScreenAttrs + LineOffset[old_row],
7564 (size_t)len * sizeof(sattr_T));
7565 }
7566 }
7567 }
7568 /* Use the last line of the screen for the current line. */
7569 current_ScreenLine = new_ScreenLines + Rows * Columns;
7570 }
7571
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007572 free_screenlines();
7573
Bram Moolenaar071d4272004-06-13 20:20:40 +00007574 ScreenLines = new_ScreenLines;
7575#ifdef FEAT_MBYTE
7576 ScreenLinesUC = new_ScreenLinesUC;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007577 for (i = 0; i < p_mco; ++i)
7578 ScreenLinesC[i] = new_ScreenLinesC[i];
7579 Screen_mco = p_mco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007580 ScreenLines2 = new_ScreenLines2;
7581#endif
7582 ScreenAttrs = new_ScreenAttrs;
7583 LineOffset = new_LineOffset;
7584 LineWraps = new_LineWraps;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007585#ifdef FEAT_WINDOWS
7586 TabPageIdxs = new_TabPageIdxs;
7587#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007588
7589 /* It's important that screen_Rows and screen_Columns reflect the actual
7590 * size of ScreenLines[]. Set them before calling anything. */
7591#ifdef FEAT_GUI
7592 old_Rows = screen_Rows;
7593#endif
7594 screen_Rows = Rows;
7595 screen_Columns = Columns;
7596
7597 must_redraw = CLEAR; /* need to clear the screen later */
7598 if (clear)
7599 screenclear2();
7600
7601#ifdef FEAT_GUI
7602 else if (gui.in_use
7603 && !gui.starting
7604 && ScreenLines != NULL
7605 && old_Rows != Rows)
7606 {
7607 (void)gui_redraw_block(0, 0, (int)Rows - 1, (int)Columns - 1, 0);
7608 /*
7609 * Adjust the position of the cursor, for when executing an external
7610 * command.
7611 */
7612 if (msg_row >= Rows) /* Rows got smaller */
7613 msg_row = Rows - 1; /* put cursor at last row */
7614 else if (Rows > old_Rows) /* Rows got bigger */
7615 msg_row += Rows - old_Rows; /* put cursor in same place */
7616 if (msg_col >= Columns) /* Columns got smaller */
7617 msg_col = Columns - 1; /* put cursor at last column */
7618 }
7619#endif
7620
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621 entered = FALSE;
Bram Moolenaara3f2ecd2006-07-11 21:01:01 +00007622 --RedrawingDisabled;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00007623
7624#ifdef FEAT_AUTOCMD
7625 if (starting == 0)
7626 apply_autocmds(EVENT_VIMRESIZED, NULL, NULL, FALSE, curbuf);
7627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007628}
7629
7630 void
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007631free_screenlines()
7632{
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007633#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007634 int i;
7635
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007636 vim_free(ScreenLinesUC);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007637 for (i = 0; i < Screen_mco; ++i)
7638 vim_free(ScreenLinesC[i]);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007639 vim_free(ScreenLines2);
7640#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007641 vim_free(ScreenLines);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007642 vim_free(ScreenAttrs);
7643 vim_free(LineOffset);
7644 vim_free(LineWraps);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007645#ifdef FEAT_WINDOWS
7646 vim_free(TabPageIdxs);
7647#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00007648}
7649
7650 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007651screenclear()
7652{
7653 check_for_delay(FALSE);
7654 screenalloc(FALSE); /* allocate screen buffers if size changed */
7655 screenclear2(); /* clear the screen */
7656}
7657
7658 static void
7659screenclear2()
7660{
7661 int i;
7662
7663 if (starting == NO_SCREEN || ScreenLines == NULL
7664#ifdef FEAT_GUI
7665 || (gui.in_use && gui.starting)
7666#endif
7667 )
7668 return;
7669
7670#ifdef FEAT_GUI
7671 if (!gui.in_use)
7672#endif
7673 screen_attr = -1; /* force setting the Normal colors */
7674 screen_stop_highlight(); /* don't want highlighting here */
7675
7676#ifdef FEAT_CLIPBOARD
7677 /* disable selection without redrawing it */
7678 clip_scroll_selection(9999);
7679#endif
7680
7681 /* blank out ScreenLines */
7682 for (i = 0; i < Rows; ++i)
7683 {
7684 lineclear(LineOffset[i], (int)Columns);
7685 LineWraps[i] = FALSE;
7686 }
7687
7688 if (can_clear(T_CL))
7689 {
7690 out_str(T_CL); /* clear the display */
7691 clear_cmdline = FALSE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00007692 mode_displayed = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007693 }
7694 else
7695 {
7696 /* can't clear the screen, mark all chars with invalid attributes */
7697 for (i = 0; i < Rows; ++i)
7698 lineinvalid(LineOffset[i], (int)Columns);
7699 clear_cmdline = TRUE;
7700 }
7701
7702 screen_cleared = TRUE; /* can use contents of ScreenLines now */
7703
7704 win_rest_invalid(firstwin);
7705 redraw_cmdline = TRUE;
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00007706#ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00007707 redraw_tabline = TRUE;
Bram Moolenaar4c7ed462006-02-15 22:18:42 +00007708#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007709 if (must_redraw == CLEAR) /* no need to clear again */
7710 must_redraw = NOT_VALID;
7711 compute_cmdrow();
7712 msg_row = cmdline_row; /* put cursor on last line for messages */
7713 msg_col = 0;
7714 screen_start(); /* don't know where cursor is now */
7715 msg_scrolled = 0; /* can't scroll back */
7716 msg_didany = FALSE;
7717 msg_didout = FALSE;
7718}
7719
7720/*
7721 * Clear one line in ScreenLines.
7722 */
7723 static void
7724lineclear(off, width)
7725 unsigned off;
7726 int width;
7727{
7728 (void)vim_memset(ScreenLines + off, ' ', (size_t)width * sizeof(schar_T));
7729#ifdef FEAT_MBYTE
7730 if (enc_utf8)
7731 (void)vim_memset(ScreenLinesUC + off, 0,
7732 (size_t)width * sizeof(u8char_T));
7733#endif
7734 (void)vim_memset(ScreenAttrs + off, 0, (size_t)width * sizeof(sattr_T));
7735}
7736
7737/*
7738 * Mark one line in ScreenLines invalid by setting the attributes to an
7739 * invalid value.
7740 */
7741 static void
7742lineinvalid(off, width)
7743 unsigned off;
7744 int width;
7745{
7746 (void)vim_memset(ScreenAttrs + off, -1, (size_t)width * sizeof(sattr_T));
7747}
7748
7749#ifdef FEAT_VERTSPLIT
7750/*
7751 * Copy part of a Screenline for vertically split window "wp".
7752 */
7753 static void
7754linecopy(to, from, wp)
7755 int to;
7756 int from;
7757 win_T *wp;
7758{
7759 unsigned off_to = LineOffset[to] + wp->w_wincol;
7760 unsigned off_from = LineOffset[from] + wp->w_wincol;
7761
7762 mch_memmove(ScreenLines + off_to, ScreenLines + off_from,
7763 wp->w_width * sizeof(schar_T));
7764# ifdef FEAT_MBYTE
7765 if (enc_utf8)
7766 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007767 int i;
7768
Bram Moolenaar071d4272004-06-13 20:20:40 +00007769 mch_memmove(ScreenLinesUC + off_to, ScreenLinesUC + off_from,
7770 wp->w_width * sizeof(u8char_T));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007771 for (i = 0; i < p_mco; ++i)
7772 mch_memmove(ScreenLinesC[i] + off_to, ScreenLinesC[i] + off_from,
7773 wp->w_width * sizeof(u8char_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007774 }
7775 if (enc_dbcs == DBCS_JPNU)
7776 mch_memmove(ScreenLines2 + off_to, ScreenLines2 + off_from,
7777 wp->w_width * sizeof(schar_T));
7778# endif
7779 mch_memmove(ScreenAttrs + off_to, ScreenAttrs + off_from,
7780 wp->w_width * sizeof(sattr_T));
7781}
7782#endif
7783
7784/*
7785 * Return TRUE if clearing with term string "p" would work.
7786 * It can't work when the string is empty or it won't set the right background.
7787 */
7788 int
7789can_clear(p)
7790 char_u *p;
7791{
7792 return (*p != NUL && (t_colors <= 1
7793#ifdef FEAT_GUI
7794 || gui.in_use
7795#endif
7796 || cterm_normal_bg_color == 0 || *T_UT != NUL));
7797}
7798
7799/*
7800 * Reset cursor position. Use whenever cursor was moved because of outputting
7801 * something directly to the screen (shell commands) or a terminal control
7802 * code.
7803 */
7804 void
7805screen_start()
7806{
7807 screen_cur_row = screen_cur_col = 9999;
7808}
7809
7810/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007811 * Move the cursor to position "row","col" in the screen.
7812 * This tries to find the most efficient way to move, minimizing the number of
7813 * characters sent to the terminal.
7814 */
7815 void
7816windgoto(row, col)
7817 int row;
7818 int col;
7819{
Bram Moolenaare2cc9702005-03-15 22:43:58 +00007820 sattr_T *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007821 int i;
7822 int plan;
7823 int cost;
7824 int wouldbe_col;
7825 int noinvcurs;
7826 char_u *bs;
7827 int goto_cost;
7828 int attr;
7829
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00007830#define GOTO_COST 7 /* assume a term_windgoto() takes about 7 chars */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007831#define HIGHL_COST 5 /* assume unhighlight takes 5 chars */
7832
7833#define PLAN_LE 1
7834#define PLAN_CR 2
7835#define PLAN_NL 3
7836#define PLAN_WRITE 4
7837 /* Can't use ScreenLines unless initialized */
7838 if (ScreenLines == NULL)
7839 return;
7840
7841 if (col != screen_cur_col || row != screen_cur_row)
7842 {
7843 /* Check for valid position. */
7844 if (row < 0) /* window without text lines? */
7845 row = 0;
7846 if (row >= screen_Rows)
7847 row = screen_Rows - 1;
7848 if (col >= screen_Columns)
7849 col = screen_Columns - 1;
7850
7851 /* check if no cursor movement is allowed in highlight mode */
7852 if (screen_attr && *T_MS == NUL)
7853 noinvcurs = HIGHL_COST;
7854 else
7855 noinvcurs = 0;
7856 goto_cost = GOTO_COST + noinvcurs;
7857
7858 /*
7859 * Plan how to do the positioning:
7860 * 1. Use CR to move it to column 0, same row.
7861 * 2. Use T_LE to move it a few columns to the left.
7862 * 3. Use NL to move a few lines down, column 0.
7863 * 4. Move a few columns to the right with T_ND or by writing chars.
7864 *
7865 * Don't do this if the cursor went beyond the last column, the cursor
7866 * position is unknown then (some terminals wrap, some don't )
7867 *
Bram Moolenaar2c7a7632007-05-10 18:19:11 +00007868 * First check if the highlighting attributes allow us to write
Bram Moolenaar071d4272004-06-13 20:20:40 +00007869 * characters to move the cursor to the right.
7870 */
7871 if (row >= screen_cur_row && screen_cur_col < Columns)
7872 {
7873 /*
7874 * If the cursor is in the same row, bigger col, we can use CR
7875 * or T_LE.
7876 */
7877 bs = NULL; /* init for GCC */
7878 attr = screen_attr;
7879 if (row == screen_cur_row && col < screen_cur_col)
7880 {
7881 /* "le" is preferred over "bc", because "bc" is obsolete */
7882 if (*T_LE)
7883 bs = T_LE; /* "cursor left" */
7884 else
7885 bs = T_BC; /* "backspace character (old) */
7886 if (*bs)
7887 cost = (screen_cur_col - col) * (int)STRLEN(bs);
7888 else
7889 cost = 999;
7890 if (col + 1 < cost) /* using CR is less characters */
7891 {
7892 plan = PLAN_CR;
7893 wouldbe_col = 0;
7894 cost = 1; /* CR is just one character */
7895 }
7896 else
7897 {
7898 plan = PLAN_LE;
7899 wouldbe_col = col;
7900 }
7901 if (noinvcurs) /* will stop highlighting */
7902 {
7903 cost += noinvcurs;
7904 attr = 0;
7905 }
7906 }
7907
7908 /*
7909 * If the cursor is above where we want to be, we can use CR LF.
7910 */
7911 else if (row > screen_cur_row)
7912 {
7913 plan = PLAN_NL;
7914 wouldbe_col = 0;
7915 cost = (row - screen_cur_row) * 2; /* CR LF */
7916 if (noinvcurs) /* will stop highlighting */
7917 {
7918 cost += noinvcurs;
7919 attr = 0;
7920 }
7921 }
7922
7923 /*
7924 * If the cursor is in the same row, smaller col, just use write.
7925 */
7926 else
7927 {
7928 plan = PLAN_WRITE;
7929 wouldbe_col = screen_cur_col;
7930 cost = 0;
7931 }
7932
7933 /*
7934 * Check if any characters that need to be written have the
7935 * correct attributes. Also avoid UTF-8 characters.
7936 */
7937 i = col - wouldbe_col;
7938 if (i > 0)
7939 cost += i;
7940 if (cost < goto_cost && i > 0)
7941 {
7942 /*
7943 * Check if the attributes are correct without additionally
7944 * stopping highlighting.
7945 */
7946 p = ScreenAttrs + LineOffset[row] + wouldbe_col;
7947 while (i && *p++ == attr)
7948 --i;
7949 if (i != 0)
7950 {
7951 /*
7952 * Try if it works when highlighting is stopped here.
7953 */
7954 if (*--p == 0)
7955 {
7956 cost += noinvcurs;
7957 while (i && *p++ == 0)
7958 --i;
7959 }
7960 if (i != 0)
7961 cost = 999; /* different attributes, don't do it */
7962 }
7963#ifdef FEAT_MBYTE
7964 if (enc_utf8)
7965 {
7966 /* Don't use an UTF-8 char for positioning, it's slow. */
7967 for (i = wouldbe_col; i < col; ++i)
7968 if (ScreenLinesUC[LineOffset[row] + i] != 0)
7969 {
7970 cost = 999;
7971 break;
7972 }
7973 }
7974#endif
7975 }
7976
7977 /*
7978 * We can do it without term_windgoto()!
7979 */
7980 if (cost < goto_cost)
7981 {
7982 if (plan == PLAN_LE)
7983 {
7984 if (noinvcurs)
7985 screen_stop_highlight();
7986 while (screen_cur_col > col)
7987 {
7988 out_str(bs);
7989 --screen_cur_col;
7990 }
7991 }
7992 else if (plan == PLAN_CR)
7993 {
7994 if (noinvcurs)
7995 screen_stop_highlight();
7996 out_char('\r');
7997 screen_cur_col = 0;
7998 }
7999 else if (plan == PLAN_NL)
8000 {
8001 if (noinvcurs)
8002 screen_stop_highlight();
8003 while (screen_cur_row < row)
8004 {
8005 out_char('\n');
8006 ++screen_cur_row;
8007 }
8008 screen_cur_col = 0;
8009 }
8010
8011 i = col - screen_cur_col;
8012 if (i > 0)
8013 {
8014 /*
8015 * Use cursor-right if it's one character only. Avoids
8016 * removing a line of pixels from the last bold char, when
8017 * using the bold trick in the GUI.
8018 */
8019 if (T_ND[0] != NUL && T_ND[1] == NUL)
8020 {
8021 while (i-- > 0)
8022 out_char(*T_ND);
8023 }
8024 else
8025 {
8026 int off;
8027
8028 off = LineOffset[row] + screen_cur_col;
8029 while (i-- > 0)
8030 {
8031 if (ScreenAttrs[off] != screen_attr)
8032 screen_stop_highlight();
8033#ifdef FEAT_MBYTE
8034 out_flush_check();
8035#endif
8036 out_char(ScreenLines[off]);
8037#ifdef FEAT_MBYTE
8038 if (enc_dbcs == DBCS_JPNU
8039 && ScreenLines[off] == 0x8e)
8040 out_char(ScreenLines2[off]);
8041#endif
8042 ++off;
8043 }
8044 }
8045 }
8046 }
8047 }
8048 else
8049 cost = 999;
8050
8051 if (cost >= goto_cost)
8052 {
8053 if (noinvcurs)
8054 screen_stop_highlight();
8055 if (row == screen_cur_row && (col > screen_cur_col) &&
8056 *T_CRI != NUL)
8057 term_cursor_right(col - screen_cur_col);
8058 else
8059 term_windgoto(row, col);
8060 }
8061 screen_cur_row = row;
8062 screen_cur_col = col;
8063 }
8064}
8065
8066/*
8067 * Set cursor to its position in the current window.
8068 */
8069 void
8070setcursor()
8071{
8072 if (redrawing())
8073 {
8074 validate_cursor();
8075 windgoto(W_WINROW(curwin) + curwin->w_wrow,
8076 W_WINCOL(curwin) + (
8077#ifdef FEAT_RIGHTLEFT
Bram Moolenaar561f9db2008-02-20 13:16:29 +00008078 /* With 'rightleft' set and the cursor on a double-wide
8079 * character, position it on the leftmost column. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008080 curwin->w_p_rl ? ((int)W_WIDTH(curwin) - curwin->w_wcol - (
8081# ifdef FEAT_MBYTE
Bram Moolenaar561f9db2008-02-20 13:16:29 +00008082 (has_mbyte
8083 && (*mb_ptr2cells)(ml_get_cursor()) == 2
8084 && vim_isprintc(gchar_cursor())) ? 2 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00008085# endif
8086 1)) :
8087#endif
8088 curwin->w_wcol));
8089 }
8090}
8091
8092
8093/*
8094 * insert 'line_count' lines at 'row' in window 'wp'
8095 * if 'invalid' is TRUE the wp->w_lines[].wl_lnum is invalidated.
8096 * if 'mayclear' is TRUE the screen will be cleared if it is faster than
8097 * scrolling.
8098 * Returns FAIL if the lines are not inserted, OK for success.
8099 */
8100 int
8101win_ins_lines(wp, row, line_count, invalid, mayclear)
8102 win_T *wp;
8103 int row;
8104 int line_count;
8105 int invalid;
8106 int mayclear;
8107{
8108 int did_delete;
8109 int nextrow;
8110 int lastrow;
8111 int retval;
8112
8113 if (invalid)
8114 wp->w_lines_valid = 0;
8115
8116 if (wp->w_height < 5)
8117 return FAIL;
8118
8119 if (line_count > wp->w_height - row)
8120 line_count = wp->w_height - row;
8121
8122 retval = win_do_lines(wp, row, line_count, mayclear, FALSE);
8123 if (retval != MAYBE)
8124 return retval;
8125
8126 /*
8127 * If there is a next window or a status line, we first try to delete the
8128 * lines at the bottom to avoid messing what is after the window.
8129 * If this fails and there are following windows, don't do anything to avoid
8130 * messing up those windows, better just redraw.
8131 */
8132 did_delete = FALSE;
8133#ifdef FEAT_WINDOWS
8134 if (wp->w_next != NULL || wp->w_status_height)
8135 {
8136 if (screen_del_lines(0, W_WINROW(wp) + wp->w_height - line_count,
8137 line_count, (int)Rows, FALSE, NULL) == OK)
8138 did_delete = TRUE;
8139 else if (wp->w_next)
8140 return FAIL;
8141 }
8142#endif
8143 /*
8144 * if no lines deleted, blank the lines that will end up below the window
8145 */
8146 if (!did_delete)
8147 {
8148#ifdef FEAT_WINDOWS
8149 wp->w_redr_status = TRUE;
8150#endif
8151 redraw_cmdline = TRUE;
8152 nextrow = W_WINROW(wp) + wp->w_height + W_STATUS_HEIGHT(wp);
8153 lastrow = nextrow + line_count;
8154 if (lastrow > Rows)
8155 lastrow = Rows;
8156 screen_fill(nextrow - line_count, lastrow - line_count,
8157 W_WINCOL(wp), (int)W_ENDCOL(wp),
8158 ' ', ' ', 0);
8159 }
8160
8161 if (screen_ins_lines(0, W_WINROW(wp) + row, line_count, (int)Rows, NULL)
8162 == FAIL)
8163 {
8164 /* deletion will have messed up other windows */
8165 if (did_delete)
8166 {
8167#ifdef FEAT_WINDOWS
8168 wp->w_redr_status = TRUE;
8169#endif
8170 win_rest_invalid(W_NEXT(wp));
8171 }
8172 return FAIL;
8173 }
8174
8175 return OK;
8176}
8177
8178/*
8179 * delete "line_count" window lines at "row" in window "wp"
8180 * If "invalid" is TRUE curwin->w_lines[] is invalidated.
8181 * If "mayclear" is TRUE the screen will be cleared if it is faster than
8182 * scrolling
8183 * Return OK for success, FAIL if the lines are not deleted.
8184 */
8185 int
8186win_del_lines(wp, row, line_count, invalid, mayclear)
8187 win_T *wp;
8188 int row;
8189 int line_count;
8190 int invalid;
8191 int mayclear;
8192{
8193 int retval;
8194
8195 if (invalid)
8196 wp->w_lines_valid = 0;
8197
8198 if (line_count > wp->w_height - row)
8199 line_count = wp->w_height - row;
8200
8201 retval = win_do_lines(wp, row, line_count, mayclear, TRUE);
8202 if (retval != MAYBE)
8203 return retval;
8204
8205 if (screen_del_lines(0, W_WINROW(wp) + row, line_count,
8206 (int)Rows, FALSE, NULL) == FAIL)
8207 return FAIL;
8208
8209#ifdef FEAT_WINDOWS
8210 /*
8211 * If there are windows or status lines below, try to put them at the
8212 * correct place. If we can't do that, they have to be redrawn.
8213 */
8214 if (wp->w_next || wp->w_status_height || cmdline_row < Rows - 1)
8215 {
8216 if (screen_ins_lines(0, W_WINROW(wp) + wp->w_height - line_count,
8217 line_count, (int)Rows, NULL) == FAIL)
8218 {
8219 wp->w_redr_status = TRUE;
8220 win_rest_invalid(wp->w_next);
8221 }
8222 }
8223 /*
8224 * If this is the last window and there is no status line, redraw the
8225 * command line later.
8226 */
8227 else
8228#endif
8229 redraw_cmdline = TRUE;
8230 return OK;
8231}
8232
8233/*
8234 * Common code for win_ins_lines() and win_del_lines().
8235 * Returns OK or FAIL when the work has been done.
8236 * Returns MAYBE when not finished yet.
8237 */
8238 static int
8239win_do_lines(wp, row, line_count, mayclear, del)
8240 win_T *wp;
8241 int row;
8242 int line_count;
8243 int mayclear;
8244 int del;
8245{
8246 int retval;
8247
8248 if (!redrawing() || line_count <= 0)
8249 return FAIL;
8250
8251 /* only a few lines left: redraw is faster */
8252 if (mayclear && Rows - line_count < 5
8253#ifdef FEAT_VERTSPLIT
8254 && wp->w_width == Columns
8255#endif
8256 )
8257 {
8258 screenclear(); /* will set wp->w_lines_valid to 0 */
8259 return FAIL;
8260 }
8261
8262 /*
8263 * Delete all remaining lines
8264 */
8265 if (row + line_count >= wp->w_height)
8266 {
8267 screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + wp->w_height,
8268 W_WINCOL(wp), (int)W_ENDCOL(wp),
8269 ' ', ' ', 0);
8270 return OK;
8271 }
8272
8273 /*
8274 * when scrolling, the message on the command line should be cleared,
8275 * otherwise it will stay there forever.
8276 */
8277 clear_cmdline = TRUE;
8278
8279 /*
8280 * If the terminal can set a scroll region, use that.
8281 * Always do this in a vertically split window. This will redraw from
8282 * ScreenLines[] when t_CV isn't defined. That's faster than using
8283 * win_line().
8284 * Don't use a scroll region when we are going to redraw the text, writing
8285 * a character in the lower right corner of the scroll region causes a
8286 * scroll-up in the DJGPP version.
8287 */
8288 if (scroll_region
8289#ifdef FEAT_VERTSPLIT
8290 || W_WIDTH(wp) != Columns
8291#endif
8292 )
8293 {
8294#ifdef FEAT_VERTSPLIT
8295 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
8296#endif
8297 scroll_region_set(wp, row);
8298 if (del)
8299 retval = screen_del_lines(W_WINROW(wp) + row, 0, line_count,
8300 wp->w_height - row, FALSE, wp);
8301 else
8302 retval = screen_ins_lines(W_WINROW(wp) + row, 0, line_count,
8303 wp->w_height - row, wp);
8304#ifdef FEAT_VERTSPLIT
8305 if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
8306#endif
8307 scroll_region_reset();
8308 return retval;
8309 }
8310
8311#ifdef FEAT_WINDOWS
8312 if (wp->w_next != NULL && p_tf) /* don't delete/insert on fast terminal */
8313 return FAIL;
8314#endif
8315
8316 return MAYBE;
8317}
8318
8319/*
8320 * window 'wp' and everything after it is messed up, mark it for redraw
8321 */
8322 static void
8323win_rest_invalid(wp)
8324 win_T *wp;
8325{
8326#ifdef FEAT_WINDOWS
8327 while (wp != NULL)
8328#else
8329 if (wp != NULL)
8330#endif
8331 {
8332 redraw_win_later(wp, NOT_VALID);
8333#ifdef FEAT_WINDOWS
8334 wp->w_redr_status = TRUE;
8335 wp = wp->w_next;
8336#endif
8337 }
8338 redraw_cmdline = TRUE;
8339}
8340
8341/*
8342 * The rest of the routines in this file perform screen manipulations. The
8343 * given operation is performed physically on the screen. The corresponding
8344 * change is also made to the internal screen image. In this way, the editor
8345 * anticipates the effect of editing changes on the appearance of the screen.
8346 * That way, when we call screenupdate a complete redraw isn't usually
8347 * necessary. Another advantage is that we can keep adding code to anticipate
8348 * screen changes, and in the meantime, everything still works.
8349 */
8350
8351/*
8352 * types for inserting or deleting lines
8353 */
8354#define USE_T_CAL 1
8355#define USE_T_CDL 2
8356#define USE_T_AL 3
8357#define USE_T_CE 4
8358#define USE_T_DL 5
8359#define USE_T_SR 6
8360#define USE_NL 7
8361#define USE_T_CD 8
8362#define USE_REDRAW 9
8363
8364/*
8365 * insert lines on the screen and update ScreenLines[]
8366 * 'end' is the line after the scrolled part. Normally it is Rows.
8367 * When scrolling region used 'off' is the offset from the top for the region.
8368 * 'row' and 'end' are relative to the start of the region.
8369 *
8370 * return FAIL for failure, OK for success.
8371 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008372 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00008373screen_ins_lines(off, row, line_count, end, wp)
8374 int off;
8375 int row;
8376 int line_count;
8377 int end;
8378 win_T *wp; /* NULL or window to use width from */
8379{
8380 int i;
8381 int j;
8382 unsigned temp;
8383 int cursor_row;
8384 int type;
8385 int result_empty;
8386 int can_ce = can_clear(T_CE);
8387
8388 /*
8389 * FAIL if
8390 * - there is no valid screen
8391 * - the screen has to be redrawn completely
8392 * - the line count is less than one
8393 * - the line count is more than 'ttyscroll'
8394 */
8395 if (!screen_valid(TRUE) || line_count <= 0 || line_count > p_ttyscroll)
8396 return FAIL;
8397
8398 /*
8399 * There are seven ways to insert lines:
8400 * 0. When in a vertically split window and t_CV isn't set, redraw the
8401 * characters from ScreenLines[].
8402 * 1. Use T_CD (clear to end of display) if it exists and the result of
8403 * the insert is just empty lines
8404 * 2. Use T_CAL (insert multiple lines) if it exists and T_AL is not
8405 * present or line_count > 1. It looks better if we do all the inserts
8406 * at once.
8407 * 3. Use T_CDL (delete multiple lines) if it exists and the result of the
8408 * insert is just empty lines and T_CE is not present or line_count >
8409 * 1.
8410 * 4. Use T_AL (insert line) if it exists.
8411 * 5. Use T_CE (erase line) if it exists and the result of the insert is
8412 * just empty lines.
8413 * 6. Use T_DL (delete line) if it exists and the result of the insert is
8414 * just empty lines.
8415 * 7. Use T_SR (scroll reverse) if it exists and inserting at row 0 and
8416 * the 'da' flag is not set or we have clear line capability.
8417 * 8. redraw the characters from ScreenLines[].
8418 *
8419 * Careful: In a hpterm scroll reverse doesn't work as expected, it moves
8420 * the scrollbar for the window. It does have insert line, use that if it
8421 * exists.
8422 */
8423 result_empty = (row + line_count >= end);
8424#ifdef FEAT_VERTSPLIT
8425 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
8426 type = USE_REDRAW;
8427 else
8428#endif
8429 if (can_clear(T_CD) && result_empty)
8430 type = USE_T_CD;
8431 else if (*T_CAL != NUL && (line_count > 1 || *T_AL == NUL))
8432 type = USE_T_CAL;
8433 else if (*T_CDL != NUL && result_empty && (line_count > 1 || !can_ce))
8434 type = USE_T_CDL;
8435 else if (*T_AL != NUL)
8436 type = USE_T_AL;
8437 else if (can_ce && result_empty)
8438 type = USE_T_CE;
8439 else if (*T_DL != NUL && result_empty)
8440 type = USE_T_DL;
8441 else if (*T_SR != NUL && row == 0 && (*T_DA == NUL || can_ce))
8442 type = USE_T_SR;
8443 else
8444 return FAIL;
8445
8446 /*
8447 * For clearing the lines screen_del_lines() is used. This will also take
8448 * care of t_db if necessary.
8449 */
8450 if (type == USE_T_CD || type == USE_T_CDL ||
8451 type == USE_T_CE || type == USE_T_DL)
8452 return screen_del_lines(off, row, line_count, end, FALSE, wp);
8453
8454 /*
8455 * If text is retained below the screen, first clear or delete as many
8456 * lines at the bottom of the window as are about to be inserted so that
8457 * the deleted lines won't later surface during a screen_del_lines.
8458 */
8459 if (*T_DB)
8460 screen_del_lines(off, end - line_count, line_count, end, FALSE, wp);
8461
8462#ifdef FEAT_CLIPBOARD
8463 /* Remove a modeless selection when inserting lines halfway the screen
8464 * or not the full width of the screen. */
8465 if (off + row > 0
8466# ifdef FEAT_VERTSPLIT
8467 || (wp != NULL && wp->w_width != Columns)
8468# endif
8469 )
8470 clip_clear_selection();
8471 else
8472 clip_scroll_selection(-line_count);
8473#endif
8474
Bram Moolenaar071d4272004-06-13 20:20:40 +00008475#ifdef FEAT_GUI
8476 /* Don't update the GUI cursor here, ScreenLines[] is invalid until the
8477 * scrolling is actually carried out. */
8478 gui_dont_update_cursor();
8479#endif
8480
8481 if (*T_CCS != NUL) /* cursor relative to region */
8482 cursor_row = row;
8483 else
8484 cursor_row = row + off;
8485
8486 /*
8487 * Shift LineOffset[] line_count down to reflect the inserted lines.
8488 * Clear the inserted lines in ScreenLines[].
8489 */
8490 row += off;
8491 end += off;
8492 for (i = 0; i < line_count; ++i)
8493 {
8494#ifdef FEAT_VERTSPLIT
8495 if (wp != NULL && wp->w_width != Columns)
8496 {
8497 /* need to copy part of a line */
8498 j = end - 1 - i;
8499 while ((j -= line_count) >= row)
8500 linecopy(j + line_count, j, wp);
8501 j += line_count;
8502 if (can_clear((char_u *)" "))
8503 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width);
8504 else
8505 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width);
8506 LineWraps[j] = FALSE;
8507 }
8508 else
8509#endif
8510 {
8511 j = end - 1 - i;
8512 temp = LineOffset[j];
8513 while ((j -= line_count) >= row)
8514 {
8515 LineOffset[j + line_count] = LineOffset[j];
8516 LineWraps[j + line_count] = LineWraps[j];
8517 }
8518 LineOffset[j + line_count] = temp;
8519 LineWraps[j + line_count] = FALSE;
8520 if (can_clear((char_u *)" "))
8521 lineclear(temp, (int)Columns);
8522 else
8523 lineinvalid(temp, (int)Columns);
8524 }
8525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008526
8527 screen_stop_highlight();
8528 windgoto(cursor_row, 0);
8529
8530#ifdef FEAT_VERTSPLIT
8531 /* redraw the characters */
8532 if (type == USE_REDRAW)
8533 redraw_block(row, end, wp);
8534 else
8535#endif
8536 if (type == USE_T_CAL)
8537 {
8538 term_append_lines(line_count);
8539 screen_start(); /* don't know where cursor is now */
8540 }
8541 else
8542 {
8543 for (i = 0; i < line_count; i++)
8544 {
8545 if (type == USE_T_AL)
8546 {
8547 if (i && cursor_row != 0)
8548 windgoto(cursor_row, 0);
8549 out_str(T_AL);
8550 }
8551 else /* type == USE_T_SR */
8552 out_str(T_SR);
8553 screen_start(); /* don't know where cursor is now */
8554 }
8555 }
8556
8557 /*
8558 * With scroll-reverse and 'da' flag set we need to clear the lines that
8559 * have been scrolled down into the region.
8560 */
8561 if (type == USE_T_SR && *T_DA)
8562 {
8563 for (i = 0; i < line_count; ++i)
8564 {
8565 windgoto(off + i, 0);
8566 out_str(T_CE);
8567 screen_start(); /* don't know where cursor is now */
8568 }
8569 }
8570
8571#ifdef FEAT_GUI
8572 gui_can_update_cursor();
8573 if (gui.in_use)
8574 out_flush(); /* always flush after a scroll */
8575#endif
8576 return OK;
8577}
8578
8579/*
8580 * delete lines on the screen and update ScreenLines[]
8581 * 'end' is the line after the scrolled part. Normally it is Rows.
8582 * When scrolling region used 'off' is the offset from the top for the region.
8583 * 'row' and 'end' are relative to the start of the region.
8584 *
8585 * Return OK for success, FAIL if the lines are not deleted.
8586 */
8587/*ARGSUSED*/
8588 int
8589screen_del_lines(off, row, line_count, end, force, wp)
8590 int off;
8591 int row;
8592 int line_count;
8593 int end;
8594 int force; /* even when line_count > p_ttyscroll */
8595 win_T *wp; /* NULL or window to use width from */
8596{
8597 int j;
8598 int i;
8599 unsigned temp;
8600 int cursor_row;
8601 int cursor_end;
8602 int result_empty; /* result is empty until end of region */
8603 int can_delete; /* deleting line codes can be used */
8604 int type;
8605
8606 /*
8607 * FAIL if
8608 * - there is no valid screen
8609 * - the screen has to be redrawn completely
8610 * - the line count is less than one
8611 * - the line count is more than 'ttyscroll'
8612 */
8613 if (!screen_valid(TRUE) || line_count <= 0 ||
8614 (!force && line_count > p_ttyscroll))
8615 return FAIL;
8616
8617 /*
8618 * Check if the rest of the current region will become empty.
8619 */
8620 result_empty = row + line_count >= end;
8621
8622 /*
8623 * We can delete lines only when 'db' flag not set or when 'ce' option
8624 * available.
8625 */
8626 can_delete = (*T_DB == NUL || can_clear(T_CE));
8627
8628 /*
8629 * There are six ways to delete lines:
8630 * 0. When in a vertically split window and t_CV isn't set, redraw the
8631 * characters from ScreenLines[].
8632 * 1. Use T_CD if it exists and the result is empty.
8633 * 2. Use newlines if row == 0 and count == 1 or T_CDL does not exist.
8634 * 3. Use T_CDL (delete multiple lines) if it exists and line_count > 1 or
8635 * none of the other ways work.
8636 * 4. Use T_CE (erase line) if the result is empty.
8637 * 5. Use T_DL (delete line) if it exists.
8638 * 6. redraw the characters from ScreenLines[].
8639 */
8640#ifdef FEAT_VERTSPLIT
8641 if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
8642 type = USE_REDRAW;
8643 else
8644#endif
8645 if (can_clear(T_CD) && result_empty)
8646 type = USE_T_CD;
8647#if defined(__BEOS__) && defined(BEOS_DR8)
8648 /*
8649 * USE_NL does not seem to work in Terminal of DR8 so we set T_DB="" in
8650 * its internal termcap... this works okay for tests which test *T_DB !=
8651 * NUL. It has the disadvantage that the user cannot use any :set t_*
8652 * command to get T_DB (back) to empty_option, only :set term=... will do
8653 * the trick...
8654 * Anyway, this hack will hopefully go away with the next OS release.
8655 * (Olaf Seibert)
8656 */
8657 else if (row == 0 && T_DB == empty_option
8658 && (line_count == 1 || *T_CDL == NUL))
8659#else
8660 else if (row == 0 && (
8661#ifndef AMIGA
8662 /* On the Amiga, somehow '\n' on the last line doesn't always scroll
8663 * up, so use delete-line command */
8664 line_count == 1 ||
8665#endif
8666 *T_CDL == NUL))
8667#endif
8668 type = USE_NL;
8669 else if (*T_CDL != NUL && line_count > 1 && can_delete)
8670 type = USE_T_CDL;
8671 else if (can_clear(T_CE) && result_empty
8672#ifdef FEAT_VERTSPLIT
8673 && (wp == NULL || wp->w_width == Columns)
8674#endif
8675 )
8676 type = USE_T_CE;
8677 else if (*T_DL != NUL && can_delete)
8678 type = USE_T_DL;
8679 else if (*T_CDL != NUL && can_delete)
8680 type = USE_T_CDL;
8681 else
8682 return FAIL;
8683
8684#ifdef FEAT_CLIPBOARD
8685 /* Remove a modeless selection when deleting lines halfway the screen or
8686 * not the full width of the screen. */
8687 if (off + row > 0
8688# ifdef FEAT_VERTSPLIT
8689 || (wp != NULL && wp->w_width != Columns)
8690# endif
8691 )
8692 clip_clear_selection();
8693 else
8694 clip_scroll_selection(line_count);
8695#endif
8696
Bram Moolenaar071d4272004-06-13 20:20:40 +00008697#ifdef FEAT_GUI
8698 /* Don't update the GUI cursor here, ScreenLines[] is invalid until the
8699 * scrolling is actually carried out. */
8700 gui_dont_update_cursor();
8701#endif
8702
8703 if (*T_CCS != NUL) /* cursor relative to region */
8704 {
8705 cursor_row = row;
8706 cursor_end = end;
8707 }
8708 else
8709 {
8710 cursor_row = row + off;
8711 cursor_end = end + off;
8712 }
8713
8714 /*
8715 * Now shift LineOffset[] line_count up to reflect the deleted lines.
8716 * Clear the inserted lines in ScreenLines[].
8717 */
8718 row += off;
8719 end += off;
8720 for (i = 0; i < line_count; ++i)
8721 {
8722#ifdef FEAT_VERTSPLIT
8723 if (wp != NULL && wp->w_width != Columns)
8724 {
8725 /* need to copy part of a line */
8726 j = row + i;
8727 while ((j += line_count) <= end - 1)
8728 linecopy(j - line_count, j, wp);
8729 j -= line_count;
8730 if (can_clear((char_u *)" "))
8731 lineclear(LineOffset[j] + wp->w_wincol, wp->w_width);
8732 else
8733 lineinvalid(LineOffset[j] + wp->w_wincol, wp->w_width);
8734 LineWraps[j] = FALSE;
8735 }
8736 else
8737#endif
8738 {
8739 /* whole width, moving the line pointers is faster */
8740 j = row + i;
8741 temp = LineOffset[j];
8742 while ((j += line_count) <= end - 1)
8743 {
8744 LineOffset[j - line_count] = LineOffset[j];
8745 LineWraps[j - line_count] = LineWraps[j];
8746 }
8747 LineOffset[j - line_count] = temp;
8748 LineWraps[j - line_count] = FALSE;
8749 if (can_clear((char_u *)" "))
8750 lineclear(temp, (int)Columns);
8751 else
8752 lineinvalid(temp, (int)Columns);
8753 }
8754 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008755
8756 screen_stop_highlight();
8757
8758#ifdef FEAT_VERTSPLIT
8759 /* redraw the characters */
8760 if (type == USE_REDRAW)
8761 redraw_block(row, end, wp);
8762 else
8763#endif
8764 if (type == USE_T_CD) /* delete the lines */
8765 {
8766 windgoto(cursor_row, 0);
8767 out_str(T_CD);
8768 screen_start(); /* don't know where cursor is now */
8769 }
8770 else if (type == USE_T_CDL)
8771 {
8772 windgoto(cursor_row, 0);
8773 term_delete_lines(line_count);
8774 screen_start(); /* don't know where cursor is now */
8775 }
8776 /*
8777 * Deleting lines at top of the screen or scroll region: Just scroll
8778 * the whole screen (scroll region) up by outputting newlines on the
8779 * last line.
8780 */
8781 else if (type == USE_NL)
8782 {
8783 windgoto(cursor_end - 1, 0);
8784 for (i = line_count; --i >= 0; )
8785 out_char('\n'); /* cursor will remain on same line */
8786 }
8787 else
8788 {
8789 for (i = line_count; --i >= 0; )
8790 {
8791 if (type == USE_T_DL)
8792 {
8793 windgoto(cursor_row, 0);
8794 out_str(T_DL); /* delete a line */
8795 }
8796 else /* type == USE_T_CE */
8797 {
8798 windgoto(cursor_row + i, 0);
8799 out_str(T_CE); /* erase a line */
8800 }
8801 screen_start(); /* don't know where cursor is now */
8802 }
8803 }
8804
8805 /*
8806 * If the 'db' flag is set, we need to clear the lines that have been
8807 * scrolled up at the bottom of the region.
8808 */
8809 if (*T_DB && (type == USE_T_DL || type == USE_T_CDL))
8810 {
8811 for (i = line_count; i > 0; --i)
8812 {
8813 windgoto(cursor_end - i, 0);
8814 out_str(T_CE); /* erase a line */
8815 screen_start(); /* don't know where cursor is now */
8816 }
8817 }
8818
8819#ifdef FEAT_GUI
8820 gui_can_update_cursor();
8821 if (gui.in_use)
8822 out_flush(); /* always flush after a scroll */
8823#endif
8824
8825 return OK;
8826}
8827
8828/*
8829 * show the current mode and ruler
8830 *
8831 * If clear_cmdline is TRUE, clear the rest of the cmdline.
8832 * If clear_cmdline is FALSE there may be a message there that needs to be
8833 * cleared only if a mode is shown.
8834 * Return the length of the message (0 if no message).
8835 */
8836 int
8837showmode()
8838{
8839 int need_clear;
8840 int length = 0;
8841 int do_mode;
8842 int attr;
8843 int nwr_save;
8844#ifdef FEAT_INS_EXPAND
8845 int sub_attr;
8846#endif
8847
Bram Moolenaar7df351e2006-01-23 22:30:28 +00008848 do_mode = ((p_smd && msg_silent == 0)
8849 && ((State & INSERT)
8850 || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +00008851#ifdef FEAT_VISUAL
8852 || VIsual_active
8853#endif
8854 ));
8855 if (do_mode || Recording)
8856 {
8857 /*
8858 * Don't show mode right now, when not redrawing or inside a mapping.
8859 * Call char_avail() only when we are going to show something, because
8860 * it takes a bit of time.
8861 */
8862 if (!redrawing() || (char_avail() && !KeyTyped) || msg_silent != 0)
8863 {
8864 redraw_cmdline = TRUE; /* show mode later */
8865 return 0;
8866 }
8867
8868 nwr_save = need_wait_return;
8869
8870 /* wait a bit before overwriting an important message */
8871 check_for_delay(FALSE);
8872
8873 /* if the cmdline is more than one line high, erase top lines */
8874 need_clear = clear_cmdline;
8875 if (clear_cmdline && cmdline_row < Rows - 1)
8876 msg_clr_cmdline(); /* will reset clear_cmdline */
8877
8878 /* Position on the last line in the window, column 0 */
8879 msg_pos_mode();
8880 cursor_off();
8881 attr = hl_attr(HLF_CM); /* Highlight mode */
8882 if (do_mode)
8883 {
8884 MSG_PUTS_ATTR("--", attr);
8885#if defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00008886# if 0 /* old version, changed by SungHyun Nam July 2008 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008887 if (xic != NULL && im_get_status() && !p_imdisable
8888 && curbuf->b_p_iminsert == B_IMODE_IM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00008889# else
8890 if (
8891# ifdef HAVE_GTK2
8892 preedit_get_status()
8893# else
8894 im_get_status()
8895# endif
8896 )
8897# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008898# ifdef HAVE_GTK2 /* most of the time, it's not XIM being used */
8899 MSG_PUTS_ATTR(" IM", attr);
8900# else
8901 MSG_PUTS_ATTR(" XIM", attr);
8902# endif
8903#endif
8904#if defined(FEAT_HANGULIN) && defined(FEAT_GUI)
8905 if (gui.in_use)
8906 {
8907 if (hangul_input_state_get())
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008908 MSG_PUTS_ATTR(" \307\321\261\333", attr); /* HANGUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008909 }
8910#endif
8911#ifdef FEAT_INS_EXPAND
8912 if (edit_submode != NULL) /* CTRL-X in Insert mode */
8913 {
8914 /* These messages can get long, avoid a wrap in a narrow
8915 * window. Prefer showing edit_submode_extra. */
8916 length = (Rows - msg_row) * Columns - 3;
8917 if (edit_submode_extra != NULL)
8918 length -= vim_strsize(edit_submode_extra);
8919 if (length > 0)
8920 {
8921 if (edit_submode_pre != NULL)
8922 length -= vim_strsize(edit_submode_pre);
8923 if (length - vim_strsize(edit_submode) > 0)
8924 {
8925 if (edit_submode_pre != NULL)
8926 msg_puts_attr(edit_submode_pre, attr);
8927 msg_puts_attr(edit_submode, attr);
8928 }
8929 if (edit_submode_extra != NULL)
8930 {
8931 MSG_PUTS_ATTR(" ", attr); /* add a space in between */
8932 if ((int)edit_submode_highl < (int)HLF_COUNT)
8933 sub_attr = hl_attr(edit_submode_highl);
8934 else
8935 sub_attr = attr;
8936 msg_puts_attr(edit_submode_extra, sub_attr);
8937 }
8938 }
8939 length = 0;
8940 }
8941 else
8942#endif
8943 {
8944#ifdef FEAT_VREPLACE
8945 if (State & VREPLACE_FLAG)
8946 MSG_PUTS_ATTR(_(" VREPLACE"), attr);
8947 else
8948#endif
8949 if (State & REPLACE_FLAG)
8950 MSG_PUTS_ATTR(_(" REPLACE"), attr);
8951 else if (State & INSERT)
8952 {
8953#ifdef FEAT_RIGHTLEFT
8954 if (p_ri)
8955 MSG_PUTS_ATTR(_(" REVERSE"), attr);
8956#endif
8957 MSG_PUTS_ATTR(_(" INSERT"), attr);
8958 }
8959 else if (restart_edit == 'I')
8960 MSG_PUTS_ATTR(_(" (insert)"), attr);
8961 else if (restart_edit == 'R')
8962 MSG_PUTS_ATTR(_(" (replace)"), attr);
8963 else if (restart_edit == 'V')
8964 MSG_PUTS_ATTR(_(" (vreplace)"), attr);
8965#ifdef FEAT_RIGHTLEFT
8966 if (p_hkmap)
8967 MSG_PUTS_ATTR(_(" Hebrew"), attr);
8968# ifdef FEAT_FKMAP
8969 if (p_fkmap)
8970 MSG_PUTS_ATTR(farsi_text_5, attr);
8971# endif
8972#endif
8973#ifdef FEAT_KEYMAP
8974 if (State & LANGMAP)
8975 {
8976# ifdef FEAT_ARABIC
8977 if (curwin->w_p_arab)
8978 MSG_PUTS_ATTR(_(" Arabic"), attr);
8979 else
8980# endif
8981 MSG_PUTS_ATTR(_(" (lang)"), attr);
8982 }
8983#endif
8984 if ((State & INSERT) && p_paste)
8985 MSG_PUTS_ATTR(_(" (paste)"), attr);
8986
8987#ifdef FEAT_VISUAL
8988 if (VIsual_active)
8989 {
8990 char *p;
8991
8992 /* Don't concatenate separate words to avoid translation
8993 * problems. */
8994 switch ((VIsual_select ? 4 : 0)
8995 + (VIsual_mode == Ctrl_V) * 2
8996 + (VIsual_mode == 'V'))
8997 {
8998 case 0: p = N_(" VISUAL"); break;
8999 case 1: p = N_(" VISUAL LINE"); break;
9000 case 2: p = N_(" VISUAL BLOCK"); break;
9001 case 4: p = N_(" SELECT"); break;
9002 case 5: p = N_(" SELECT LINE"); break;
9003 default: p = N_(" SELECT BLOCK"); break;
9004 }
9005 MSG_PUTS_ATTR(_(p), attr);
9006 }
9007#endif
9008 MSG_PUTS_ATTR(" --", attr);
9009 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00009010
Bram Moolenaar071d4272004-06-13 20:20:40 +00009011 need_clear = TRUE;
9012 }
9013 if (Recording
9014#ifdef FEAT_INS_EXPAND
9015 && edit_submode == NULL /* otherwise it gets too long */
9016#endif
9017 )
9018 {
9019 MSG_PUTS_ATTR(_("recording"), attr);
9020 need_clear = TRUE;
9021 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00009022
9023 mode_displayed = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009024 if (need_clear || clear_cmdline)
9025 msg_clr_eos();
9026 msg_didout = FALSE; /* overwrite this message */
9027 length = msg_col;
9028 msg_col = 0;
9029 need_wait_return = nwr_save; /* never ask for hit-return for this */
9030 }
9031 else if (clear_cmdline && msg_silent == 0)
9032 /* Clear the whole command line. Will reset "clear_cmdline". */
9033 msg_clr_cmdline();
9034
9035#ifdef FEAT_CMDL_INFO
9036# ifdef FEAT_VISUAL
9037 /* In Visual mode the size of the selected area must be redrawn. */
9038 if (VIsual_active)
9039 clear_showcmd();
9040# endif
9041
9042 /* If the last window has no status line, the ruler is after the mode
9043 * message and must be redrawn */
9044 if (redrawing()
9045# ifdef FEAT_WINDOWS
9046 && lastwin->w_status_height == 0
9047# endif
9048 )
9049 win_redr_ruler(lastwin, TRUE);
9050#endif
9051 redraw_cmdline = FALSE;
9052 clear_cmdline = FALSE;
9053
9054 return length;
9055}
9056
9057/*
9058 * Position for a mode message.
9059 */
9060 static void
9061msg_pos_mode()
9062{
9063 msg_col = 0;
9064 msg_row = Rows - 1;
9065}
9066
9067/*
9068 * Delete mode message. Used when ESC is typed which is expected to end
9069 * Insert mode (but Insert mode didn't end yet!).
Bram Moolenaard12f5c12006-01-25 22:10:52 +00009070 * Caller should check "mode_displayed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00009071 */
9072 void
9073unshowmode(force)
9074 int force;
9075{
9076 /*
9077 * Don't delete it right now, when not redrawing or insided a mapping.
9078 */
9079 if (!redrawing() || (!force && char_avail() && !KeyTyped))
9080 redraw_cmdline = TRUE; /* delete mode later */
9081 else
9082 {
9083 msg_pos_mode();
9084 if (Recording)
9085 MSG_PUTS_ATTR(_("recording"), hl_attr(HLF_CM));
9086 msg_clr_eos();
9087 }
9088}
9089
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009090#if defined(FEAT_WINDOWS)
9091/*
9092 * Draw the tab pages line at the top of the Vim window.
9093 */
9094 static void
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009095draw_tabline()
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009096{
9097 int tabcount = 0;
9098 tabpage_T *tp;
9099 int tabwidth;
9100 int col = 0;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00009101 int scol = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009102 int attr;
9103 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00009104 win_T *cwp;
9105 int wincount;
9106 int modified;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009107 int c;
9108 int len;
9109 int attr_sel = hl_attr(HLF_TPS);
9110 int attr_nosel = hl_attr(HLF_TP);
9111 int attr_fill = hl_attr(HLF_TPF);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00009112 char_u *p;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009113 int room;
9114 int use_sep_chars = (t_colors < 8
9115#ifdef FEAT_GUI
9116 && !gui.in_use
9117#endif
9118 );
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009119
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00009120 redraw_tabline = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009121
Bram Moolenaar32466aa2006-02-24 23:53:04 +00009122#ifdef FEAT_GUI_TABLINE
Bram Moolenaardb552d602006-03-23 22:59:57 +00009123 /* Take care of a GUI tabline. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00009124 if (gui_use_tabline())
9125 {
9126 gui_update_tabline();
9127 return;
9128 }
9129#endif
9130
9131 if (tabline_height() < 1)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009132 return;
9133
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009134#if defined(FEAT_STL_OPT)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009135
9136 /* Init TabPageIdxs[] to zero: Clicking outside of tabs has no effect. */
9137 for (scol = 0; scol < Columns; ++scol)
9138 TabPageIdxs[scol] = 0;
9139
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009140 /* Use the 'tabline' option if it's set. */
9141 if (*p_tal != NUL)
9142 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00009143 int save_called_emsg = called_emsg;
9144
9145 /* Check for an error. If there is one we would loop in redrawing the
9146 * screen. Avoid that by making 'tabline' empty. */
9147 called_emsg = FALSE;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009148 win_redr_custom(NULL, FALSE);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009149 if (called_emsg)
9150 set_string_option_direct((char_u *)"tabline", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00009151 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009152 called_emsg |= save_called_emsg;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009153 }
Bram Moolenaar238a5642006-02-21 22:12:05 +00009154 else
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009155#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009156 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00009157 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
9158 ++tabcount;
Bram Moolenaarf740b292006-02-16 22:11:02 +00009159
Bram Moolenaar238a5642006-02-21 22:12:05 +00009160 tabwidth = (Columns - 1 + tabcount / 2) / tabcount;
9161 if (tabwidth < 6)
9162 tabwidth = 6;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009163
Bram Moolenaar238a5642006-02-21 22:12:05 +00009164 attr = attr_nosel;
9165 tabcount = 0;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009166 scol = 0;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00009167 for (tp = first_tabpage; tp != NULL && col < Columns - 4;
9168 tp = tp->tp_next)
Bram Moolenaarf740b292006-02-16 22:11:02 +00009169 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00009170 scol = col;
Bram Moolenaarf740b292006-02-16 22:11:02 +00009171
Bram Moolenaar238a5642006-02-21 22:12:05 +00009172 if (tp->tp_topframe == topframe)
9173 attr = attr_sel;
9174 if (use_sep_chars && col > 0)
9175 screen_putchar('|', 0, col++, attr);
9176
9177 if (tp->tp_topframe != topframe)
9178 attr = attr_nosel;
9179
9180 screen_putchar(' ', 0, col++, attr);
9181
9182 if (tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00009183 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00009184 cwp = curwin;
9185 wp = firstwin;
9186 }
9187 else
9188 {
9189 cwp = tp->tp_curwin;
9190 wp = tp->tp_firstwin;
9191 }
9192
9193 modified = FALSE;
9194 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
9195 if (bufIsChanged(wp->w_buffer))
9196 modified = TRUE;
9197 if (modified || wincount > 1)
9198 {
9199 if (wincount > 1)
9200 {
9201 vim_snprintf((char *)NameBuff, MAXPATHL, "%d", wincount);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009202 len = (int)STRLEN(NameBuff);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00009203 if (col + len >= Columns - 3)
9204 break;
Bram Moolenaar238a5642006-02-21 22:12:05 +00009205 screen_puts_len(NameBuff, len, 0, col,
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009206#if defined(FEAT_SYN_HL)
Bram Moolenaar238a5642006-02-21 22:12:05 +00009207 hl_combine_attr(attr, hl_attr(HLF_T))
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009208#else
Bram Moolenaar238a5642006-02-21 22:12:05 +00009209 attr
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009210#endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00009211 );
9212 col += len;
9213 }
9214 if (modified)
9215 screen_puts_len((char_u *)"+", 1, 0, col++, attr);
9216 screen_putchar(' ', 0, col++, attr);
9217 }
9218
9219 room = scol - col + tabwidth - 1;
9220 if (room > 0)
9221 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00009222 /* Get buffer name in NameBuff[] */
9223 get_trans_bufname(cwp->w_buffer);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00009224 shorten_dir(NameBuff);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009225 len = vim_strsize(NameBuff);
9226 p = NameBuff;
9227#ifdef FEAT_MBYTE
9228 if (has_mbyte)
9229 while (len > room)
9230 {
9231 len -= ptr2cells(p);
9232 mb_ptr_adv(p);
9233 }
9234 else
9235#endif
9236 if (len > room)
9237 {
9238 p += len - room;
9239 len = room;
9240 }
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00009241 if (len > Columns - col - 1)
9242 len = Columns - col - 1;
Bram Moolenaar238a5642006-02-21 22:12:05 +00009243
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009244 screen_puts_len(p, (int)STRLEN(p), 0, col, attr);
Bram Moolenaarf740b292006-02-16 22:11:02 +00009245 col += len;
9246 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00009247 screen_putchar(' ', 0, col++, attr);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009248
9249 /* Store the tab page number in TabPageIdxs[], so that
9250 * jump_to_mouse() knows where each one is. */
9251 ++tabcount;
9252 while (scol < col)
9253 TabPageIdxs[scol++] = tabcount;
Bram Moolenaarf740b292006-02-16 22:11:02 +00009254 }
9255
Bram Moolenaar238a5642006-02-21 22:12:05 +00009256 if (use_sep_chars)
9257 c = '_';
9258 else
9259 c = ' ';
9260 screen_fill(0, 1, col, (int)Columns, c, c, attr_fill);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009261
9262 /* Put an "X" for closing the current tab if there are several. */
9263 if (first_tabpage->tp_next != NULL)
9264 {
9265 screen_putchar('X', 0, (int)Columns - 1, attr_nosel);
9266 TabPageIdxs[Columns - 1] = -999;
9267 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009268 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +00009269
9270 /* Reset the flag here again, in case evaluating 'tabline' causes it to be
9271 * set. */
9272 redraw_tabline = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009273}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00009274
9275/*
9276 * Get buffer name for "buf" into NameBuff[].
9277 * Takes care of special buffer names and translates special characters.
9278 */
9279 void
9280get_trans_bufname(buf)
9281 buf_T *buf;
9282{
9283 if (buf_spname(buf) != NULL)
9284 STRCPY(NameBuff, buf_spname(buf));
9285 else
9286 home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
9287 trans_characters(NameBuff, MAXPATHL);
9288}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00009289#endif
9290
Bram Moolenaar071d4272004-06-13 20:20:40 +00009291#if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT)
9292/*
9293 * Get the character to use in a status line. Get its attributes in "*attr".
9294 */
9295 static int
9296fillchar_status(attr, is_curwin)
9297 int *attr;
9298 int is_curwin;
9299{
9300 int fill;
9301 if (is_curwin)
9302 {
9303 *attr = hl_attr(HLF_S);
9304 fill = fill_stl;
9305 }
9306 else
9307 {
9308 *attr = hl_attr(HLF_SNC);
9309 fill = fill_stlnc;
9310 }
9311 /* Use fill when there is highlighting, and highlighting of current
9312 * window differs, or the fillchars differ, or this is not the
9313 * current window */
9314 if (*attr != 0 && ((hl_attr(HLF_S) != hl_attr(HLF_SNC)
9315 || !is_curwin || firstwin == lastwin)
9316 || (fill_stl != fill_stlnc)))
9317 return fill;
9318 if (is_curwin)
9319 return '^';
9320 return '=';
9321}
9322#endif
9323
9324#ifdef FEAT_VERTSPLIT
9325/*
9326 * Get the character to use in a separator between vertically split windows.
9327 * Get its attributes in "*attr".
9328 */
9329 static int
9330fillchar_vsep(attr)
9331 int *attr;
9332{
9333 *attr = hl_attr(HLF_C);
9334 if (*attr == 0 && fill_vert == ' ')
9335 return '|';
9336 else
9337 return fill_vert;
9338}
9339#endif
9340
9341/*
9342 * Return TRUE if redrawing should currently be done.
9343 */
9344 int
9345redrawing()
9346{
9347 return (!RedrawingDisabled
9348 && !(p_lz && char_avail() && !KeyTyped && !do_redraw));
9349}
9350
9351/*
9352 * Return TRUE if printing messages should currently be done.
9353 */
9354 int
9355messaging()
9356{
9357 return (!(p_lz && char_avail() && !KeyTyped));
9358}
9359
9360/*
9361 * Show current status info in ruler and various other places
9362 * If always is FALSE, only show ruler if position has changed.
9363 */
9364 void
9365showruler(always)
9366 int always;
9367{
9368 if (!always && !redrawing())
9369 return;
Bram Moolenaar9372a112005-12-06 19:59:18 +00009370#ifdef FEAT_INS_EXPAND
9371 if (pum_visible())
9372 {
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00009373# ifdef FEAT_WINDOWS
Bram Moolenaar9372a112005-12-06 19:59:18 +00009374 /* Don't redraw right now, do it later. */
9375 curwin->w_redr_status = TRUE;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00009376# endif
Bram Moolenaar9372a112005-12-06 19:59:18 +00009377 return;
9378 }
9379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009380#if defined(FEAT_STL_OPT) && defined(FEAT_WINDOWS)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009381 if ((*p_stl != NUL || *curwin->w_p_stl != NUL) && curwin->w_status_height)
Bram Moolenaar238a5642006-02-21 22:12:05 +00009382 {
9383 redraw_custum_statusline(curwin);
9384 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009385 else
9386#endif
9387#ifdef FEAT_CMDL_INFO
9388 win_redr_ruler(curwin, always);
9389#endif
9390
9391#ifdef FEAT_TITLE
9392 if (need_maketitle
9393# ifdef FEAT_STL_OPT
9394 || (p_icon && (stl_syntax & STL_IN_ICON))
9395 || (p_title && (stl_syntax & STL_IN_TITLE))
9396# endif
9397 )
9398 maketitle();
9399#endif
Bram Moolenaar497683b2008-05-28 17:02:46 +00009400#ifdef FEAT_WINDOWS
9401 /* Redraw the tab pages line if needed. */
9402 if (redraw_tabline)
9403 draw_tabline();
9404#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009405}
9406
9407#ifdef FEAT_CMDL_INFO
9408 static void
9409win_redr_ruler(wp, always)
9410 win_T *wp;
9411 int always;
9412{
9413 char_u buffer[70];
9414 int row;
9415 int fillchar;
9416 int attr;
9417 int empty_line = FALSE;
9418 colnr_T virtcol;
9419 int i;
9420 int o;
9421#ifdef FEAT_VERTSPLIT
9422 int this_ru_col;
9423 int off = 0;
9424 int width = Columns;
9425# define WITH_OFF(x) x
9426# define WITH_WIDTH(x) x
9427#else
9428# define WITH_OFF(x) 0
9429# define WITH_WIDTH(x) Columns
9430# define this_ru_col ru_col
9431#endif
9432
9433 /* If 'ruler' off or redrawing disabled, don't do anything */
9434 if (!p_ru)
9435 return;
9436
9437 /*
9438 * Check if cursor.lnum is valid, since win_redr_ruler() may be called
9439 * after deleting lines, before cursor.lnum is corrected.
9440 */
9441 if (wp->w_cursor.lnum > wp->w_buffer->b_ml.ml_line_count)
9442 return;
9443
9444#ifdef FEAT_INS_EXPAND
9445 /* Don't draw the ruler while doing insert-completion, it might overwrite
9446 * the (long) mode message. */
9447# ifdef FEAT_WINDOWS
9448 if (wp == lastwin && lastwin->w_status_height == 0)
9449# endif
9450 if (edit_submode != NULL)
9451 return;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00009452 /* Don't draw the ruler when the popup menu is visible, it may overlap. */
9453 if (pum_visible())
9454 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009455#endif
9456
9457#ifdef FEAT_STL_OPT
9458 if (*p_ruf)
9459 {
Bram Moolenaar238a5642006-02-21 22:12:05 +00009460 int save_called_emsg = called_emsg;
9461
9462 called_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009463 win_redr_custom(wp, TRUE);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009464 if (called_emsg)
9465 set_string_option_direct((char_u *)"rulerformat", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00009466 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaar238a5642006-02-21 22:12:05 +00009467 called_emsg |= save_called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009468 return;
9469 }
9470#endif
9471
9472 /*
9473 * Check if not in Insert mode and the line is empty (will show "0-1").
9474 */
9475 if (!(State & INSERT)
9476 && *ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE) == NUL)
9477 empty_line = TRUE;
9478
9479 /*
9480 * Only draw the ruler when something changed.
9481 */
9482 validate_virtcol_win(wp);
9483 if ( redraw_cmdline
9484 || always
9485 || wp->w_cursor.lnum != wp->w_ru_cursor.lnum
9486 || wp->w_cursor.col != wp->w_ru_cursor.col
9487 || wp->w_virtcol != wp->w_ru_virtcol
9488#ifdef FEAT_VIRTUALEDIT
9489 || wp->w_cursor.coladd != wp->w_ru_cursor.coladd
9490#endif
9491 || wp->w_topline != wp->w_ru_topline
9492 || wp->w_buffer->b_ml.ml_line_count != wp->w_ru_line_count
9493#ifdef FEAT_DIFF
9494 || wp->w_topfill != wp->w_ru_topfill
9495#endif
9496 || empty_line != wp->w_ru_empty)
9497 {
9498 cursor_off();
9499#ifdef FEAT_WINDOWS
9500 if (wp->w_status_height)
9501 {
9502 row = W_WINROW(wp) + wp->w_height;
9503 fillchar = fillchar_status(&attr, wp == curwin);
9504# ifdef FEAT_VERTSPLIT
9505 off = W_WINCOL(wp);
9506 width = W_WIDTH(wp);
9507# endif
9508 }
9509 else
9510#endif
9511 {
9512 row = Rows - 1;
9513 fillchar = ' ';
9514 attr = 0;
9515#ifdef FEAT_VERTSPLIT
9516 width = Columns;
9517 off = 0;
9518#endif
9519 }
9520
9521 /* In list mode virtcol needs to be recomputed */
9522 virtcol = wp->w_virtcol;
9523 if (wp->w_p_list && lcs_tab1 == NUL)
9524 {
9525 wp->w_p_list = FALSE;
9526 getvvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
9527 wp->w_p_list = TRUE;
9528 }
9529
9530 /*
9531 * Some sprintfs return the length, some return a pointer.
9532 * To avoid portability problems we use strlen() here.
9533 */
9534 sprintf((char *)buffer, "%ld,",
9535 (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
9536 ? 0L
9537 : (long)(wp->w_cursor.lnum));
9538 col_print(buffer + STRLEN(buffer),
9539 empty_line ? 0 : (int)wp->w_cursor.col + 1,
9540 (int)virtcol + 1);
9541
9542 /*
9543 * Add a "50%" if there is room for it.
9544 * On the last line, don't print in the last column (scrolls the
9545 * screen up on some terminals).
9546 */
9547 i = (int)STRLEN(buffer);
9548 get_rel_pos(wp, buffer + i + 1);
9549 o = i + vim_strsize(buffer + i + 1);
9550#ifdef FEAT_WINDOWS
9551 if (wp->w_status_height == 0) /* can't use last char of screen */
9552#endif
9553 ++o;
9554#ifdef FEAT_VERTSPLIT
9555 this_ru_col = ru_col - (Columns - width);
9556 if (this_ru_col < 0)
9557 this_ru_col = 0;
9558#endif
9559 /* Never use more than half the window/screen width, leave the other
9560 * half for the filename. */
9561 if (this_ru_col < (WITH_WIDTH(width) + 1) / 2)
9562 this_ru_col = (WITH_WIDTH(width) + 1) / 2;
9563 if (this_ru_col + o < WITH_WIDTH(width))
9564 {
9565 while (this_ru_col + o < WITH_WIDTH(width))
9566 {
9567#ifdef FEAT_MBYTE
9568 if (has_mbyte)
9569 i += (*mb_char2bytes)(fillchar, buffer + i);
9570 else
9571#endif
9572 buffer[i++] = fillchar;
9573 ++o;
9574 }
9575 get_rel_pos(wp, buffer + i);
9576 }
9577 /* Truncate at window boundary. */
9578#ifdef FEAT_MBYTE
9579 if (has_mbyte)
9580 {
9581 o = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009582 for (i = 0; buffer[i] != NUL; i += (*mb_ptr2len)(buffer + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009583 {
9584 o += (*mb_ptr2cells)(buffer + i);
9585 if (this_ru_col + o > WITH_WIDTH(width))
9586 {
9587 buffer[i] = NUL;
9588 break;
9589 }
9590 }
9591 }
9592 else
9593#endif
9594 if (this_ru_col + (int)STRLEN(buffer) > WITH_WIDTH(width))
9595 buffer[WITH_WIDTH(width) - this_ru_col] = NUL;
9596
9597 screen_puts(buffer, row, this_ru_col + WITH_OFF(off), attr);
9598 i = redraw_cmdline;
9599 screen_fill(row, row + 1,
9600 this_ru_col + WITH_OFF(off) + (int)STRLEN(buffer),
9601 (int)(WITH_OFF(off) + WITH_WIDTH(width)),
9602 fillchar, fillchar, attr);
9603 /* don't redraw the cmdline because of showing the ruler */
9604 redraw_cmdline = i;
9605 wp->w_ru_cursor = wp->w_cursor;
9606 wp->w_ru_virtcol = wp->w_virtcol;
9607 wp->w_ru_empty = empty_line;
9608 wp->w_ru_topline = wp->w_topline;
9609 wp->w_ru_line_count = wp->w_buffer->b_ml.ml_line_count;
9610#ifdef FEAT_DIFF
9611 wp->w_ru_topfill = wp->w_topfill;
9612#endif
9613 }
9614}
9615#endif
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009616
9617#if defined(FEAT_LINEBREAK) || defined(PROTO)
9618/*
9619 * Return the width of the 'number' column.
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00009620 * Caller may need to check if 'number' is set.
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009621 * Otherwise it depends on 'numberwidth' and the line count.
9622 */
9623 int
9624number_width(wp)
9625 win_T *wp;
9626{
9627 int n;
9628 linenr_T lnum;
9629
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009630 lnum = wp->w_buffer->b_ml.ml_line_count;
9631 if (lnum == wp->w_nrwidth_line_count)
9632 return wp->w_nrwidth_width;
9633 wp->w_nrwidth_line_count = lnum;
9634
9635 n = 0;
9636 do
9637 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009638 lnum /= 10;
9639 ++n;
Bram Moolenaar592e0a22004-07-03 16:05:59 +00009640 } while (lnum > 0);
9641
9642 /* 'numberwidth' gives the minimal width plus one */
9643 if (n < wp->w_p_nuw - 1)
9644 n = wp->w_p_nuw - 1;
9645
9646 wp->w_nrwidth_width = n;
9647 return n;
9648}
9649#endif