From 9420a2127fbd6a7dc28ce4115da47bb56c57e235 Mon Sep 17 00:00:00 2001 From: Kwon-Young Choi Date: Thu, 16 May 2019 21:58:07 +0200 Subject: 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 --- runtime/doc/nvim_terminal_emulator.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/doc') 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 -- cgit