annotate src/terminal.c @ 11818:0f9780ee4207 v8.0.0789

patch 8.0.0789: splitting terminal window has resizing problems commit https://github.com/vim/vim/commit/96ad8c9ac181b51605ac1f399c7835a515e5a1fa Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 28 14:17:34 2017 +0200 patch 8.0.0789: splitting terminal window has resizing problems Problem: When splitting a terminal window where the terminal follows the size of the window doesn't work. Solution: Use the size of the smallest window. (Yasuhiro Matsumoto, closes #1885)
author Christian Brabandt <cb@256bit.org>
date Fri, 28 Jul 2017 14:30:04 +0200
parents f6575adc6ee8
children 1e237c5994fc
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
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
22 * that 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 *
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 * TODO:
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
36 * - To set BS correctly, check get_stty(); Pass the fd of the pty.
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
37 * - include functions from #1871
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
38 * - do not store terminal buffer in viminfo. Or prefix term:// ?
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
39 * - Add a scrollback buffer (contains lines to scroll off the top).
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
40 * Can use the buf_T lines, store attributes somewhere else?
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
41 * - When the job ends:
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
42 * - Write "-- JOB ENDED --" in the terminal.
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
43 * - Put the terminal contents in the scrollback buffer.
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
44 * - Free the terminal emulator.
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
45 * - Display the scrollback buffer (but with attributes).
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
46 * Make the buffer not modifiable, drop attributes when making changes.
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
47 * - 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
48 * used for a shell or Vim.
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
49 * - 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
50 * - when closing window and job has not ended, make terminal 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
51 * - 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
52 * - 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
53 * - 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
54 * - 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
55 * - 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
56 * - 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
57 * terminal.
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
58 * - 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
59 * - implement term_getsize(buf)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
60 * - implement term_setsize(buf)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
61 * - 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
62 * - 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
63 * - 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
64 * - 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
65 * - 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
66 * - 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
67 * conversions.
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
68 * - 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
69 */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
70
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
71 #include "vim.h"
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
72
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
73 #ifdef FEAT_TERMINAL
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
74
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
75 #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
76 # 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
77 # 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
78 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
79
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
80 #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
81
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
82 /* typedef term_T in structs.h */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
83 struct terminal_S {
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
84 term_T *tl_next;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
85
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
86 #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
87 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
88 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
89 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
90 VTerm *tl_vterm;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
91 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
92 buf_T *tl_buffer;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
94 /* 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
95 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
96 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
97 /* 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
98 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
99 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
100
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
101 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
102 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
103
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104 /* 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
105 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
106 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
107
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
108 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
109 int tl_cursor_visible;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110 };
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 /*
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113 * List of all active terminals.
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
115 static term_T *first_term = NULL;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
116
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
117
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
118 #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
119 #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
120
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
121 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
122 * 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
123 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
124 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
125 static void term_report_winsize(term_T *term, int rows, int cols);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
126 static void term_free(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
127
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
128 /**************************************
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
129 * 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
130 */
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
131
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
132 /*
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
133 * 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
134 * 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
135 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
136 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
137 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
138 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
139 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
140 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
141 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
142
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
143 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
144 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
145 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
146 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
147 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
148 else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
149 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
150 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
151 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
152 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
153 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
154 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
155 else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
156 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
157 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
158 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
159 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
160 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
161
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
162 /*
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
163 * ":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
164 */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
165 void
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
166 ex_terminal(exarg_T *eap)
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
167 {
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
168 exarg_T split_ea;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
169 win_T *old_curwin = curwin;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
170 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
171 char_u *cmd = eap->arg;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
172
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
173 if (check_restricted() || check_secure())
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
174 return;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
175
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
176 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
177 if (term == NULL)
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
178 return;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
179 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
180 term->tl_cursor_visible = TRUE;
11621
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 /* Open a new window or tab. */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
183 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
184 split_ea.cmdidx = CMD_new;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
185 split_ea.cmd = (char_u *)"new";
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
186 split_ea.arg = (char_u *)"";
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
187 ex_splitview(&split_ea);
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
188 if (curwin == old_curwin)
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
189 {
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
190 /* split failed */
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
191 vim_free(term);
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
192 return;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
193 }
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
194 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
195 curbuf->b_term = term;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
196
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
197 /* 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
198 term->tl_next = first_term;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
199 first_term = term;
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
200
11794
2e7e77e28063 patch 8.0.0779: :term without an argument uses empty buffer name
Christian Brabandt <cb@256bit.org>
parents: 11792
diff changeset
201 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
202 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
203
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
204 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
205 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
206 else
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
207 {
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
208 int i;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
209 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
210 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
211
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
212 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
213 {
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
214 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
215 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
216 {
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
217 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
218 break;
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
219 }
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 }
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
222 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
223
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
224 /* 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
225 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
226 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
227 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
228 (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
229
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
230 set_term_and_win_size(term);
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
231
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
232 /* 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
233 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
234 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
235 /* 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
236 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
237 }
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
238 else
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
239 {
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
240 free_terminal(term);
cb1dc90d22cc patch 8.0.0746: when :term fails the job is not properly cleaned up
Christian Brabandt <cb@256bit.org>
parents: 11725
diff changeset
241 curbuf->b_term = 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
242
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
243 /* 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
244 * free_terminal(). */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
245 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
246 }
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
247
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
248 /* 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
249 }
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
250
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
251 /*
11690
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
252 * 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
253 * 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
254 * 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
255 */
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
256 void
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
257 free_terminal(term_T *term)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
258 {
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
259 term_T *tp;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
260
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
261 if (term == NULL)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
262 return;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
263 if (first_term == term)
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
264 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
265 else
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
266 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
267 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
268 {
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
269 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
270 break;
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
271 }
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
272
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
273 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
274 {
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
275 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
276 && 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
277 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
278 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
279 }
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
280
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
281 term_free(term);
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
282 vim_free(term->tl_title);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
283 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
284 vim_free(term);
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
285 }
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
286
ce434212d682 patch 8.0.0728: the terminal structure is never freed
Christian Brabandt <cb@256bit.org>
parents: 11684
diff changeset
287 /*
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
288 * 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
289 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
290 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
291 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
292 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
293 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
294 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
295 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
296 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
297
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
298 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
299 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
300 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
301 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
302 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
303 break;
11790
4dfebc1b2674 patch 8.0.0777: compiler warnings with 64 bit compiler
Christian Brabandt <cb@256bit.org>
parents: 11786
diff changeset
304 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
305 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
306 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
307 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
308 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
309 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
310 /* 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
311 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
312 ++len_now;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
313 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
314 }
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 /* 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
317 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
318 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
319
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
320 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
321 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
322 {
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
323 setcursor();
11792
4bc1f94afc34 patch 8.0.0778: in a terminal the cursor may be hidden
Christian Brabandt <cb@256bit.org>
parents: 11790
diff changeset
324 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
325 {
11792
4bc1f94afc34 patch 8.0.0778: in a terminal the cursor may be hidden
Christian Brabandt <cb@256bit.org>
parents: 11790
diff changeset
326 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
327 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
328 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
329 #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
330 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
331 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
332 #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
333 }
11778
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
334 }
e8005055f845 patch 8.0.0771: cursor in terminal window not always updated in GUI
Christian Brabandt <cb@256bit.org>
parents: 11774
diff changeset
335
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
336 /*
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
337 * 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
338 * of "buffer".
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
339 */
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
340 void
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
341 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
342 {
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
343 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
344 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
345
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
346 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
347 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
348
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
349 /* 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
350 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
351 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
352 }
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
353
11670
3b2afa2b77b3 patch 8.0.0718: output of job in terminal is not displayed
Christian Brabandt <cb@256bit.org>
parents: 11668
diff changeset
354 /*
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
355 * 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
356 * 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
357 */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
358 static int
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
359 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
360 {
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
361 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
362 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
363 VTermModifier mod = VTERM_MOD_NONE;
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
364
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
365 switch (c)
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
366 {
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
367 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
368 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
369 /* 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
370 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
371 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
372 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
373 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
374 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
375 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
376 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
377 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
378 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
379 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
380 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
381 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
382 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
383 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
384 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
385 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
386 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
387 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
388 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
389 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
390 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
391 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
392 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
393 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
394 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
395 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
396 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
397 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
398 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
399 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
400 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
401 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
402 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
403 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
404 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
405 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
406 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
407 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
408 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
409 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
410 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
411 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
412 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
413 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
414 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
415 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
416
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
417 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
418 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
419 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
420 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
421
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
422 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
423 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
424 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
425 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
426 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
427 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
428 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
429 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
430 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
431 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
432 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
433 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
434 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
435 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
436 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
437 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
438 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
439
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
440 /* 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
441 * 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
442 }
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
443
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
444 /*
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
445 * 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
446 * - 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
447 * - 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
448 */
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
449 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
450 /* 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
451 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
452 else
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
453 /* 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
454 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
455
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
456 /* 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
457 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
458 }
11684
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
459
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
460 /*
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
461 * 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
462 * 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
463 */
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
464 static int
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
465 term_vgetc()
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
466 {
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
467 int c;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
468
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
469 ++no_mapping;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
470 ++allow_keys;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
471 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
472 c = vgetc();
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
473 --no_mapping;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
474 --allow_keys;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
475 return c;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
476 }
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
477
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
478 /*
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
479 * 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
480 * 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
481 * should be handled as a Normal mode command.
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
482 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
483 void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
484 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
485 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
486 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
487 int c;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
488 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
489 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
490 int dragging_outside = FALSE;
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
491 int termkey = 0;
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
492
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
493 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
494 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
495
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
496 for (;;)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
497 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
498 /* 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
499 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
500 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
501 c = term_vgetc();
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
502
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
503 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
504 {
11814
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
505 #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
506 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
507 out_flush();
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
508 #endif
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
509 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
510 #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
511 clear_showcmd();
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
512 #endif
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 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
515 /* "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
516 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
517 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
518 {
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
519 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
520 stuffcharReadbuff(c);
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
521 return;
d3d0db111d17 patch 8.0.0787: cannot send CTRL-W command to terminal job
Christian Brabandt <cb@256bit.org>
parents: 11804
diff changeset
522 }
11764
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
523 }
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
524
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
525 /* 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
526 switch (c)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
527 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
528 case NUL:
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
529 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
530 stuffcharReadbuff(c);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
531 return;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
532
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
533 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
534
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
535 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
536 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
537 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
538 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
539 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
540 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
541 /* FALLTHROUGH */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
542 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
543 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
544 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
545 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
546 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
547 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
548 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
549 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
550 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
551 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
552 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
553 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
554 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
555 || 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
556 || 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
557 || 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
558 || dragging_outside)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
559 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
560 /* 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
561 stuffcharReadbuff(c);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
562 mouse_was_outside = TRUE;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
563 return;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
564 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
565 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
566 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
567
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
568 /* 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
569 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
570 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
571 /* 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
572 channel_send(curbuf->b_term->tl_job->jv_channel, PART_IN,
11790
4dfebc1b2674 patch 8.0.0777: compiler warnings with 64 bit compiler
Christian Brabandt <cb@256bit.org>
parents: 11786
diff changeset
573 (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
574 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
575 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
576
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
577 /*
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
578 * Called when a job has finished.
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
579 */
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
580 void
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
581 term_job_ended(job_T *job)
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
582 {
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
583 term_T *term;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
584 int did_one = FALSE;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
585
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
586 for (term = first_term; term != NULL; term = term->tl_next)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
587 if (term->tl_job == job)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
588 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
589 vim_free(term->tl_title);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
590 term->tl_title = NULL;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
591 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
592 term->tl_status_text = NULL;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
593 redraw_buf_and_status_later(term->tl_buffer, VALID);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
594 did_one = TRUE;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
595 }
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
596 if (did_one)
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
597 redraw_statuslines();
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
598 if (curbuf->b_term != NULL)
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
599 {
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
600 if (curbuf->b_term->tl_job == job)
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
601 maketitle();
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
602 update_cursor(curbuf->b_term, TRUE);
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
603 }
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
604 }
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
605
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
606 /*
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
607 * Return TRUE if the job for "buf" is still running.
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
608 */
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
609 static int
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
610 term_job_running(term_T *term)
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
611 {
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
612 return term->tl_job != NULL && term->tl_job->jv_status == JOB_STARTED;
11757
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
613 }
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
614
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
615 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
616 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
617 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
618 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
619 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
620 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
621
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
622 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
623 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
624 {
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
625 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
626 {
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
627 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
628 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
629 else
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
630 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
631 }
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
632 }
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
633
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
634 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
635 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
636 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
637 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
638
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
639 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
640 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
641 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
642 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
643 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
644
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
645 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
646 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
647 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
648 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
649
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
650 /* TODO */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
651 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
652 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
653 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
654
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
655 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
656 handle_movecursor(
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
657 VTermPos pos,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
658 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
659 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
660 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 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
664 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
665
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
666 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
667 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
668 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
669 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
670 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
671 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
672 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
673 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
674 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
675
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
676 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
677 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
678 {
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
679 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
680 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
681 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
682
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
683 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
684 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
685
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
686 static int
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
687 handle_settermprop(
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
688 VTermProp prop,
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
689 VTermValue *value,
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
690 void *user)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
691 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
692 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
693
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
694 switch (prop)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
695 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
696 case VTERM_PROP_TITLE:
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
697 vim_free(term->tl_title);
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
698 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
699 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
700 term->tl_status_text = NULL;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
701 if (term == curbuf->b_term)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
702 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
703 break;
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
704
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
705 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
706 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
707 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
708 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
709 break;
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
710
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
711 default:
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
712 break;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
713 }
11786
98154b91e43a patch 8.0.0775: in a terminal the cursor is updated too often
Christian Brabandt <cb@256bit.org>
parents: 11778
diff changeset
714 /* 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
715 return 1;
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
716 }
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
717
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
718 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
719 * 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
720 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
721 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
722 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
723 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
724 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
725 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
726
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
727 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
728 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
729 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
730 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
731 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
732 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
733 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
734 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
735 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
736 }
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 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
739 return 1;
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
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
742 static VTermScreenCallbacks screen_callbacks = {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
743 handle_damage, /* damage */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
744 handle_moverect, /* moverect */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
745 handle_movecursor, /* movecursor */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
746 handle_settermprop, /* settermprop */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
747 NULL, /* bell */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
748 handle_resize, /* resize */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
749 NULL, /* sb_pushline */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
750 NULL /* sb_popline */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
751 };
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
752
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
753 /*
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
754 * 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
755 * 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
756 */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
757 static int
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
758 color2index(VTermColor *color)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
759 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
760 int red = color->red;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
761 int blue = color->blue;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
762 int green = color->green;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
763
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
764 if (red == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
765 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
766 if (green == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
767 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
768 if (blue == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
769 return 1; /* black */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
770 if (blue == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
771 return 5; /* blue */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
772 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
773 else if (green == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
774 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
775 if (blue == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
776 return 3; /* green */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
777 if (blue == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
778 return 7; /* cyan */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
779 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
780 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
781 else if (red == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
782 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
783 if (green == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
784 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
785 if (blue == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
786 return 2; /* red */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
787 if (blue == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
788 return 6; /* magenta */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
789 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
790 else if (green == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
791 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
792 if (blue == 0)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
793 return 4; /* yellow */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
794 if (blue == 224)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
795 return 8; /* white */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
796 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
797 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
798 else if (red == 128)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
799 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
800 if (green == 128 && blue == 128)
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
801 return 9; /* high intensity black */
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
802 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
803 else if (red == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
804 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
805 if (green == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
806 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
807 if (blue == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
808 return 10; /* high intensity red */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
809 if (blue == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
810 return 14; /* high intensity magenta */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
811 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
812 else if (green == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
813 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
814 if (blue == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
815 return 12; /* high intensity yellow */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
816 if (blue == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
817 return 16; /* high intensity white */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
818 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
819 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
820 else if (red == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
821 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
822 if (green == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
823 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
824 if (blue == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
825 return 13; /* high intensity blue */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
826 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
827 else if (green == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
828 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
829 if (blue == 64)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
830 return 11; /* high intensity green */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
831 if (blue == 255)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
832 return 15; /* high intensity cyan */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
833 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
834 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
835 if (t_colors >= 256)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
836 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
837 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
838 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
839 /* 24-color greyscale */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
840 static int cutoff[23] = {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
841 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
842 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
843 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
844 int i;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
845
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
846 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
847 if (red < cutoff[i])
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
848 return i + 233;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
849 return 256;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
850 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
851
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
852 /* 216-color cube */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
853 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
854 + ((green + 25) / 0x33) * 6
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
855 + (blue + 25) / 0x33;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
856 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
857 return 0;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
858 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
859
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
860 /*
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
861 * 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
862 */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
863 static int
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
864 cell2attr(VTermScreenCell *cell)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
865 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
866 int attr = 0;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
867
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
868 if (cell->attrs.bold)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
869 attr |= HL_BOLD;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
870 if (cell->attrs.underline)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
871 attr |= HL_UNDERLINE;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
872 if (cell->attrs.italic)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
873 attr |= HL_ITALIC;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
874 if (cell->attrs.strike)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
875 attr |= HL_STANDOUT;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
876 if (cell->attrs.reverse)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
877 attr |= HL_INVERSE;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
878 if (cell->attrs.strike)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
879 attr |= HL_UNDERLINE;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
880
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
881 #ifdef FEAT_GUI
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
882 if (gui.in_use)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
883 {
11745
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11743
diff changeset
884 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
885
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11743
diff changeset
886 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
887 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
888 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
889 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
890 else
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
891 #endif
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
892 #ifdef FEAT_TERMGUICOLORS
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
893 if (p_tgc)
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
894 {
11755
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
895 guicolor_T fg, bg;
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
896
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
897 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
898 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
899
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
900 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
901 }
11755
12fa6072977a patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Christian Brabandt <cb@256bit.org>
parents: 11753
diff changeset
902 else
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
903 #endif
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
904 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
905 return get_cterm_attr_idx(attr, color2index(&cell->fg),
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
906 color2index(&cell->bg));
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
907 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
908 return 0;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
909 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
910
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
911 /*
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
912 * Called to update the window that contains the terminal.
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
913 */
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
914 void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
915 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
916 {
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
917 term_T *term = wp->w_buffer->b_term;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
918 VTerm *vterm = term->tl_vterm;
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
919 VTermScreen *screen = vterm_obtain_screen(vterm);
11713
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
920 VTermState *state = vterm_obtain_state(vterm);
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
921 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
922
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
923 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
924 * 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
925 * 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
926 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
927 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
928 || (!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
929 {
11818
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
930 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
931 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
932 win_T *twp;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
933
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
934 FOR_ALL_WINDOWS(twp)
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
935 {
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
936 /* 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
937 * smallest size. */
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
938 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
939 {
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
940 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
941 rows = twp->w_height;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
942 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
943 cols = twp->w_width;
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
944 }
0f9780ee4207 patch 8.0.0789: splitting terminal window has resizing problems
Christian Brabandt <cb@256bit.org>
parents: 11816
diff changeset
945 }
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
946
b4d8f956eb18 patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents: 11729
diff changeset
947 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
948 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
949 rows);
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
950 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
951 }
11713
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
952
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
953 /* 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
954 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
955 position_cursor(wp, &pos);
2ec27561dd76 patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents: 11711
diff changeset
956
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
957 /* 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
958 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
959 {
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
960 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
961 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
962
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
963 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
964 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
965 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
966 {
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
967 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
968 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
969
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
970 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
971 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
972
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
973 /* 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
974 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
975 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
976 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
977 ScreenLines[off] = ' ';
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
978 #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
979 if (enc_utf8)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
980 ScreenLinesUC[off] = NUL;
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
981 #endif
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
982 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
983 else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
984 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
985 #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
986 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
987 {
22cef8face93 patch 8.0.0745: multi-byte characters in a terminal don't display well
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
988 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
989 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
990 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
991 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
992 {
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
993 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
994 if (enc_utf8)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
995 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
996 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
997 #else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
998 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
999 #endif
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1000 }
11743
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1001 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
1002
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1003 ++pos.col;
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1004 ++off;
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1005 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
1006 {
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
1007 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
1008 #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
1009 if (enc_utf8)
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1010 ScreenLinesUC[off] = NUL;
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1011 #endif
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1012 ++pos.col;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1013 ++off;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1014 }
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1015 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1016 }
11711
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
1017 else
dac96f8800be patch 8.0.0738: cannot use the mouse to resize a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11694
diff changeset
1018 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
1019
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1020 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
1021 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
1022 }
1ce1376fbbf8 patch 8.0.0725: a terminal window does not handle keyboard input
Christian Brabandt <cb@256bit.org>
parents: 11670
diff changeset
1023 }
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1024
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1025 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1026 * 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
1027 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1028 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1029 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
1030 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1031 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
1032 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
1033 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
1034 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
1035 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
1036
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1037 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
1038 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
1039 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
1040
74abb6c84984 patch 8.0.0761: options not set properly for a terminal buffer
Christian Brabandt <cb@256bit.org>
parents: 11755
diff changeset
1041 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
1042 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
1043 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
1044
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1045 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
1046 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
1047 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
1048 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
1049
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1050 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
1051 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
1052 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1053
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1054 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1055 * 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
1056 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1057 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1058 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
1059 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1060 VTerm *vterm;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1061 VTermScreen *screen;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1062
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1063 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
1064 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
1065 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
1066 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
1067 /* 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
1068 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
1069
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1070 /* 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
1071 * 'background' is "light". */
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1072 if (*p_bg == 'l')
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1073 {
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1074 VTermColor fg, bg;
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1075
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1076 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
1077 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
1078 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
1079 }
6141a21dd232 patch 8.0.0754: terminal window does not support colors
Christian Brabandt <cb@256bit.org>
parents: 11741
diff changeset
1080
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1081 /* 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
1082 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
1083 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1084
11772
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1085 /*
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1086 * 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
1087 */
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1088 char_u *
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1089 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
1090 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1091 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
1092 {
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1093 char_u *txt;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1094 size_t len;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1095
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1096 if (term->tl_title != NULL)
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1097 txt = term->tl_title;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1098 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
1099 txt = (char_u *)_("running");
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1100 else
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1101 txt = (char_u *)_("finished");
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1102 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
1103 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
1104 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
1105 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
1106 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
1107 }
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1108 return term->tl_status_text;
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1109 }
f33b9375ba03 patch 8.0.0768: terminal window status shows "[Scratch]"
Christian Brabandt <cb@256bit.org>
parents: 11764
diff changeset
1110
11816
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1111 /*
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1112 * 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
1113 */
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1114 int
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1115 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
1116 {
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1117 int abort = FALSE;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1118 term_T *term;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1119 typval_T tv;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1120
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1121 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
1122 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
1123 {
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1124 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
1125 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
1126 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
1127 }
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1128 return abort;
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
diff changeset
1129 }
f6575adc6ee8 patch 8.0.0788: MS-Windows: cannot build with terminal feature
Christian Brabandt <cb@256bit.org>
parents: 11814
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 # ifdef WIN3264
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1132
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1133 #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
1134 #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
1135
11774
edf1a2a247fa patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11772
diff changeset
1136 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
1137 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
1138 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
1139 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
1140 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
1141 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
1142 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
1143 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
1144 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
1145 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
1146 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
1147 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
1148 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
1149 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
1150
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1151 /**************************************
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1152 * 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
1153 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1154
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1155 #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
1156
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1157 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
1158
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1159 int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1160 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
1161 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1162 int i;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1163 static struct
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1164 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1165 char *name;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1166 FARPROC *ptr;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1167 } winpty_entry[] =
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1168 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1169 {"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
1170 {"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
1171 {"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
1172 {"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
1173 {"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
1174 {"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
1175 {"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
1176 {"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
1177 {"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
1178 {"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
1179 {"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
1180 {"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
1181 {"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
1182 {"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
1183 {NULL, NULL}
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
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1186 /* 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
1187 if (hWinPtyDLL)
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1188 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1189 /* 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
1190 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
1191 if (!hWinPtyDLL)
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 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
1194 return 0;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1195 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1196 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
1197 && 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
1198 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1199 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
1200 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
1201 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1202 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
1203 return 0;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1204 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1205 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1206
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1207 return 1;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1208 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1209
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 * 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
1212 * 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
1213 * 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
1214 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1215 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1216 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
1217 {
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1218 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
1219 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
1220 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
1221 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
1222 DWORD error;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1223 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
1224 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
1225 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
1226
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1227 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
1228 return FAIL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1229
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1230 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
1231 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
1232 return FAIL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1233
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1234 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
1235 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
1236 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1237
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1238 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
1239 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
1240 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1241
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1242 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
1243 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
1244 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1245
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1246 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
1247 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
1248 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
1249 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1250
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1251 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
1252 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
1253 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
1254 NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1255 p,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1256 NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1257 NULL,
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1258 &winpty_err);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1259 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
1260 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1261
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1262 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
1263 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
1264 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1265
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1266 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
1267 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
1268 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1269
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1270 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
1271 &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
1272 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1273
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1274 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
1275 (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
1276 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
1277 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
1278 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
1279 (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
1280 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
1281 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
1282 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
1283 (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
1284 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
1285 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
1286 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
1287
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1288 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
1289 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
1290 goto failed;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1291
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1292 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
1293 {
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1294 /* 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
1295 CloseHandle(jo);
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1296 jo = NULL;
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1297 }
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1298
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1299 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
1300 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
1301
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1302 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
1303
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1304 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
1305 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
1306
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1307 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
1308 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
1309 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
1310 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
1311 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
1312 ++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
1313 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
1314
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1315 return OK;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1316
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1317 failed:
11798
4d545cd33f0a patch 8.0.0781: MS-Windows: memory leak when using :terminal
Christian Brabandt <cb@256bit.org>
parents: 11794
diff changeset
1318 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
1319 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
1320 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
1321 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
1322 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
1323 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
1324 {
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1325 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
1326 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
1327 }
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1328 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
1329 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
1330 CloseHandle(jo);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1331 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
1332 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
1333 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
1334 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
1335 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
1336 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
1337 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
1338 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1339 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
1340 (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
1341
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1342 EMSG(msg);
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1343 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
1344 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1345 return FAIL;
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1346 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1347
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1348 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1349 * 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
1350 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1351 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1352 term_free(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
1353 {
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1354 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
1355 winpty_free(term->tl_winpty);
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1356 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
1357 winpty_config_free(term->tl_winpty_config);
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1358 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
1359 vterm_free(term->tl_vterm);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1360 }
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1361
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1362 /*
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1363 * 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
1364 */
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1365 static void
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1366 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
1367 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1368 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
1369 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1370
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1371 # else
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1372
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1373 /**************************************
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1374 * 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
1375 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1376
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1377 /*
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1378 * 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
1379 * 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
1380 * 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
1381 * 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
1382 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1383 static int
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1384 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
1385 {
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1386 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
1387 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
1388
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1389 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
1390
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1391 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
1392 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
1393 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
1394 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
1395 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
1396 ++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
1397
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
1398 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
1399 && 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
1400 && 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
1401 }
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 * 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
1405 */
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1406 static void
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1407 term_free(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
1408 {
11751
a1815c4f8b70 patch 8.0.0758: possible crash when using a terminal window
Christian Brabandt <cb@256bit.org>
parents: 11745
diff changeset
1409 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
1410 vterm_free(term->tl_vterm);
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1411 }
11753
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1412
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1413 /*
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1414 * 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
1415 */
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1416 static void
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1417 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
1418 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1419 /* 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
1420 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
1421 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1422 int fd = -1;
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1423 int part;
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1424
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1425 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
1426 {
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1427 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
1428 if (isatty(fd))
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1429 break;
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1430 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1431 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
1432 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
1433 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1434 }
f7c2473796b7 patch 8.0.0759: MS-Windows: terminal does not adjust size
Christian Brabandt <cb@256bit.org>
parents: 11751
diff changeset
1435
11719
13ecb3e64399 patch 8.0.0742: terminal feature does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11715
diff changeset
1436 # endif
11694
8f5840a59b31 patch 8.0.0730: terminal feature only supports Unix-like systems
Christian Brabandt <cb@256bit.org>
parents: 11690
diff changeset
1437
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1438 #endif /* FEAT_TERMINAL */