diff options
author | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-29 19:22:27 -0500 |
---|---|---|
committer | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-29 19:22:27 -0500 |
commit | 5ffe1425c948a9f6df46cbe151815b0c5fb22191 (patch) | |
tree | 526ae88ba0dd86900d043d54218b3ffaf02e986d /man | |
parent | 4c960c3d78d9aaae77c469c91c88280c9f5efbf2 (diff) | |
parent | 0e546d8b384098d704c13401731a93b926bcd22f (diff) | |
download | rneovim-5ffe1425c948a9f6df46cbe151815b0c5fb22191.tar.gz rneovim-5ffe1425c948a9f6df46cbe151815b0c5fb22191.tar.bz2 rneovim-5ffe1425c948a9f6df46cbe151815b0c5fb22191.zip |
Merge pull request #3165 from blueyed/dont-wrap-DECSCUSR-for-tmux
[RFC] Do not use TMUX_WRAP for DECSCUSR sequence
Reviewed-by: Felipe Morales
Reviewed-by: Justin M. Keyes
Reviewed-by: Michael Reed
Diffstat (limited to 'man')
-rw-r--r-- | man/nvim.1 | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/man/nvim.1 b/man/nvim.1 index f9c4e24d0b..7e8cd5b809 100644 --- a/man/nvim.1 +++ b/man/nvim.1 @@ -1,4 +1,4 @@ -.Dd November 11, 2015 +.Dd January 28, 2016 .Dt NVIM 1 .Os .Sh NAME @@ -373,8 +373,24 @@ Used to set the 'shell' option, which determines the shell used by the command. .It Ev NVIM_TUI_ENABLE_CURSOR_SHAPE If defined, change the cursor shape to a vertical bar while in insert mode. -Requires that the host terminal support the DECSCUSR CSI escape sequence. +Requires that the host terminal supports the DECSCUSR CSI escape sequence. Has no effect in GUIs. +.Pp +Depending on the terminal emulator, using this option with +.Nm +under +.Xr tmux 1 +might require adding the following to +.Pa ~/.tmux.conf : +.Bd -literal -offset indent +set -ga terminal-overrides ',*:Ss=\eE[%p1%d q:Se=\eE[2 q' +.Ed +.Pp +See +.Ic terminal-overrides +in the +.Xr tmux 1 +manual page for more information. .It Ev NVIM_TUI_ENABLE_TRUE_COLOR If defined, assume the host terminal supports 24 bit colors. Has no effect in GUIs. |