aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-10-07 07:30:50 +0800
committerGitHub <noreply@github.com>2024-10-07 07:30:50 +0800
commitd0dc2920e11363ead767c438f2785c73853bdc46 (patch)
treedcaa715d3348b8298d01cc57190c867ca7ead538 /src/nvim/options.lua
parent27f3750817b188c9ababe94eade22c30d8819585 (diff)
downloadrneovim-d0dc2920e11363ead767c438f2785c73853bdc46.tar.gz
rneovim-d0dc2920e11363ead767c438f2785c73853bdc46.tar.bz2
rneovim-d0dc2920e11363ead767c438f2785c73853bdc46.zip
vim-patch:fd4e47e: runtime(doc): clarify the effect of 'startofline' option (#30701)
fixes: vim/vim#15794 https://github.com/vim/vim/commit/fd4e47e06b77fa26cb38f057aba950449e1f47f6 Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 61dc1a8daa..0d3f7154af 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -8075,7 +8075,8 @@ return {
non-blank of the line. When off the cursor is kept in the same column
(if possible). This applies to the commands:
- CTRL-D, CTRL-U, CTRL-B, CTRL-F, "G", "H", "M", "L", "gg"
- - "d", "<<" and ">>" with a linewise operator
+ - "d", "<<", "==" and ">>" with a linewise operator
+ (|operator-resulting-pos|)
- "%" with a count
- buffer changing commands (CTRL-^, :bnext, :bNext, etc.)
- Ex commands that only have a line number, e.g., ":25" or ":+".