aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/_meta/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-09-19 18:05:27 +0800
committerGitHub <noreply@github.com>2024-09-19 18:05:27 +0800
commit7dbbaaec3fae62667b273c4c2d362bee91316083 (patch)
tree4d3c134477abbb78c08fd2ba89f6e7103edc4d65 /runtime/lua/vim/_meta/options.lua
parent0fe4362e216e659e5236cf49beba0e10cce0579d (diff)
downloadrneovim-7dbbaaec3fae62667b273c4c2d362bee91316083.tar.gz
rneovim-7dbbaaec3fae62667b273c4c2d362bee91316083.tar.bz2
rneovim-7dbbaaec3fae62667b273c4c2d362bee91316083.zip
refactor!: rename 'jumpoptions' flag "unload" to "clean" (#30418)
Follow-up to #29347
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r--runtime/lua/vim/_meta/options.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua
index 7456be0ae0..923d279887 100644
--- a/runtime/lua/vim/_meta/options.lua
+++ b/runtime/lua/vim/_meta/options.lua
@@ -3577,11 +3577,11 @@ vim.go.js = vim.go.joinspaces
--- |alternate-file` or using `mark-motions` try to
--- restore the `mark-view` in which the action occurred.
---
---- unload Remove unloaded buffers from the jumplist.
+--- clean Remove unloaded buffers from the jumplist.
--- EXPERIMENTAL: this flag may change in the future.
---
--- @type string
-vim.o.jumpoptions = "unload"
+vim.o.jumpoptions = "clean"
vim.o.jop = vim.o.jumpoptions
vim.go.jumpoptions = vim.o.jumpoptions
vim.go.jop = vim.go.jumpoptions