aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian A. Weston <MrChozo@gmail.com>2024-12-06 04:48:50 -0800
committerGitHub <noreply@github.com>2024-12-06 04:48:50 -0800
commit367182abd501876819620eb1a353fc187e34849c (patch)
tree1ad09d8d2e1432d048cfc6973e11093f53148cd8
parente788d1a3a903ed176a4b20891dd99272596f22d0 (diff)
downloadrneovim-367182abd501876819620eb1a353fc187e34849c.tar.gz
rneovim-367182abd501876819620eb1a353fc187e34849c.tar.bz2
rneovim-367182abd501876819620eb1a353fc187e34849c.zip
docs: delineate blocks/list items #30973
Problem: Paragraph below bulleted list was joined to last list item instead of dropping below as expected. Same with "Notes:" paragraph below it. Solution: Added necessary newlines.
-rw-r--r--runtime/doc/cmdline.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt
index 7967e2ce1a..f6a3e95b35 100644
--- a/runtime/doc/cmdline.txt
+++ b/runtime/doc/cmdline.txt
@@ -41,15 +41,19 @@ thus you cannot edit beyond that.
The command-lines that you enter are remembered in a history table. You can
recall them with the up and down cursor keys. There are actually five
history tables:
+
- one for ':' commands
- one for search strings
- one for expressions
- one for input lines, typed for the |input()| function.
- one for debug mode commands
+
These are completely separate. Each history can only be accessed when
entering the same type of line.
Use the 'history' option to set the number of lines that are remembered.
+
Notes:
+
- When you enter a command-line that is exactly the same as an older one, the
old one is removed (to avoid repeated commands moving older commands out of
the history).