aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/nvim_terminal_emulator.txt
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-02-22 00:07:26 +0800
committerGitHub <noreply@github.com>2023-02-22 00:07:26 +0800
commit344a1ee8e6b7d78120f8393d1babfd285e866334 (patch)
tree0cc3f034533cf038b52f54ded07433b7c86d3cff /runtime/doc/nvim_terminal_emulator.txt
parentee26b227e15abc263195d4c746d5dba9f0e6dec4 (diff)
downloadrneovim-344a1ee8e6b7d78120f8393d1babfd285e866334.tar.gz
rneovim-344a1ee8e6b7d78120f8393d1babfd285e866334.tar.bz2
rneovim-344a1ee8e6b7d78120f8393d1babfd285e866334.zip
docs: fix typos (#22353)
Diffstat (limited to 'runtime/doc/nvim_terminal_emulator.txt')
-rw-r--r--runtime/doc/nvim_terminal_emulator.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt
index 96f99528ed..50a241f515 100644
--- a/runtime/doc/nvim_terminal_emulator.txt
+++ b/runtime/doc/nvim_terminal_emulator.txt
@@ -239,7 +239,7 @@ gdb window and use a "print" command, e.g.: >
print *eap
If mouse pointer movements are working, Vim will also show a balloon when the
mouse rests on text that can be evaluated by gdb.
-You can also use the "K" mapping that will either use neovim floating windows
+You can also use the "K" mapping that will either use Nvim floating windows
if available to show the results or print below the status bar.
Now go back to the source window and put the cursor on the first line after
@@ -428,14 +428,14 @@ If the command needs an argument use a List: >vim
If there is no g:termdebug_config you can use: >vim
let g:termdebugger = ['rr', 'replay', '--']
-To not use neovim floating windows for previewing variable evaluation, set the
+To not use Nvim floating windows for previewing variable evaluation, set the
`g:termdebug_useFloatingHover` variable like this: >vim
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
cursor: >vim
- nnoremap <RightMouse> :Evaluate<CR>
+ nnoremap <RightMouse> :Evaluate<CR>
or set/unset a breakpoint: >vim
nnoremap <RightMouse> :Break<CR>