diff options
author | Kwon-Young Choi <kwon-young.choi@hotmail.fr> | 2019-05-16 21:58:07 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-05-16 21:58:07 +0200 |
commit | 9420a2127fbd6a7dc28ce4115da47bb56c57e235 (patch) | |
tree | 227dc65c52304e92a75e625791d3b076d3c4ab4b /runtime/doc/nvim_terminal_emulator.txt | |
parent | 3a699a790c14f5d5a4cedbd87455e8201604ecfa (diff) | |
download | rneovim-9420a2127fbd6a7dc28ce4115da47bb56c57e235.tar.gz rneovim-9420a2127fbd6a7dc28ce4115da47bb56c57e235.tar.bz2 rneovim-9420a2127fbd6a7dc28ce4115da47bb56c57e235.zip |
runtime/termdebug.vim #10015
* bugfix
* use NormalFloat for floating window background
* use floating window by default
* correctly use nvim_open_win()
* use nvim_win_set_option to set window local option
* use nvim_buf_set_option for buffer options
* renamed augroup to nvim_termdebug_close_hover to be consistent with
nvim_terminal_... augroup
Diffstat (limited to 'runtime/doc/nvim_terminal_emulator.txt')
-rw-r--r-- | runtime/doc/nvim_terminal_emulator.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt index fe5506fc4c..aba0571dc0 100644 --- a/runtime/doc/nvim_terminal_emulator.txt +++ b/runtime/doc/nvim_terminal_emulator.txt @@ -328,9 +328,9 @@ To change the name of the gdb command, set the "termdebugger" variable before invoking `:Termdebug`: > let termdebugger = "mygdb" -To use neovim floating windows for previewing variable evaluation, set the +To not use neovim floating windows for previewing variable evaluation, set the `g:termdebug_useFloatingHover` variable like this: > - let g:termdebug_useFloatingHover = 1 + let g:termdebug_useFloatingHover = 0 If you are a mouse person, you can also define a mapping using your right click to one of the terminal command like evaluate the variable under the |