Compare commits
No commits in common. "c35082b875a90d0cc05ee449890c0075d5cdf294" and "c3de0004d18e4578997b7330f31e419f5a50a87e" have entirely different histories.
c35082b875
...
c3de0004d1
2 changed files with 1 additions and 5 deletions
|
|
@ -28,7 +28,6 @@ Bugs fixed in this fork that remain open upstream.
|
||||||
|
|
||||||
| Upstream issue | Description | PR |
|
| 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)) |
|
| [#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) |
|
| [#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)) |
|
| [#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)) |
|
||||||
|
|
@ -75,7 +74,7 @@ addressed, `open` = not yet triaged.
|
||||||
| [#289](https://github.com/stevearc/oil.nvim/issues/289) | open | Show absolute path toggle (P2) |
|
| [#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) |
|
| [#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) |
|
| [#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) | fixed | `buflisted=true` after jumplist nav — [#71](https://github.com/barrettruth/canola.nvim/pull/71) ([`a078bcf`](https://github.com/barrettruth/canola.nvim/commit/a078bcf)) |
|
| [#302](https://github.com/stevearc/oil.nvim/issues/302) | open | C-o parent nav makes buffer buflisted (P0) |
|
||||||
| [#303](https://github.com/stevearc/oil.nvim/issues/303) | open | Preview in float window mode (P2) |
|
| [#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) |
|
| [#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 |
|
| [#330](https://github.com/stevearc/oil.nvim/issues/330) | open | File opens in floating modal |
|
||||||
|
|
|
||||||
|
|
@ -1343,9 +1343,6 @@ M.setup = function(opts)
|
||||||
vim.fn.setreg('#', orig_buffer)
|
vim.fn.setreg('#', orig_buffer)
|
||||||
end
|
end
|
||||||
view.set_win_options()
|
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
|
vim.w.canola_did_enter = true
|
||||||
elseif vim.fn.isdirectory(bufname) == 0 then
|
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
|
-- 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