diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2015-04-09 11:14:22 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2015-04-09 11:14:22 -0400 |
commit | 4a7364c807a5ff03e7e4fd94549bc64a00f6ea99 (patch) | |
tree | 0a40a1766194763d035e7afdfd74a172349e0d08 /runtime/doc/nvim_terminal_emulator.txt | |
parent | bae1da3f74ec91b8a79c764aa0277d96c932b2aa (diff) | |
parent | cd7b910e8144dcc6092c7b1e1bfdc3193fdd643b (diff) | |
download | rneovim-4a7364c807a5ff03e7e4fd94549bc64a00f6ea99.tar.gz rneovim-4a7364c807a5ff03e7e4fd94549bc64a00f6ea99.tar.bz2 rneovim-4a7364c807a5ff03e7e4fd94549bc64a00f6ea99.zip |
Merge pull request #2374 from mhinz/hl-group-termcursor
[RDY] Add new highlight groups TermCursor and TermCursorNC
Diffstat (limited to 'runtime/doc/nvim_terminal_emulator.txt')
-rw-r--r-- | runtime/doc/nvim_terminal_emulator.txt | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt index 160242a7fa..850391200e 100644 --- a/runtime/doc/nvim_terminal_emulator.txt +++ b/runtime/doc/nvim_terminal_emulator.txt @@ -99,16 +99,13 @@ variables (set via the |TermOpen| autocmd): - `{g,b}:terminal_color_$NUM`: The terminal color palette, where `$NUM` is the color index, between 0 and 255 inclusive. This only affects UIs with RGB capabilities; for normal terminals the color index is simply forwarded. -- `{g,b}:terminal_focused_cursor_highlight`: Highlight group applied to the - cursor in a focused terminal. The default equivalent to having a group with - `cterm=reverse` `gui=reverse``. -- `{g,b}:terminal_unfocused_cursor_highlight`: Highlight group applied to the - cursor in an unfocused terminal. The default equivalent to having a group with - `ctermbg=11` `guibg=#fce94f``. The configuration variables are only processed when the terminal starts, which is why it needs to be done with the |TermOpen| autocmd or setting global variables before the terminal is started. +The terminal cursor can be highlighted via |hl-TermCursor| and +|hl-TermCursorNC|. + ============================================================================== vim:tw=78:ts=8:noet:ft=help:norl: |