fix: restore buflisted on jumplist buffer re-entry (#71)
* fix: restore `buflisted` on jumplist buffer re-entry Problem: Neovim's jumplist machinery re-enters canola buffers via an internal `:edit`-equivalent path, which unconditionally sets `buflisted = true`. The existing workaround in `open()` and `open_float()` only covers canola-initiated navigation, leaving `<C-o>` and `<C-i>` unhandled. Solution: Apply the same `buf_options.buflisted` guard in the `BufEnter` autocmd, directly after `set_win_options()`. This fires on every buffer entry — including all jumplist paths — and mirrors the pattern already used at the two `:edit` callsites. * docs: mark upstream #302 as fixed in tracker
This commit is contained in:
parent
c3de0004d1
commit
41f375ee9e
2 changed files with 5 additions and 1 deletions
|
|
@ -28,6 +28,7 @@ Bugs fixed in this fork that remain open upstream.
|
|||
|
||||
| Upstream issue | Description | PR |
|
||||
| ------------------------------------------------------- | ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| [#302](https://github.com/stevearc/oil.nvim/issues/302) | `buflisted=true` after jumplist nav | [#71](https://github.com/barrettruth/canola.nvim/pull/71) ([`a078bcf`](https://github.com/barrettruth/canola.nvim/commit/a078bcf)) |
|
||||
| [#632](https://github.com/stevearc/oil.nvim/issues/632) | Preview + move = copy | [#12](https://github.com/barrettruth/canola.nvim/pull/12) ([`fe16993`](https://github.com/barrettruth/canola.nvim/commit/fe16993)) |
|
||||
| [#642](https://github.com/stevearc/oil.nvim/issues/642) | W10 warning under `nvim -R` | [`ca834cf`](https://github.com/barrettruth/canola.nvim/commit/ca834cf) |
|
||||
| [#670](https://github.com/stevearc/oil.nvim/issues/670) | Multi-directory cmdline args ignored | [#11](https://github.com/barrettruth/canola.nvim/pull/11) ([`70861e5`](https://github.com/barrettruth/canola.nvim/commit/70861e5)) |
|
||||
|
|
@ -74,7 +75,7 @@ addressed, `open` = not yet triaged.
|
|||
| [#289](https://github.com/stevearc/oil.nvim/issues/289) | open | Show absolute path toggle (P2) |
|
||||
| [#294](https://github.com/stevearc/oil.nvim/issues/294) | open | Can't handle emojis in filenames (P2) |
|
||||
| [#298](https://github.com/stevearc/oil.nvim/issues/298) | open | Open float on neovim directory startup (P2) |
|
||||
| [#302](https://github.com/stevearc/oil.nvim/issues/302) | open | C-o parent nav makes buffer buflisted (P0) |
|
||||
| [#302](https://github.com/stevearc/oil.nvim/issues/302) | fixed | `buflisted=true` after jumplist nav — [#71](https://github.com/barrettruth/canola.nvim/pull/71) ([`a078bcf`](https://github.com/barrettruth/canola.nvim/commit/a078bcf)) |
|
||||
| [#303](https://github.com/stevearc/oil.nvim/issues/303) | open | Preview in float window mode (P2) |
|
||||
| [#325](https://github.com/stevearc/oil.nvim/issues/325) | open | oil-ssh error from command line (P0) |
|
||||
| [#330](https://github.com/stevearc/oil.nvim/issues/330) | open | File opens in floating modal |
|
||||
|
|
|
|||
|
|
@ -1343,6 +1343,9 @@ M.setup = function(opts)
|
|||
vim.fn.setreg('#', orig_buffer)
|
||||
end
|
||||
view.set_win_options()
|
||||
if config.buf_options.buflisted ~= nil then
|
||||
vim.api.nvim_set_option_value('buflisted', config.buf_options.buflisted, { buf = 0 })
|
||||
end
|
||||
vim.w.canola_did_enter = true
|
||||
elseif vim.fn.isdirectory(bufname) == 0 then
|
||||
-- Only run this logic if we are *not* in an canola buffer (and it's not a directory, which
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue