diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-21 18:11:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-21 18:11:27 +0100 |
commit | 52dbb5ea7fde4a77178bc59e2383ca40df503812 (patch) | |
tree | 15ff54bb446f2595defa95bfcafb6616b8d62aff /runtime/doc | |
parent | 550586015232ecc4f68b3479fa8ba2cf81c76e7b (diff) | |
download | vim-git-52dbb5ea7fde4a77178bc59e2383ca40df503812.tar.gz |
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vimv8.0.1330
Problem: MS-Windows: job in terminal can't get back to Vim.
Solution: set VIM_SERVERNAME in the environment. (Yasuhiro Matsumoto, closes
#2360)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/terminal.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/runtime/doc/terminal.txt b/runtime/doc/terminal.txt index b3df8ce04..2a1972c92 100644 --- a/runtime/doc/terminal.txt +++ b/runtime/doc/terminal.txt @@ -1,4 +1,4 @@ -*terminal.txt* For Vim version 8.0. Last change: 2017 Nov 12 +*terminal.txt* For Vim version 8.0. Last change: 2017 Nov 17 VIM REFERENCE MANUAL by Bram Moolenaar @@ -106,6 +106,10 @@ BufWinEnter autocommand event is triggered. This makes it possible to set options specifically for the window and buffer. Example: > au BufWinEnter * if &buftype == 'terminal' | setlocal bufhidden=hide | endif +Mouse events (click and drag) are passed to the terminal. Mouse move events +are only passed when Vim itself is receiving them. For a terminal that is +when 'balloonevalterm' is enabled. + Size and color ~ *terminal-size-color* @@ -335,6 +339,9 @@ to point to the right file, if needed. If you have both the 32-bit and 64-bit version, rename to winpty32.dll and winpty64.dll to match the way Vim was build. +Environment variables are used to pass information to the running job: + VIM_SERVERNAME v:servername + ============================================================================== 2. Remote testing *terminal-testing* |