diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-01-21 12:21:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-21 12:21:56 +0100 |
commit | 10864cd93920715dd7251fd160d6056135cebdaf (patch) | |
tree | 029055071cb87bbbf6b56fe5803e751c8fa6ec97 /man/nvim.1 | |
parent | 030349d85239421fb44f00e01b833d2a12cfd40a (diff) | |
parent | ef753a76b95425e22638005f813cb2f22c6a0cfc (diff) | |
download | rneovim-10864cd93920715dd7251fd160d6056135cebdaf.tar.gz rneovim-10864cd93920715dd7251fd160d6056135cebdaf.tar.bz2 rneovim-10864cd93920715dd7251fd160d6056135cebdaf.zip |
Merge #5977 from justinmk/tui-cursor-shape
tui: enable NVIM_TUI_ENABLE_CURSOR_SHAPE by default
Diffstat (limited to 'man/nvim.1')
-rw-r--r-- | man/nvim.1 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/man/nvim.1 b/man/nvim.1 index 70bf480f2b..98d97c2d5a 100644 --- a/man/nvim.1 +++ b/man/nvim.1 @@ -372,9 +372,10 @@ Used to set the 'shell' option, which determines the shell used by the .Ic :terminal 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 supports the DECSCUSR CSI escape sequence. -Has no effect in GUIs. +Set to 0 to prevent Nvim from changing the cursor shape. +Set to 1 to enable non-blinking mode-sensitive cursor (this is the default). +Set to 2 to enable blinking mode-sensitive cursor. +Host terminal must support the DECSCUSR CSI escape sequence. .Pp Depending on the terminal emulator, using this option with .Nm |