diff options
| author | Sean Dewar <6256228+seandewar@users.noreply.github.com> | 2025-12-19 23:32:09 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-19 23:32:09 +0000 |
| commit | eac2f0443e032ba238ca6b4a9e2fd6135be454b3 (patch) | |
| tree | c584f1aa123dddaed1e50722511d6558b8c6d781 /runtime/lua/vim/_meta/options.lua | |
| parent | 5f22cf5af3425fb0d461bf82220a633bebe10932 (diff) | |
feat(tag): respect jumpoptions=view when popping tagstack (#37021)
Problem: jumpoptions=view has no effect when popping from the tagstack.
Solution: make it work.
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
| -rw-r--r-- | runtime/lua/vim/_meta/options.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index afbc759b90..2d5481569a 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -3795,8 +3795,9 @@ vim.go.js = vim.go.joinspaces --- jumping to a location. `jumplist-stack` --- --- view When moving through the jumplist, `changelist`, ---- `alternate-file` or using `mark-motions` try to ---- restore the `mark-view` in which the action occurred. +--- `alternate-file`, using `mark-motions` or when popping +--- the `tagstack` try to restore the `mark-view` in which +--- the action occurred. --- --- clean Remove unloaded buffers from the jumplist. --- EXPERIMENTAL: this flag may change in the future. |
