annotate src/terminal.c @ 11840:3c1f89d85151 v8.0.0800

patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891) commit https://github.com/vim/vim/commit/696d00f488dc0599692993f226a7dd95a187920d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 29 14:52:43 2017 +0200 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes https://github.com/vim/vim/issues/1891)
author Christian Brabandt <cb@256bit.org>
date Sat, 29 Jul 2017 15:00:04 +0200
parents e6080ed193f6
children 6bfcedcc0262
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 *
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 *
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 /*
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 * Terminal window support, see ":help :terminal".
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 *
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
13 * There are three parts:
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
14 * 1. Generic code for all systems.
11741
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
15 * Uses libvterm for the terminal emulator.
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
16 * 2. The MS-Windows implementation.
11741
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
17 * Uses winpty.
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
18 * 3. The Unix-like implementation.
11741
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
19 * Uses pseudo-tty's (pty's).
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
20 *
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
21 * For each terminal one VTerm is constructed. This uses libvterm. A copy of
11836
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
22 * this library is in the libvterm directory.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 *
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
24 * When a terminal window is opened, a job is started that will be connected to
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
25 * the terminal emulator.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 *
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 * If the terminal window has keyboard focus, typed keys are converted to the
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
28 * terminal encoding and writing to the job over a channel.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29 *
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
30 * If the job produces output, it is written to the terminal emulator. The
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
31 * terminal emulator invokes callbacks when its screen content changes. The
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
32 * line range is stored in tl_dirty_row_start and tl_dirty_row_end. Once in a
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
33 * while, if the terminal window is visible, the screen contents is drawn.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 *
11836
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
35 * When the job ends the text is put in a buffer. Redrawing then happens from
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
36 * that buffer, attributes come from the scrollback buffer tl_scrollback.
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
37 *
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 * TODO:
11836
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
39 * - Patch for functions: Yasuhiro Matsumoto, #1871
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
40 * - For the scrollback buffer store lines in the buffer, only attributes in
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
41 * tl_scrollback.
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
42 * - When the job ends:
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
43 * - Need an option or argument to drop the window+buffer right away, to be
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
44 * used for a shell or Vim.
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
45 * - To set BS correctly, check get_stty(); Pass the fd of the pty.
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
46 * - do not store terminal buffer in viminfo. Or prefix term:// ?
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
47 * - add a character in :ls output
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
48 * - when closing window and job has not ended, make terminal hidden?
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
49 * - when closing window and job has ended, make buffer hidden?
11725
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
50 * - don't allow exiting Vim when a terminal is still running a job
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
51 * - use win_del_lines() to make scroll-up efficient.
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
52 * - add test for giving error for invalid 'termsize' value.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
53 * - support minimal size when 'termsize' is "rows*cols".
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
54 * - support minimal size when 'termsize' is empty?
11723
1922710ee8fa patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents: 11719
diff changeset
55 * - implement "term" for job_start(): more job options when starting a
1922710ee8fa patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents: 11719
diff changeset
56 * terminal.
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
57 * - implement term_list() list of buffers with a terminal
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
58 * - implement term_getsize(buf)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
59 * - implement term_setsize(buf)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
60 * - implement term_sendkeys(buf, keys) send keystrokes to a terminal
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
61 * - implement term_wait(buf) wait for screen to be updated
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
62 * - implement term_scrape(buf, row) inspect terminal screen
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
63 * - implement term_open(command, options) open terminal window
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
64 * - implement term_getjob(buf)
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
65 * - when 'encoding' is not utf-8, or the job is using another encoding, setup
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
66 * conversions.
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
67 * - In the GUI use a terminal emulator for :!cmd.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
68 */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
70 #include "vim.h"
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
71
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
72 #ifdef FEAT_TERMINAL
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
73
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
74 #ifdef WIN3264
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
75 # define MIN(x,y) (x < y ? x : y)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
76 # define MAX(x,y) (x > y ? x : y)
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
77 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
79 #include "libvterm/include/vterm.h"
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
80
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
81 typedef struct sb_line_S {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
82 int sb_cols; /* can differ per line */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
83 VTermScreenCell *sb_cells; /* allocated */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
84 } sb_line_T;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
85
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
86 /* typedef term_T in structs.h */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
87 struct terminal_S {
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
88 term_T *tl_next;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
89
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
90 #ifdef WIN3264
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
91 void *tl_winpty_config;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
92 void *tl_winpty;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
93 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94 VTerm *tl_vterm;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95 job_T *tl_job;
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
96 buf_T *tl_buffer;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
98 /* last known vterm size */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
99 int tl_rows;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
100 int tl_cols;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
101 /* vterm size does not follow window size */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
102 int tl_rows_fixed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
103 int tl_cols_fixed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
104
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
105 char_u *tl_title; /* NULL or allocated */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
106 char_u *tl_status_text; /* NULL or allocated */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
107
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
108 /* Range of screen rows to update. Zero based. */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109 int tl_dirty_row_start; /* -1 if nothing dirty */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110 int tl_dirty_row_end; /* row below last one to update */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
112 garray_T tl_scrollback;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
113
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 pos_T tl_cursor;
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
115 int tl_cursor_visible;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
116 };
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
117
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
118 /*
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
119 * List of all active terminals.
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
120 */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
121 static term_T *first_term = NULL;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
122
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
123
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
124 #define MAX_ROW 999999 /* used for tl_dirty_row_end to update all rows */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
125 #define KEY_BUF_LEN 200
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
126
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
127 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
128 * Functions with separate implementation for MS-Windows and Unix-like systems.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
129 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
130 static int term_and_job_init(term_T *term, int rows, int cols, char_u *cmd);
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
131 static void term_report_winsize(term_T *term, int rows, int cols);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
132 static void term_free_vterm(term_T *term);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
133
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
134 /**************************************
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
135 * 1. Generic code for all systems.
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
136 */
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
137
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
138 /*
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
139 * Determine the terminal size from 'termsize' and the current window.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
140 * Assumes term->tl_rows and term->tl_cols are zero.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
141 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
142 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
143 set_term_and_win_size(term_T *term)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
144 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
145 if (*curwin->w_p_tms != NUL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
146 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
147 char_u *p = vim_strchr(curwin->w_p_tms, 'x') + 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
148
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
149 term->tl_rows = atoi((char *)curwin->w_p_tms);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
150 term->tl_cols = atoi((char *)p);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
151 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
152 if (term->tl_rows == 0)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
153 term->tl_rows = curwin->w_height;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
154 else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
155 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
156 win_setheight_win(term->tl_rows, curwin);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
157 term->tl_rows_fixed = TRUE;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
158 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
159 if (term->tl_cols == 0)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
160 term->tl_cols = curwin->w_width;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
161 else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
162 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
163 win_setwidth_win(term->tl_cols, curwin);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
164 term->tl_cols_fixed = TRUE;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
165 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
166 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
167
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
168 /*
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
169 * ":terminal": open a terminal window and execute a job in it.
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
170 */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
171 void
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
172 ex_terminal(exarg_T *eap)
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
173 {
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
174 exarg_T split_ea;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
175 win_T *old_curwin = curwin;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
176 term_T *term;
11729
1c8ec1029233 patch 8.0.0747: :terminal without an argument doesn't work
Christian Brabandt <cb@256bit.org>
parents: 11727
diff changeset
177 char_u *cmd = eap->arg;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
178
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
179 if (check_restricted() || check_secure())
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
180 return;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
181
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
182 term = (term_T *)alloc_clear(sizeof(term_T));
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
183 if (term == NULL)
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
184 return;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
185 term->tl_dirty_row_end = MAX_ROW;
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
186 term->tl_cursor_visible = TRUE;
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
187 ga_init2(&term->tl_scrollback, sizeof(sb_line_T), 300);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
188
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
189 /* Open a new window or tab. */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
190 vim_memset(&split_ea, 0, sizeof(split_ea));
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
191 split_ea.cmdidx = CMD_new;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
192 split_ea.cmd = (char_u *)"new";
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
193 split_ea.arg = (char_u *)"";
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
194 ex_splitview(&split_ea);
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
195 if (curwin == old_curwin)
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
196 {
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
197 /* split failed */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
198 vim_free(term);
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
199 return;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
200 }
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
201 term->tl_buffer = curbuf;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
202 curbuf->b_term = term;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
203
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
204 /* Link the new terminal in the list of active terminals. */
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
205 term->tl_next = first_term;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
206 first_term = term;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
207
11794
2e7e77e28063 patch 8.0.0779: :term without an argument uses empty buffer name
Christian Brabandt <cb@256bit.org>
parents: 11792
diff changeset
208 if (cmd == NULL || *cmd == NUL)
2e7e77e28063 patch 8.0.0779: :term without an argument uses empty buffer name
Christian Brabandt <cb@256bit.org>
parents: 11792
diff changeset
209 cmd = p_sh;
2e7e77e28063 patch 8.0.0779: :term without an argument uses empty buffer name
Christian Brabandt <cb@256bit.org>
parents: 11792
diff changeset
210
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
211 if (buflist_findname(cmd) == NULL)
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
212 curbuf->b_ffname = vim_strsave(cmd);
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
213 else
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
214 {
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
215 int i;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
216 size_t len = STRLEN(cmd) + 10;
11790
4dfebc1b2674 patch 8.0.0777: compiler warnings with 64 bit compiler
Christian Brabandt <cb@256bit.org>
parents: 11786
diff changeset
217 char_u *p = alloc((int)len);
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
218
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
219 for (i = 1; p != NULL; ++i)
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
220 {
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
221 vim_snprintf((char *)p, len, "%s (%d)", cmd, i);
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
222 if (buflist_findname(p) == NULL)
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
223 {
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
224 curbuf->b_ffname = p;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
225 break;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
226 }
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
227 }
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
228 }
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
229 curbuf->b_fname = curbuf->b_ffname;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
230
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
231 /* Mark the buffer as changed, so that it's not easy to abandon the job. */
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
232 curbuf->b_changed = TRUE;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
233 curbuf->b_p_ma = FALSE;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
234 set_string_option_direct((char_u *)"buftype", -1,
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
235 (char_u *)"terminal", OPT_FREE|OPT_LOCAL, 0);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
236
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
237 set_term_and_win_size(term);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
238
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
239 /* System dependent: setup the vterm and start the job in it. */
11729
1c8ec1029233 patch 8.0.0747: :terminal without an argument doesn't work
Christian Brabandt <cb@256bit.org>
parents: 11727
diff changeset
240 if (term_and_job_init(term, term->tl_rows, term->tl_cols, cmd) == OK)
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
241 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
242 /* store the size we ended up with */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
243 vterm_get_size(term->tl_vterm, &term->tl_rows, &term->tl_cols);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
244 }
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
245 else
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
246 {
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
247 free_terminal(curbuf);
11727
cb1dc90d22cc patch 8.0.0746: when :term fails the job is not properly cleaned up
Christian Brabandt <cb@256bit.org>
parents: 11725
diff changeset
248
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
249 /* Wiping out the buffer will also close the window and call
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
250 * free_terminal(). */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
251 do_buffer(DOBUF_WIPE, DOBUF_CURRENT, FORWARD, 0, TRUE);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
252 }
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
253
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
254 /* TODO: Setup pty, see mch_call_shell(). */
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
255 }
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
256
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
257 /*
11836
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
258 * Free the scrollback buffer for "term".
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
259 */
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
260 static void
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
261 free_scrollback(term_T *term)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
262 {
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
263 int i;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
264
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
265 for (i = 0; i < term->tl_scrollback.ga_len; ++i)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
266 vim_free(((sb_line_T *)term->tl_scrollback.ga_data + i)->sb_cells);
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
267 ga_clear(&term->tl_scrollback);
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
268 }
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
269
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
270 /*
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
271 * Free a terminal and everything it refers to.
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
272 * Kills the job if there is one.
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
273 * Called when wiping out a buffer.
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
274 */
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
275 void
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
276 free_terminal(buf_T *buf)
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
277 {
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
278 term_T *term = buf->b_term;
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
279 term_T *tp;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
280
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
281 if (term == NULL)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
282 return;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
283 if (first_term == term)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
284 first_term = term->tl_next;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
285 else
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
286 for (tp = first_term; tp->tl_next != NULL; tp = tp->tl_next)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
287 if (tp->tl_next == term)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
288 {
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
289 tp->tl_next = term->tl_next;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
290 break;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
291 }
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
292
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
293 if (term->tl_job != NULL)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
294 {
11727
cb1dc90d22cc patch 8.0.0746: when :term fails the job is not properly cleaned up
Christian Brabandt <cb@256bit.org>
parents: 11725
diff changeset
295 if (term->tl_job->jv_status != JOB_ENDED
cb1dc90d22cc patch 8.0.0746: when :term fails the job is not properly cleaned up
Christian Brabandt <cb@256bit.org>
parents: 11725
diff changeset
296 && term->tl_job->jv_status != JOB_FAILED)
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
297 job_stop(term->tl_job, NULL, "kill");
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
298 job_unref(term->tl_job);
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
299 }
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
300
11836
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
301 free_scrollback(term);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
302
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
303 term_free_vterm(term);
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
304 vim_free(term->tl_title);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
305 vim_free(term->tl_status_text);
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
306 vim_free(term);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
307 buf->b_term = NULL;
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
308 }
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
309
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
310 /*
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
311 * Write job output "msg[len]" to the vterm.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
312 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
313 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
314 term_write_job_output(term_T *term, char_u *msg, size_t len)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
315 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
316 VTerm *vterm = term->tl_vterm;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
317 char_u *p;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
318 size_t done;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
319 size_t len_now;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
320
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
321 for (done = 0; done < len; done += len_now)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
322 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
323 for (p = msg + done; p < msg + len; )
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
324 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
325 if (*p == NL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
326 break;
11790
4dfebc1b2674 patch 8.0.0777: compiler warnings with 64 bit compiler
Christian Brabandt <cb@256bit.org>
parents: 11786
diff changeset
327 p += utf_ptr2len_len(p, (int)(len - (p - msg)));
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
328 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
329 len_now = p - msg - done;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
330 vterm_input_write(vterm, (char *)msg + done, len_now);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
331 if (p < msg + len && *p == NL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
332 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
333 /* Convert NL to CR-NL, that appears to work best. */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
334 vterm_input_write(vterm, "\r\n", 2);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
335 ++len_now;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
336 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
337 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
338
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
339 /* this invokes the damage callbacks */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
340 vterm_screen_flush_damage(vterm_obtain_screen(vterm));
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
341 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
342
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
343 static void
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
344 update_cursor(term_T *term, int redraw)
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
345 {
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
346 setcursor();
11792
4bc1f94afc34 patch 8.0.0778: in a terminal the cursor may be hidden
Christian Brabandt <cb@256bit.org>
parents: 11790
diff changeset
347 if (redraw && term->tl_buffer == curbuf)
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
348 {
11792
4bc1f94afc34 patch 8.0.0778: in a terminal the cursor may be hidden
Christian Brabandt <cb@256bit.org>
parents: 11790
diff changeset
349 if (term->tl_cursor_visible)
4bc1f94afc34 patch 8.0.0778: in a terminal the cursor may be hidden
Christian Brabandt <cb@256bit.org>
parents: 11790
diff changeset
350 cursor_on();
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
351 out_flush();
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
352 #ifdef FEAT_GUI
11792
4bc1f94afc34 patch 8.0.0778: in a terminal the cursor may be hidden
Christian Brabandt <cb@256bit.org>
parents: 11790
diff changeset
353 if (gui.in_use && term->tl_cursor_visible)
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
354 gui_update_cursor(FALSE, FALSE);
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
355 #endif
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
356 }
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
357 }
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
358
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
359 /*
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
360 * Invoked when "msg" output from a job was received. Write it to the terminal
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
361 * of "buffer".
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
362 */
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
363 void
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
364 write_to_term(buf_T *buffer, char_u *msg, channel_T *channel)
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
365 {
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
366 size_t len = STRLEN(msg);
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
367 term_T *term = buffer->b_term;
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
368
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
369 if (term->tl_vterm == NULL)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
370 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
371 ch_logn(channel, "NOT writing %d bytes to terminal", (int)len);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
372 return;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
373 }
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
374 ch_logn(channel, "writing %d bytes to terminal", (int)len);
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
375 term_write_job_output(term, msg, len);
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
376
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
377 /* TODO: only update once in a while. */
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
378 update_screen(0);
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
379 update_cursor(term, TRUE);
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
380 }
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
381
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
382 /*
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
383 * Convert typed key "c" into bytes to send to the job.
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
384 * Return the number of bytes in "buf".
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
385 */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
386 static int
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
387 term_convert_key(int c, char *buf)
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
388 {
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
389 VTerm *vterm = curbuf->b_term->tl_vterm;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
390 VTermKey key = VTERM_KEY_NONE;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
391 VTermModifier mod = VTERM_MOD_NONE;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
392
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
393 switch (c)
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
394 {
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
395 case CAR: key = VTERM_KEY_ENTER; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
396 case ESC: key = VTERM_KEY_ESCAPE; break;
11715
d7430b56c9ed patch 8.0.0740: cannot resize a terminal window by the command
Christian Brabandt <cb@256bit.org>
parents: 11713
diff changeset
397 /* VTERM_KEY_BACKSPACE becomes 0x7f DEL */
d7430b56c9ed patch 8.0.0740: cannot resize a terminal window by the command
Christian Brabandt <cb@256bit.org>
parents: 11713
diff changeset
398 case K_BS: c = BS; break;
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
399 case K_DEL: key = VTERM_KEY_DEL; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
400 case K_DOWN: key = VTERM_KEY_DOWN; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
401 case K_END: key = VTERM_KEY_END; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
402 case K_F10: key = VTERM_KEY_FUNCTION(10); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
403 case K_F11: key = VTERM_KEY_FUNCTION(11); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
404 case K_F12: key = VTERM_KEY_FUNCTION(12); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
405 case K_F1: key = VTERM_KEY_FUNCTION(1); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
406 case K_F2: key = VTERM_KEY_FUNCTION(2); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
407 case K_F3: key = VTERM_KEY_FUNCTION(3); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
408 case K_F4: key = VTERM_KEY_FUNCTION(4); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
409 case K_F5: key = VTERM_KEY_FUNCTION(5); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
410 case K_F6: key = VTERM_KEY_FUNCTION(6); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
411 case K_F7: key = VTERM_KEY_FUNCTION(7); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
412 case K_F8: key = VTERM_KEY_FUNCTION(8); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
413 case K_F9: key = VTERM_KEY_FUNCTION(9); break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
414 case K_HOME: key = VTERM_KEY_HOME; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
415 case K_INS: key = VTERM_KEY_INS; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
416 case K_K0: key = VTERM_KEY_KP_0; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
417 case K_K1: key = VTERM_KEY_KP_1; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
418 case K_K2: key = VTERM_KEY_KP_2; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
419 case K_K3: key = VTERM_KEY_KP_3; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
420 case K_K4: key = VTERM_KEY_KP_4; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
421 case K_K5: key = VTERM_KEY_KP_5; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
422 case K_K6: key = VTERM_KEY_KP_6; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
423 case K_K7: key = VTERM_KEY_KP_7; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
424 case K_K8: key = VTERM_KEY_KP_8; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
425 case K_K9: key = VTERM_KEY_KP_9; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
426 case K_KDEL: key = VTERM_KEY_DEL; break; /* TODO */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
427 case K_KDIVIDE: key = VTERM_KEY_KP_DIVIDE; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
428 case K_KEND: key = VTERM_KEY_KP_1; break; /* TODO */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
429 case K_KENTER: key = VTERM_KEY_KP_ENTER; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
430 case K_KHOME: key = VTERM_KEY_KP_7; break; /* TODO */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
431 case K_KINS: key = VTERM_KEY_KP_0; break; /* TODO */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
432 case K_KMINUS: key = VTERM_KEY_KP_MINUS; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
433 case K_KMULTIPLY: key = VTERM_KEY_KP_MULT; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
434 case K_KPAGEDOWN: key = VTERM_KEY_KP_3; break; /* TODO */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
435 case K_KPAGEUP: key = VTERM_KEY_KP_9; break; /* TODO */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
436 case K_KPLUS: key = VTERM_KEY_KP_PLUS; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
437 case K_KPOINT: key = VTERM_KEY_KP_PERIOD; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
438 case K_LEFT: key = VTERM_KEY_LEFT; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
439 case K_PAGEDOWN: key = VTERM_KEY_PAGEDOWN; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
440 case K_PAGEUP: key = VTERM_KEY_PAGEUP; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
441 case K_RIGHT: key = VTERM_KEY_RIGHT; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
442 case K_UP: key = VTERM_KEY_UP; break;
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
443 case TAB: key = VTERM_KEY_TAB; break;
11711
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
444
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
445 case K_MOUSEUP: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
446 case K_MOUSEDOWN: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
447 case K_MOUSELEFT: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
448 case K_MOUSERIGHT: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
449
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
450 case K_LEFTMOUSE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
451 case K_LEFTMOUSE_NM: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
452 case K_LEFTDRAG: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
453 case K_LEFTRELEASE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
454 case K_LEFTRELEASE_NM: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
455 case K_MIDDLEMOUSE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
456 case K_MIDDLEDRAG: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
457 case K_MIDDLERELEASE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
458 case K_RIGHTMOUSE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
459 case K_RIGHTDRAG: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
460 case K_RIGHTRELEASE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
461 case K_X1MOUSE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
462 case K_X1DRAG: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
463 case K_X1RELEASE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
464 case K_X2MOUSE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
465 case K_X2DRAG: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
466 case K_X2RELEASE: /* TODO */ break;
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
467
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
468 /* TODO: handle all special keys and modifiers that terminal_loop()
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
469 * does not handle. */
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
470 }
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
471
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
472 /*
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
473 * Convert special keys to vterm keys:
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
474 * - Write keys to vterm: vterm_keyboard_key()
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
475 * - Write output to channel.
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
476 */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
477 if (key != VTERM_KEY_NONE)
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
478 /* Special key, let vterm convert it. */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
479 vterm_keyboard_key(vterm, key, mod);
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
480 else
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
481 /* Normal character, let vterm convert it. */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
482 vterm_keyboard_unichar(vterm, c, mod);
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
483
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
484 /* Read back the converted escape sequence. */
11790
4dfebc1b2674 patch 8.0.0777: compiler warnings with 64 bit compiler
Christian Brabandt <cb@256bit.org>
parents: 11786
diff changeset
485 return (int)vterm_output_read(vterm, buf, KEY_BUF_LEN);
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
486 }
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
487
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
488 /*
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
489 * Return TRUE if the job for "buf" is still running.
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
490 */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
491 static int
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
492 term_job_running(term_T *term)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
493 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
494 return term->tl_job != NULL && term->tl_job->jv_status == JOB_STARTED;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
495 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
496
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
497 /*
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
498 * Get a key from the user without mapping.
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
499 * TODO: use terminal mode mappings.
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
500 */
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
501 static int
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
502 term_vgetc()
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
503 {
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
504 int c;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
505
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
506 ++no_mapping;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
507 ++allow_keys;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
508 got_int = FALSE;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
509 c = vgetc();
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
510 --no_mapping;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
511 --allow_keys;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
512 return c;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
513 }
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
514
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
515 /*
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
516 * Wait for input and send it to the job.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
517 * Return when the start of a CTRL-W command is typed or anything else that
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
518 * should be handled as a Normal mode command.
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
519 * Returns OK if a typed character is to be handled in Normal mode, FAIL if
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
520 * the terminal was closed.
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
521 */
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
522 int
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
523 terminal_loop(void)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
524 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
525 char buf[KEY_BUF_LEN];
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
526 int c;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
527 size_t len;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
528 static int mouse_was_outside = FALSE;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
529 int dragging_outside = FALSE;
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
530 int termkey = 0;
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
531
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
532 if (curbuf->b_term->tl_vterm == NULL || !term_job_running(curbuf->b_term))
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
533 /* job finished */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
534 return OK;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
535
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
536 if (*curwin->w_p_tk != NUL)
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
537 termkey = string_to_key(curwin->w_p_tk, TRUE);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
538
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
539 for (;;)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
540 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
541 /* TODO: skip screen update when handling a sequence of keys. */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
542 update_screen(0);
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
543 update_cursor(curbuf->b_term, FALSE);
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
544 c = term_vgetc();
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
545 if (curbuf->b_term->tl_vterm == NULL
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
546 || !term_job_running(curbuf->b_term))
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
547 /* job finished while waiting for a character */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
548 break;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
549
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
550 if (c == (termkey == 0 ? Ctrl_W : termkey))
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
551 {
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
552 #ifdef FEAT_CMDL_INFO
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
553 if (add_to_showcmd(c))
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
554 out_flush();
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
555 #endif
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
556 c = term_vgetc();
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
557 #ifdef FEAT_CMDL_INFO
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
558 clear_showcmd();
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
559 #endif
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
560 if (curbuf->b_term->tl_vterm == NULL
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
561 || !term_job_running(curbuf->b_term))
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
562 /* job finished while waiting for a character */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
563 break;
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
564
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
565 if (termkey == 0 && c == '.')
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
566 /* "CTRL-W .": send CTRL-W to the job */
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
567 c = Ctrl_W;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
568 else if (termkey == 0 || c != termkey)
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
569 {
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
570 stuffcharReadbuff(Ctrl_W);
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
571 stuffcharReadbuff(c);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
572 return OK;
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
573 }
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
574 }
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
575
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
576 /* Catch keys that need to be handled as in Normal mode. */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
577 switch (c)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
578 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
579 case NUL:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
580 case K_ZERO:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
581 stuffcharReadbuff(c);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
582 return OK;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
583
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
584 case K_IGNORE: continue;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
585
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
586 case K_LEFTDRAG:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
587 case K_MIDDLEDRAG:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
588 case K_RIGHTDRAG:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
589 case K_X1DRAG:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
590 case K_X2DRAG:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
591 dragging_outside = mouse_was_outside;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
592 /* FALLTHROUGH */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
593 case K_LEFTMOUSE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
594 case K_LEFTMOUSE_NM:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
595 case K_LEFTRELEASE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
596 case K_LEFTRELEASE_NM:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
597 case K_MIDDLEMOUSE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
598 case K_MIDDLERELEASE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
599 case K_RIGHTMOUSE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
600 case K_RIGHTRELEASE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
601 case K_X1MOUSE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
602 case K_X1RELEASE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
603 case K_X2MOUSE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
604 case K_X2RELEASE:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
605 if (mouse_row < W_WINROW(curwin)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
606 || mouse_row >= (W_WINROW(curwin) + curwin->w_height)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
607 || mouse_col < W_WINCOL(curwin)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
608 || mouse_col >= W_ENDCOL(curwin)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
609 || dragging_outside)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
610 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
611 /* click outside the current window */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
612 stuffcharReadbuff(c);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
613 mouse_was_outside = TRUE;
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
614 return OK;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
615 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
616 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
617 mouse_was_outside = FALSE;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
618
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
619 /* Convert the typed key to a sequence of bytes for the job. */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
620 len = term_convert_key(c, buf);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
621 if (len > 0)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
622 /* TODO: if FAIL is returned, stop? */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
623 channel_send(curbuf->b_term->tl_job->jv_channel, PART_IN,
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
624 (char_u *)buf, (int)len, NULL);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
625 }
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
626 return FAIL;
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
627 }
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
628
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
629 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
630 position_cursor(win_T *wp, VTermPos *pos)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
631 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
632 wp->w_wrow = MIN(pos->row, MAX(0, wp->w_height - 1));
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
633 wp->w_wcol = MIN(pos->col, MAX(0, wp->w_width - 1));
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
634 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
635
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
636 static void
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
637 may_toggle_cursor(term_T *term)
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
638 {
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
639 if (curbuf == term->tl_buffer)
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
640 {
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
641 if (term->tl_cursor_visible)
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
642 cursor_on();
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
643 else
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
644 cursor_off();
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
645 }
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
646 }
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
647
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
648 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
649 handle_damage(VTermRect rect, void *user)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
650 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
651 term_T *term = (term_T *)user;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
652
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
653 term->tl_dirty_row_start = MIN(term->tl_dirty_row_start, rect.start_row);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
654 term->tl_dirty_row_end = MAX(term->tl_dirty_row_end, rect.end_row);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
655 redraw_buf_later(term->tl_buffer, NOT_VALID);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
656 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
657 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
658
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
659 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
660 handle_moverect(VTermRect dest UNUSED, VTermRect src UNUSED, void *user)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
661 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
662 term_T *term = (term_T *)user;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
663
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
664 /* TODO */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
665 redraw_buf_later(term->tl_buffer, NOT_VALID);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
666 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
667 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
668
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
669 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
670 handle_movecursor(
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
671 VTermPos pos,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
672 VTermPos oldpos UNUSED,
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
673 int visible,
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
674 void *user)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
675 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
676 term_T *term = (term_T *)user;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
677 win_T *wp;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
678 int is_current = FALSE;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
679
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
680 FOR_ALL_WINDOWS(wp)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
681 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
682 if (wp->w_buffer == term->tl_buffer)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
683 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
684 position_cursor(wp, &pos);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
685 if (wp == curwin)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
686 is_current = TRUE;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
687 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
688 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
689
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
690 term->tl_cursor_visible = visible;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
691 if (is_current)
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
692 {
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
693 may_toggle_cursor(term);
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
694 update_cursor(term, TRUE);
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
695 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
696
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
697 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
698 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
699
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
700 static int
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
701 handle_settermprop(
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
702 VTermProp prop,
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
703 VTermValue *value,
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
704 void *user)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
705 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
706 term_T *term = (term_T *)user;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
707
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
708 switch (prop)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
709 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
710 case VTERM_PROP_TITLE:
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
711 vim_free(term->tl_title);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
712 term->tl_title = vim_strsave((char_u *)value->string);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
713 vim_free(term->tl_status_text);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
714 term->tl_status_text = NULL;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
715 if (term == curbuf->b_term)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
716 maketitle();
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
717 break;
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
718
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
719 case VTERM_PROP_CURSORVISIBLE:
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
720 term->tl_cursor_visible = value->boolean;
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
721 may_toggle_cursor(term);
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
722 out_flush();
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
723 break;
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
724
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
725 default:
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
726 break;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
727 }
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
728 /* Always return 1, otherwise vterm doesn't store the value internally. */
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
729 return 1;
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
730 }
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
731
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
732 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
733 * The job running in the terminal resized the terminal.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
734 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
735 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
736 handle_resize(int rows, int cols, void *user)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
737 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
738 term_T *term = (term_T *)user;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
739 win_T *wp;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
740
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
741 term->tl_rows = rows;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
742 term->tl_cols = cols;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
743 FOR_ALL_WINDOWS(wp)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
744 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
745 if (wp->w_buffer == term->tl_buffer)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
746 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
747 win_setheight_win(rows, wp);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
748 win_setwidth_win(cols, wp);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
749 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
750 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
751
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
752 redraw_buf_later(term->tl_buffer, NOT_VALID);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
753 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
754 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
755
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
756 /*
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
757 * Handle a line that is pushed off the top of the screen.
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
758 */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
759 static int
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
760 handle_pushline(int cols, const VTermScreenCell *cells, void *user)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
761 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
762 term_T *term = (term_T *)user;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
763
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
764 /* TODO: Limit the number of lines that are stored. */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
765 /* TODO: put the text in the buffer. */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
766 if (ga_grow(&term->tl_scrollback, 1) == OK)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
767 {
11840
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
768 VTermScreenCell *p = NULL;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
769 int len = 0;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
770 int i;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
771 sb_line_T *line;
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
772
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
773 /* do not store empty cells at the end */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
774 for (i = 0; i < cols; ++i)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
775 if (cells[i].chars[0] != 0)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
776 len = i + 1;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
777
11840
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
778 if (len > 0)
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
779 p = (VTermScreenCell *)alloc((int)sizeof(VTermScreenCell) * len);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
780 if (p != NULL)
11840
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
781 mch_memmove(p, cells, sizeof(VTermScreenCell) * len);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
782
11840
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
783 line = (sb_line_T *)term->tl_scrollback.ga_data
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
784 + term->tl_scrollback.ga_len;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
785 line->sb_cols = len;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
786 line->sb_cells = p;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
787 ++term->tl_scrollback.ga_len;
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
788 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
789 return 0; /* ignored */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
790 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
791
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
792 /*
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
793 * Fill the buffer with the scrollback lines and current lines of the terminal.
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
794 * Called after the job has ended.
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
795 */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
796 static void
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
797 move_scrollback_to_buffer(term_T *term)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
798 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
799 linenr_T lnum;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
800 garray_T ga;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
801 int c;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
802 int col;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
803 int i;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
804 win_T *wp;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
805 int len;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
806 int lines_skipped = 0;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
807 VTermPos pos;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
808 VTermScreenCell cell;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
809 VTermScreenCell *p;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
810 VTermScreen *screen = vterm_obtain_screen(term->tl_vterm);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
811
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
812 /* Append the the visible lines to the scrollback. */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
813 for (pos.row = 0; pos.row < term->tl_rows; ++pos.row)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
814 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
815 len = 0;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
816 for (pos.col = 0; pos.col < term->tl_cols; ++pos.col)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
817 if (vterm_screen_get_cell(screen, pos, &cell) != 0
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
818 && cell.chars[0] != NUL)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
819 len = pos.col + 1;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
820
11840
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
821 if (len == 0)
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
822 ++lines_skipped;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
823 else
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
824 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
825 while (lines_skipped > 0)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
826 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
827 /* Line was skipped, add an empty line. */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
828 --lines_skipped;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
829 if (ga_grow(&term->tl_scrollback, 1) == OK)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
830 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
831 sb_line_T *line = (sb_line_T *)term->tl_scrollback.ga_data
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
832 + term->tl_scrollback.ga_len;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
833
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
834 line->sb_cols = 0;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
835 line->sb_cells = NULL;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
836 ++term->tl_scrollback.ga_len;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
837 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
838 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
839
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
840 p = (VTermScreenCell *)alloc((int)sizeof(VTermScreenCell) * len);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
841 if (p != NULL && ga_grow(&term->tl_scrollback, 1) == OK)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
842 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
843 sb_line_T *line = (sb_line_T *)term->tl_scrollback.ga_data
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
844 + term->tl_scrollback.ga_len;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
845
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
846 for (pos.col = 0; pos.col < len; ++pos.col)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
847 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
848 if (vterm_screen_get_cell(screen, pos, &cell) == 0)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
849 vim_memset(p + pos.col, 0, sizeof(cell));
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
850 else
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
851 p[pos.col] = cell;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
852 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
853 line->sb_cols = len;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
854 line->sb_cells = p;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
855 ++term->tl_scrollback.ga_len;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
856 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
857 else
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
858 vim_free(p);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
859 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
860 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
861
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
862 /* Add the text to the buffer. */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
863 ga_init2(&ga, 1, 100);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
864 for (lnum = 0; lnum < term->tl_scrollback.ga_len; ++lnum)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
865 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
866 sb_line_T *line = (sb_line_T *)term->tl_scrollback.ga_data + lnum;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
867
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
868 ga.ga_len = 0;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
869 for (col = 0; col < line->sb_cols; ++col)
11840
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
870 {
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
871 if (ga_grow(&ga, MB_MAXBYTES) == FAIL)
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
872 goto failed;
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
873 for (i = 0; (c = line->sb_cells[col].chars[i]) > 0 || i == 0; ++i)
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
874 ga.ga_len += mb_char2bytes(c == NUL ? ' ' : c,
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
875 (char_u *)ga.ga_data + ga.ga_len);
11840
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
876 }
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
877 if (ga_grow(&ga, 1) == FAIL)
3c1f89d85151 patch 8.0.0800 Problem: Terminal window scrollback contents is wrong. Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle empty lines correctly. (closes #1891)
Christian Brabandt <cb@256bit.org>
parents: 11838
diff changeset
878 goto failed;
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
879 *((char_u *)ga.ga_data + ga.ga_len) = NUL;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
880 ml_append_buf(term->tl_buffer, lnum, ga.ga_data, ga.ga_len + 1, FALSE);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
881 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
882
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
883 /* Delete the empty line that was in the empty buffer. */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
884 curbuf = term->tl_buffer;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
885 ml_delete(lnum + 1, FALSE);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
886 curbuf = curwin->w_buffer;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
887
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
888 failed:
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
889 ga_clear(&ga);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
890
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
891 FOR_ALL_WINDOWS(wp)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
892 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
893 if (wp->w_buffer == term->tl_buffer)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
894 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
895 wp->w_cursor.lnum = term->tl_buffer->b_ml.ml_line_count;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
896 wp->w_cursor.col = 0;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
897 wp->w_valid = 0;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
898 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
899 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
900 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
901
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
902 static VTermScreenCallbacks screen_callbacks = {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
903 handle_damage, /* damage */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
904 handle_moverect, /* moverect */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
905 handle_movecursor, /* movecursor */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
906 handle_settermprop, /* settermprop */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
907 NULL, /* bell */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
908 handle_resize, /* resize */
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
909 handle_pushline, /* sb_pushline */
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
910 NULL /* sb_popline */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
911 };
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
912
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
913 /*
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
914 * Called when a channel has been closed.
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
915 */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
916 void
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
917 term_channel_closed(channel_T *ch)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
918 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
919 term_T *term;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
920 int did_one = FALSE;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
921
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
922 for (term = first_term; term != NULL; term = term->tl_next)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
923 if (term->tl_job == ch->ch_job)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
924 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
925 vim_free(term->tl_title);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
926 term->tl_title = NULL;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
927 vim_free(term->tl_status_text);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
928 term->tl_status_text = NULL;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
929
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
930 /* move the lines into the buffer and free the vterm */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
931 move_scrollback_to_buffer(term);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
932 term_free_vterm(term);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
933
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
934 redraw_buf_and_status_later(term->tl_buffer, NOT_VALID);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
935 did_one = TRUE;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
936 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
937 if (did_one)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
938 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
939 redraw_statuslines();
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
940
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
941 /* Need to break out of vgetc(). */
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
942 ins_char_typebuf(K_IGNORE);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
943
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
944 if (curbuf->b_term != NULL)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
945 {
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
946 if (curbuf->b_term->tl_job == ch->ch_job)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
947 maketitle();
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
948 update_cursor(curbuf->b_term, TRUE);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
949 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
950 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
951 }
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
952
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
953 /*
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
954 * Reverse engineer the RGB value into a cterm color index.
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
955 * First color is 1. Return 0 if no match found.
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
956 */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
957 static int
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
958 color2index(VTermColor *color, int foreground)
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
959 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
960 int red = color->red;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
961 int blue = color->blue;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
962 int green = color->green;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
963
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
964 /* The argument for lookup_color() is for the color_names[] table. */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
965 if (red == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
966 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
967 if (green == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
968 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
969 if (blue == 0)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
970 return lookup_color(0, foreground) + 1; /* black */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
971 if (blue == 224)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
972 return lookup_color(1, foreground) + 1; /* dark blue */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
973 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
974 else if (green == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
975 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
976 if (blue == 0)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
977 return lookup_color(2, foreground) + 1; /* dark green */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
978 if (blue == 224)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
979 return lookup_color(3, foreground) + 1; /* dark cyan */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
980 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
981 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
982 else if (red == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
983 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
984 if (green == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
985 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
986 if (blue == 0)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
987 return lookup_color(4, foreground) + 1; /* dark red */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
988 if (blue == 224)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
989 return lookup_color(5, foreground) + 1; /* dark magenta */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
990 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
991 else if (green == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
992 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
993 if (blue == 0)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
994 return lookup_color(6, foreground) + 1; /* dark yellow / brown */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
995 if (blue == 224)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
996 return lookup_color(8, foreground) + 1; /* white / light grey */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
997 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
998 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
999 else if (red == 128)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1000 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1001 if (green == 128 && blue == 128)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1002 return lookup_color(12, foreground) + 1; /* high intensity black / dark grey */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1003 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1004 else if (red == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1005 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1006 if (green == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1007 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1008 if (blue == 64)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1009 return lookup_color(20, foreground) + 1; /* light red */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1010 if (blue == 255)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1011 return lookup_color(22, foreground) + 1; /* light magenta */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1012 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1013 else if (green == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1014 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1015 if (blue == 64)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1016 return lookup_color(24, foreground) + 1; /* yellow */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1017 if (blue == 255)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1018 return lookup_color(26, foreground) + 1; /* white */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1019 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1020 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1021 else if (red == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1022 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1023 if (green == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1024 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1025 if (blue == 255)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1026 return lookup_color(14, foreground) + 1; /* light blue */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1027 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1028 else if (green == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1029 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1030 if (blue == 64)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1031 return lookup_color(16, foreground) + 1; /* light green */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1032 if (blue == 255)
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1033 return lookup_color(18, foreground) + 1; /* light cyan */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1034 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1035 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1036 if (t_colors >= 256)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1037 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1038 if (red == blue && red == green)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1039 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1040 /* 24-color greyscale */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1041 static int cutoff[23] = {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1042 0x05, 0x10, 0x1B, 0x26, 0x31, 0x3C, 0x47, 0x52,
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1043 0x5D, 0x68, 0x73, 0x7F, 0x8A, 0x95, 0xA0, 0xAB,
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1044 0xB6, 0xC1, 0xCC, 0xD7, 0xE2, 0xED, 0xF9};
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1045 int i;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1046
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1047 for (i = 0; i < 23; ++i)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1048 if (red < cutoff[i])
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1049 return i + 233;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1050 return 256;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1051 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1052
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1053 /* 216-color cube */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1054 return 17 + ((red + 25) / 0x33) * 36
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1055 + ((green + 25) / 0x33) * 6
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1056 + (blue + 25) / 0x33;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1057 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1058 return 0;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1059 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1060
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1061 /*
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1062 * Convert the attributes of a vterm cell into an attribute index.
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1063 */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1064 static int
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1065 cell2attr(VTermScreenCell *cell)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1066 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1067 int attr = 0;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1068
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1069 if (cell->attrs.bold)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1070 attr |= HL_BOLD;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1071 if (cell->attrs.underline)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1072 attr |= HL_UNDERLINE;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1073 if (cell->attrs.italic)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1074 attr |= HL_ITALIC;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1075 if (cell->attrs.strike)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1076 attr |= HL_STANDOUT;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1077 if (cell->attrs.reverse)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1078 attr |= HL_INVERSE;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1079 if (cell->attrs.strike)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1080 attr |= HL_UNDERLINE;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1081
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1082 #ifdef FEAT_GUI
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1083 if (gui.in_use)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1084 {
11745
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11743
diff changeset
1085 guicolor_T fg, bg;
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11743
diff changeset
1086
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11743
diff changeset
1087 fg = gui_mch_get_rgb_color(cell->fg.red, cell->fg.green, cell->fg.blue);
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11743
diff changeset
1088 bg = gui_mch_get_rgb_color(cell->bg.red, cell->bg.green, cell->bg.blue);
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11743
diff changeset
1089 return get_gui_attr_idx(attr, fg, bg);
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1090 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1091 else
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1092 #endif
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1093 #ifdef FEAT_TERMGUICOLORS
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1094 if (p_tgc)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1095 {
11755
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
1096 guicolor_T fg, bg;
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
1097
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
1098 fg = gui_get_rgb_color_cmn(cell->fg.red, cell->fg.green, cell->fg.blue);
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
1099 bg = gui_get_rgb_color_cmn(cell->bg.red, cell->bg.green, cell->bg.blue);
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
1100
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
1101 return get_tgc_attr_idx(attr, fg, bg);
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1102 }
11755
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
1103 else
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1104 #endif
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1105 {
11822
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1106 return get_cterm_attr_idx(attr, color2index(&cell->fg, TRUE),
1e237c5994fc patch 8.0.0791: terminal colors depend on the system
Christian Brabandt <cb@256bit.org>
parents: 11818
diff changeset
1107 color2index(&cell->bg, FALSE));
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1108 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1109 return 0;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1110 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1111
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1112 /*
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1113 * Called to update the window that contains a terminal.
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1114 * Returns FAIL when there is no terminal running in this window.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1115 */
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1116 int
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1117 term_update_window(win_T *wp)
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1118 {
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1119 term_T *term = wp->w_buffer->b_term;
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1120 VTerm *vterm;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1121 VTermScreen *screen;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1122 VTermState *state;
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1123 VTermPos pos;
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1124
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1125 if (term == NULL || term->tl_vterm == NULL)
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1126 return FAIL;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1127 vterm = term->tl_vterm;
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1128 screen = vterm_obtain_screen(vterm);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1129 state = vterm_obtain_state(vterm);
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1130
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1131 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1132 * If the window was resized a redraw will be triggered and we get here.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1133 * Adjust the size of the vterm unless 'termsize' specifies a fixed size.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1134 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1135 if ((!term->tl_rows_fixed && term->tl_rows != wp->w_height)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1136 || (!term->tl_cols_fixed && term->tl_cols != wp->w_width))
11741
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
1137 {
11818
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1138 int rows = term->tl_rows_fixed ? term->tl_rows : wp->w_height;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1139 int cols = term->tl_cols_fixed ? term->tl_cols : wp->w_width;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1140 win_T *twp;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1141
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1142 FOR_ALL_WINDOWS(twp)
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1143 {
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1144 /* When more than one window shows the same terminal, use the
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1145 * smallest size. */
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1146 if (twp->w_buffer == term->tl_buffer)
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1147 {
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1148 if (!term->tl_rows_fixed && rows > twp->w_height)
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1149 rows = twp->w_height;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1150 if (!term->tl_cols_fixed && cols > twp->w_width)
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1151 cols = twp->w_width;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1152 }
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
1153 }
11741
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
1154
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
1155 vterm_set_size(vterm, rows, cols);
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
1156 ch_logn(term->tl_job->jv_channel, "Resizing terminal to %d lines",
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
1157 rows);
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1158 term_report_winsize(term, rows, cols);
11741
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
1159 }
11713
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
1160
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
1161 /* The cursor may have been moved when resizing. */
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
1162 vterm_state_get_cursorpos(state, &pos);
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
1163 position_cursor(wp, &pos);
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
1164
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1165 /* TODO: Only redraw what changed. */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1166 for (pos.row = 0; pos.row < wp->w_height; ++pos.row)
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1167 {
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1168 int off = screen_get_current_line_off();
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1169 int max_col = MIN(wp->w_width, term->tl_cols);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1170
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1171 if (pos.row < term->tl_rows)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1172 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1173 for (pos.col = 0; pos.col < max_col; )
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1174 {
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1175 VTermScreenCell cell;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1176 int c;
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1177
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1178 if (vterm_screen_get_cell(screen, pos, &cell) == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1179 vim_memset(&cell, 0, sizeof(cell));
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1180
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1181 /* TODO: composing chars */
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1182 c = cell.chars[0];
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1183 if (c == NUL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1184 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1185 ScreenLines[off] = ' ';
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1186 #if defined(FEAT_MBYTE)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1187 if (enc_utf8)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1188 ScreenLinesUC[off] = NUL;
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1189 #endif
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1190 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1191 else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1192 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1193 #if defined(FEAT_MBYTE)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1194 if (enc_utf8 && c >= 0x80)
11725
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
1195 {
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
1196 ScreenLines[off] = ' ';
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1197 ScreenLinesUC[off] = c;
11725
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
1198 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1199 else
11725
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
1200 {
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1201 ScreenLines[off] = c;
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1202 if (enc_utf8)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1203 ScreenLinesUC[off] = NUL;
11725
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
1204 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1205 #else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1206 ScreenLines[off] = c;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1207 #endif
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1208 }
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1209 ScreenAttrs[off] = cell2attr(&cell);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1210
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1211 ++pos.col;
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1212 ++off;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1213 if (cell.width == 2)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1214 {
11725
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
1215 ScreenLines[off] = NUL;
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1216 #if defined(FEAT_MBYTE)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1217 if (enc_utf8)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1218 ScreenLinesUC[off] = NUL;
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1219 #endif
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1220 ++pos.col;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1221 ++off;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1222 }
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1223 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1224 }
11711
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
1225 else
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
1226 pos.col = 0;
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1227
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1228 screen_line(wp->w_winrow + pos.row, wp->w_wincol,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1229 pos.col, wp->w_width, FALSE);
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1230 }
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1231
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1232 return OK;
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1233 }
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1234
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1235 /*
11836
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1236 * Return TRUE if "wp" is a terminal window where the job has finished.
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1237 */
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1238 int
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1239 term_is_finished(buf_T *buf)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1240 {
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1241 return buf->b_term != NULL && buf->b_term->tl_vterm == NULL;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1242 }
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1243
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1244 /*
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1245 * The current buffer is going to be changed. If there is terminal
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1246 * highlighting remove it now.
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1247 */
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1248 void
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1249 term_change_in_curbuf(void)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1250 {
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1251 term_T *term = curbuf->b_term;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1252
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1253 if (term_is_finished(curbuf) && term->tl_scrollback.ga_len > 0)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1254 {
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1255 free_scrollback(term);
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1256 redraw_buf_later(term->tl_buffer, NOT_VALID);
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1257 }
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1258 }
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1259
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1260 /*
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1261 * Get the screen attribute for a position in the buffer.
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1262 */
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1263 int
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1264 term_get_attr(buf_T *buf, linenr_T lnum, int col)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1265 {
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1266 term_T *term = buf->b_term;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1267 sb_line_T *line;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1268
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1269 if (lnum >= term->tl_scrollback.ga_len)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1270 return 0;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1271 line = (sb_line_T *)term->tl_scrollback.ga_data + lnum - 1;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1272 if (col >= line->sb_cols)
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1273 return 0;
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1274 return cell2attr(line->sb_cells + col);
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1275 }
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1276
f080b225a2a4 patch 8.0.0798: no highlighting in a terminal window with a finished job
Christian Brabandt <cb@256bit.org>
parents: 11834
diff changeset
1277 /*
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1278 * Set job options common for Unix and MS-Windows.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1279 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1280 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1281 setup_job_options(jobopt_T *opt, int rows, int cols)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1282 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1283 clear_job_options(opt);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1284 opt->jo_mode = MODE_RAW;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1285 opt->jo_out_mode = MODE_RAW;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1286 opt->jo_err_mode = MODE_RAW;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1287 opt->jo_set = JO_MODE | JO_OUT_MODE | JO_ERR_MODE;
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1288
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1289 opt->jo_io[PART_OUT] = JIO_BUFFER;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1290 opt->jo_io[PART_ERR] = JIO_BUFFER;
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1291 opt->jo_set |= JO_OUT_IO + JO_ERR_IO;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1292
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1293 opt->jo_modifiable[PART_OUT] = 0;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1294 opt->jo_modifiable[PART_ERR] = 0;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1295 opt->jo_set |= JO_OUT_MODIFIABLE + JO_ERR_MODIFIABLE;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1296
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1297 opt->jo_io_buf[PART_OUT] = curbuf->b_fnum;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1298 opt->jo_io_buf[PART_ERR] = curbuf->b_fnum;
11723
1922710ee8fa patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents: 11719
diff changeset
1299 opt->jo_pty = TRUE;
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1300 opt->jo_set |= JO_OUT_BUF + JO_ERR_BUF;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1301
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1302 opt->jo_term_rows = rows;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1303 opt->jo_term_cols = cols;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1304 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1305
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1306 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1307 * Create a new vterm and initialize it.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1308 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1309 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1310 create_vterm(term_T *term, int rows, int cols)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1311 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1312 VTerm *vterm;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1313 VTermScreen *screen;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1314
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1315 vterm = vterm_new(rows, cols);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1316 term->tl_vterm = vterm;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1317 screen = vterm_obtain_screen(vterm);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1318 vterm_screen_set_callbacks(screen, &screen_callbacks, term);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1319 /* TODO: depends on 'encoding'. */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1320 vterm_set_utf8(vterm, 1);
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1321
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1322 /* Vterm uses a default black background. Set it to white when
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1323 * 'background' is "light". */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1324 if (*p_bg == 'l')
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1325 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1326 VTermColor fg, bg;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1327
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1328 fg.red = fg.green = fg.blue = 0;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1329 bg.red = bg.green = bg.blue = 255;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1330 vterm_state_set_default_colors(vterm_obtain_state(vterm), &fg, &bg);
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1331 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1332
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1333 /* Required to initialize most things. */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1334 vterm_screen_reset(screen, 1 /* hard */);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1335 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1336
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1337 /*
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1338 * Return the text to show for the buffer name and status.
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1339 */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1340 char_u *
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1341 term_get_status_text(term_T *term)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1342 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1343 if (term->tl_status_text == NULL)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1344 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1345 char_u *txt;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1346 size_t len;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1347
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1348 if (term->tl_title != NULL)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1349 txt = term->tl_title;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1350 else if (term_job_running(term))
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1351 txt = (char_u *)_("running");
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1352 else
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1353 txt = (char_u *)_("finished");
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1354 len = 9 + STRLEN(term->tl_buffer->b_fname) + STRLEN(txt);
11790
4dfebc1b2674 patch 8.0.0777: compiler warnings with 64 bit compiler
Christian Brabandt <cb@256bit.org>
parents: 11786
diff changeset
1355 term->tl_status_text = alloc((int)len);
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1356 if (term->tl_status_text != NULL)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1357 vim_snprintf((char *)term->tl_status_text, len, "%s [%s]",
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1358 term->tl_buffer->b_fname, txt);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1359 }
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1360 return term->tl_status_text;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1361 }
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1362
11816
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1363 /*
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1364 * Mark references in jobs of terminals.
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1365 */
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1366 int
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1367 set_ref_in_term(int copyID)
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1368 {
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1369 int abort = FALSE;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1370 term_T *term;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1371 typval_T tv;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1372
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1373 for (term = first_term; term != NULL; term = term->tl_next)
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1374 if (term->tl_job != NULL)
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1375 {
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1376 tv.v_type = VAR_JOB;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1377 tv.vval.v_job = term->tl_job;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1378 abort = abort || set_ref_in_item(&tv, copyID, NULL, NULL);
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1379 }
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1380 return abort;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1381 }
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1382
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1383 # ifdef WIN3264
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1384
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1385 #define WINPTY_SPAWN_FLAG_AUTO_SHUTDOWN 1ul
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1386 #define WINPTY_SPAWN_FLAG_EXIT_AFTER_SHUTDOWN 2ull
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1387
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1388 void* (*winpty_config_new)(UINT64, void*);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1389 void* (*winpty_open)(void*, void*);
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1390 void* (*winpty_spawn_config_new)(UINT64, void*, LPCWSTR, void*, void*, void*);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1391 BOOL (*winpty_spawn)(void*, void*, HANDLE*, HANDLE*, DWORD*, void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1392 void (*winpty_config_set_initial_size)(void*, int, int);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1393 LPCWSTR (*winpty_conin_name)(void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1394 LPCWSTR (*winpty_conout_name)(void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1395 LPCWSTR (*winpty_conerr_name)(void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1396 void (*winpty_free)(void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1397 void (*winpty_config_free)(void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1398 void (*winpty_spawn_config_free)(void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1399 void (*winpty_error_free)(void*);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1400 LPCWSTR (*winpty_error_msg)(void*);
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1401 BOOL (*winpty_set_size)(void*, int, int, void*);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1402
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1403 /**************************************
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1404 * 2. MS-Windows implementation.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1405 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1406
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1407 #define WINPTY_DLL "winpty.dll"
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1408
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1409 static HINSTANCE hWinPtyDLL = NULL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1410
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1411 int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1412 dyn_winpty_init(void)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1413 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1414 int i;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1415 static struct
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1416 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1417 char *name;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1418 FARPROC *ptr;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1419 } winpty_entry[] =
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1420 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1421 {"winpty_conerr_name", (FARPROC*)&winpty_conerr_name},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1422 {"winpty_config_free", (FARPROC*)&winpty_config_free},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1423 {"winpty_config_new", (FARPROC*)&winpty_config_new},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1424 {"winpty_config_set_initial_size", (FARPROC*)&winpty_config_set_initial_size},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1425 {"winpty_conin_name", (FARPROC*)&winpty_conin_name},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1426 {"winpty_conout_name", (FARPROC*)&winpty_conout_name},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1427 {"winpty_error_free", (FARPROC*)&winpty_error_free},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1428 {"winpty_free", (FARPROC*)&winpty_free},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1429 {"winpty_open", (FARPROC*)&winpty_open},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1430 {"winpty_spawn", (FARPROC*)&winpty_spawn},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1431 {"winpty_spawn_config_free", (FARPROC*)&winpty_spawn_config_free},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1432 {"winpty_spawn_config_new", (FARPROC*)&winpty_spawn_config_new},
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1433 {"winpty_error_msg", (FARPROC*)&winpty_error_msg},
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1434 {"winpty_set_size", (FARPROC*)&winpty_set_size},
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1435 {NULL, NULL}
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1436 };
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1437
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1438 /* No need to initialize twice. */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1439 if (hWinPtyDLL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1440 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1441 /* Load winpty.dll */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1442 hWinPtyDLL = vimLoadLib(WINPTY_DLL);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1443 if (!hWinPtyDLL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1444 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1445 EMSG2(_(e_loadlib), WINPTY_DLL);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1446 return 0;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1447 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1448 for (i = 0; winpty_entry[i].name != NULL
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1449 && winpty_entry[i].ptr != NULL; ++i)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1450 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1451 if ((*winpty_entry[i].ptr = (FARPROC)GetProcAddress(hWinPtyDLL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1452 winpty_entry[i].name)) == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1453 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1454 EMSG2(_(e_loadfunc), winpty_entry[i].name);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1455 return 0;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1456 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1457 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1458
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1459 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1460 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1461
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1462 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1463 * Create a new terminal of "rows" by "cols" cells.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1464 * Store a reference in "term".
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1465 * Return OK or FAIL.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1466 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1467 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1468 term_and_job_init(term_T *term, int rows, int cols, char_u *cmd)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1469 {
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1470 WCHAR *p;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1471 channel_T *channel = NULL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1472 job_T *job = NULL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1473 jobopt_T opt;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1474 DWORD error;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1475 HANDLE jo = NULL, child_process_handle, child_thread_handle;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1476 void *winpty_err;
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1477 void *spawn_config = NULL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1478
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1479 if (!dyn_winpty_init())
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1480 return FAIL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1481
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1482 p = enc_to_utf16(cmd, NULL);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1483 if (p == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1484 return FAIL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1485
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1486 job = job_alloc();
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1487 if (job == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1488 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1489
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1490 channel = add_channel();
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1491 if (channel == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1492 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1493
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1494 term->tl_winpty_config = winpty_config_new(0, &winpty_err);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1495 if (term->tl_winpty_config == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1496 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1497
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1498 winpty_config_set_initial_size(term->tl_winpty_config, cols, rows);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1499 term->tl_winpty = winpty_open(term->tl_winpty_config, &winpty_err);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1500 if (term->tl_winpty == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1501 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1502
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1503 spawn_config = winpty_spawn_config_new(
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1504 WINPTY_SPAWN_FLAG_AUTO_SHUTDOWN |
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1505 WINPTY_SPAWN_FLAG_EXIT_AFTER_SHUTDOWN,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1506 NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1507 p,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1508 NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1509 NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1510 &winpty_err);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1511 if (spawn_config == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1512 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1513
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1514 channel = add_channel();
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1515 if (channel == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1516 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1517
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1518 job = job_alloc();
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1519 if (job == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1520 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1521
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1522 if (!winpty_spawn(term->tl_winpty, spawn_config, &child_process_handle,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1523 &child_thread_handle, &error, &winpty_err))
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1524 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1525
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1526 channel_set_pipes(channel,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1527 (sock_T) CreateFileW(
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1528 winpty_conin_name(term->tl_winpty),
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1529 GENERIC_WRITE, 0, NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1530 OPEN_EXISTING, 0, NULL),
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1531 (sock_T) CreateFileW(
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1532 winpty_conout_name(term->tl_winpty),
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1533 GENERIC_READ, 0, NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1534 OPEN_EXISTING, 0, NULL),
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1535 (sock_T) CreateFileW(
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1536 winpty_conerr_name(term->tl_winpty),
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1537 GENERIC_READ, 0, NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1538 OPEN_EXISTING, 0, NULL));
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1539
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1540 jo = CreateJobObject(NULL, NULL);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1541 if (jo == NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1542 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1543
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1544 if (!AssignProcessToJobObject(jo, child_process_handle))
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1545 {
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1546 /* Failed, switch the way to terminate process with TerminateProcess. */
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1547 CloseHandle(jo);
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1548 jo = NULL;
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1549 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1550
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1551 winpty_spawn_config_free(spawn_config);
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1552 vim_free(p);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1553
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1554 create_vterm(term, rows, cols);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1555
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1556 setup_job_options(&opt, rows, cols);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1557 channel_set_job(channel, job, &opt);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1558
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1559 job->jv_channel = channel;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1560 job->jv_proc_info.hProcess = child_process_handle;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1561 job->jv_proc_info.dwProcessId = GetProcessId(child_process_handle);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1562 job->jv_job_object = jo;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1563 job->jv_status = JOB_STARTED;
11802
b1fd49b4eea7 patch 8.0.0783: job of terminal may be freed too early
Christian Brabandt <cb@256bit.org>
parents: 11798
diff changeset
1564 ++job->jv_refcount;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1565 term->tl_job = job;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1566
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1567 return OK;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1568
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1569 failed:
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1570 if (spawn_config != NULL)
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1571 winpty_spawn_config_free(spawn_config);
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1572 vim_free(p);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1573 if (channel != NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1574 channel_clear(channel);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1575 if (job != NULL)
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1576 {
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1577 job->jv_channel = NULL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1578 job_cleanup(job);
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1579 }
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1580 term->tl_job = NULL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1581 if (jo != NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1582 CloseHandle(jo);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1583 if (term->tl_winpty != NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1584 winpty_free(term->tl_winpty);
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1585 term->tl_winpty = NULL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1586 if (term->tl_winpty_config != NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1587 winpty_config_free(term->tl_winpty_config);
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1588 term->tl_winpty_config = NULL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1589 if (winpty_err != NULL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1590 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1591 char_u *msg = utf16_to_enc(
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1592 (short_u *)winpty_error_msg(winpty_err), NULL);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1593
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1594 EMSG(msg);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1595 winpty_error_free(winpty_err);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1596 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1597 return FAIL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1598 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1599
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1600 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1601 * Free the terminal emulator part of "term".
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1602 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1603 static void
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1604 term_free_vterm(term_T *term)
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1605 {
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1606 if (term->tl_winpty != NULL)
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1607 winpty_free(term->tl_winpty);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1608 term->tl_winpty = NULL;
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1609 if (term->tl_winpty_config != NULL)
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1610 winpty_config_free(term->tl_winpty_config);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1611 term->tl_winpty_config = NULL;
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1612 if (term->tl_vterm != NULL)
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1613 vterm_free(term->tl_vterm);
11838
e6080ed193f6 patch 8.0.0799: missing semicolon
Christian Brabandt <cb@256bit.org>
parents: 11836
diff changeset
1614 term->tl_vterm = NULL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1615 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1616
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1617 /*
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1618 * Request size to terminal.
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1619 */
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1620 static void
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1621 term_report_winsize(term_T *term, int rows, int cols)
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1622 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1623 winpty_set_size(term->tl_winpty, cols, rows, NULL);
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1624 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1625
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1626 # else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1627
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1628 /**************************************
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1629 * 3. Unix-like implementation.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1630 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1631
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1632 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1633 * Create a new terminal of "rows" by "cols" cells.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1634 * Start job for "cmd".
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1635 * Store the pointers in "term".
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1636 * Return OK or FAIL.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1637 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1638 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1639 term_and_job_init(term_T *term, int rows, int cols, char_u *cmd)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1640 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1641 typval_T argvars[2];
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1642 jobopt_T opt;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1643
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1644 create_vterm(term, rows, cols);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1645
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1646 argvars[0].v_type = VAR_STRING;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1647 argvars[0].vval.v_string = cmd;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1648 setup_job_options(&opt, rows, cols);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1649 term->tl_job = job_start(argvars, &opt);
11802
b1fd49b4eea7 patch 8.0.0783: job of terminal may be freed too early
Christian Brabandt <cb@256bit.org>
parents: 11798
diff changeset
1650 if (term->tl_job != NULL)
b1fd49b4eea7 patch 8.0.0783: job of terminal may be freed too early
Christian Brabandt <cb@256bit.org>
parents: 11798
diff changeset
1651 ++term->tl_job->jv_refcount;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1652
11727
cb1dc90d22cc patch 8.0.0746: when :term fails the job is not properly cleaned up
Christian Brabandt <cb@256bit.org>
parents: 11725
diff changeset
1653 return term->tl_job != NULL
cb1dc90d22cc patch 8.0.0746: when :term fails the job is not properly cleaned up
Christian Brabandt <cb@256bit.org>
parents: 11725
diff changeset
1654 && term->tl_job->jv_channel != NULL
cb1dc90d22cc patch 8.0.0746: when :term fails the job is not properly cleaned up
Christian Brabandt <cb@256bit.org>
parents: 11725
diff changeset
1655 && term->tl_job->jv_status != JOB_FAILED ? OK : FAIL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1656 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1657
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1658 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1659 * Free the terminal emulator part of "term".
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1660 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1661 static void
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1662 term_free_vterm(term_T *term)
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1663 {
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1664 if (term->tl_vterm != NULL)
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1665 vterm_free(term->tl_vterm);
11834
0cfe4a07c2ad patch 8.0.0797: finished job in terminal window is not handled
Christian Brabandt <cb@256bit.org>
parents: 11822
diff changeset
1666 term->tl_vterm = NULL;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1667 }
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1668
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1669 /*
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1670 * Request size to terminal.
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1671 */
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1672 static void
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1673 term_report_winsize(term_T *term, int rows, int cols)
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1674 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1675 /* Use an ioctl() to report the new window size to the job. */
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1676 if (term->tl_job != NULL && term->tl_job->jv_channel != NULL)
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1677 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1678 int fd = -1;
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1679 int part;
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1680
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1681 for (part = PART_OUT; part < PART_COUNT; ++part)
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1682 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1683 fd = term->tl_job->jv_channel->ch_part[part].ch_fd;
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1684 if (isatty(fd))
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1685 break;
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1686 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1687 if (part < PART_COUNT && mch_report_winsize(fd, rows, cols) == OK)
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1688 mch_stop_job(term->tl_job, (char_u *)"winch");
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1689 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1690 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1691
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1692 # endif
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1693
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1694 #endif /* FEAT_TERMINAL */