aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/nvim_terminal_emulator.txt
diff options
context:
space:
mode:
authorcbarrete <62146989+cbarrete@users.noreply.github.com>2021-07-08 03:51:40 +0200
committerGitHub <noreply@github.com>2021-07-07 18:51:40 -0700
commitbd7a0b46a9daefe36e914136d6ce347a76efc57d (patch)
tree1c3f19980d8e154dd915b794d1982a133b10fc69 /runtime/doc/nvim_terminal_emulator.txt
parent4547137aaff32b20172870a549d3a28a3c7adf1c (diff)
downloadrneovim-bd7a0b46a9daefe36e914136d6ce347a76efc57d.tar.gz
rneovim-bd7a0b46a9daefe36e914136d6ce347a76efc57d.tar.bz2
rneovim-bd7a0b46a9daefe36e914136d6ce347a76efc57d.zip
doc: remove mentions of compile-time flags #14935
Nvim always compiles everything in so those are useless at best and confusing at worst.
Diffstat (limited to 'runtime/doc/nvim_terminal_emulator.txt')
-rw-r--r--runtime/doc/nvim_terminal_emulator.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt
index 5885b20ab7..6dbc54463c 100644
--- a/runtime/doc/nvim_terminal_emulator.txt
+++ b/runtime/doc/nvim_terminal_emulator.txt
@@ -324,12 +324,10 @@ This works slightly differently:
mode with <Esc>, then you can move around in the buffer, copy/paste, etc.
Go back to editing the gdb command with any command that starts Insert mode,
such as `a` or `i`.
-- The program being debugged will run in a separate window. On MS-Windows
- this is a new console window. On Unix, if the |+terminal| feature is
- available a Terminal window will be opened to run the debugged program in.
+- A separate :terminal window will be opened to run the debugged program in.
*termdebug_use_prompt*
-Prompt mode can be used even when the |+terminal| feature is present with: >
+Prompt mode can be used with: >
let g:termdebug_use_prompt = 1
<