Home
last modified time | relevance | path

Searched refs:termwinkey (Results 1 – 12 of 12) sorted by relevance

/vim-8.2.3635/runtime/doc/
H A Dterminal.txt87 See option 'termwinkey' for specifying another key instead of CTRL-W that
88 will work like CTRL-W. However, typing 'termwinkey' twice sends 'termwinkey'
90 'termwinkey' CTRL-W move focus to the next window
91 'termwinkey' : enter an Ex command
92 'termwinkey' 'termwinkey' send 'termwinkey' to the job in the terminal
93 'termwinkey' . send 'termwinkey' to the job in the terminal
94 'termwinkey' CTRL-\ send a CTRL-\ to the job in the terminal
95 'termwinkey' N go to terminal Normal mode, see below
96 'termwinkey' CTRL-N same as CTRL-W N |t_CTRL-W_N|
97 'termwinkey' CTRL-C same as CTRL-W CTRL-C |t_CTRL-W_CTRL-C|
[all …]
H A Dwindows.txt245 CTRL-W or 'termwinkey'.
H A Dquickref.txt943 'termwinkey' 'twk' key that precedes a Vim command in a terminal
H A Dindex.txt1116 This assumes 'termwinkey' is not set.
H A Doptions.txt7938 *'termwinkey'* *'twk'*
7939 'termwinkey' 'twk' string (default "")
7944 :set termwinkey=<C-L>
7947 line. If 'termwinkey' is set to CTRL-L then CTRL-L : gets you to the
H A Dtags1130 'termwinkey' options.txt /*'termwinkey'*
H A Dversion8.txt14646 'termwinkey'
25438 Problem: No test for 'termwinkey'.
26442 Problem: Use of 'termwinkey' is inconsistent.
/vim-8.2.3635/src/
H A Dterminal.c2534 int termwinkey = 0; in terminal_loop() local
2550 termwinkey = string_to_key(curwin->w_p_twk, TRUE); in terminal_loop()
2551 if (termwinkey == Ctrl_W) in terminal_loop()
2552 termwinkey = 0; in terminal_loop()
2611 if ((c == (termwinkey == 0 ? Ctrl_W : termwinkey) || c == Ctrl_BSL) in terminal_loop()
2659 raw_c = ctrl_to_raw_c(termwinkey == 0 ? Ctrl_W : termwinkey); in terminal_loop()
2678 else if (termwinkey == 0 || c != termwinkey) in terminal_loop()
/vim-8.2.3635/src/testdir/
H A Dtest_terminal2.vim155 set termwinkey=<C-L>
186 set termwinkey&
H A Dtest_options.vim1163 " Bug: This doesn't work for the 'cedit' and 'termwinkey' options
/vim-8.2.3635/runtime/syntax/
H A Dvim.vim33 …iso smd spellcapcheck splitright ssop sts swapsync syn tag tagstack tc termwinkey textwidth tildeo…
/vim-8.2.3635/runtime/
H A Doptwin.vim528 call <SID>AddOption("termwinkey", gettext("key that precedes Vim commands in a terminal window"))