diff options
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 8943faad7d..9d50b04221 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -4515,7 +4515,7 @@ return { { abbreviation = 'jop', cb = 'did_set_jumpoptions', - defaults = { if_true = 'unload' }, + defaults = { if_true = 'clean' }, deny_duplicates = true, desc = [=[ List of words that change the behavior of the |jumplist|. @@ -4529,7 +4529,7 @@ return { |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. ]=], expand_cb = 'expand_set_jumpoptions', |