vim-fern icon indicating copy to clipboard operation
vim-fern copied to clipboard

E19 when jumping back to fern buffer in nvim

Open tomtomjhj opened this issue 4 months ago • 2 comments

  1. In vim-fern directory, run nvim (0.10.2) as follows:
    nvim --clean --cmd 'set rtp^=.' -c 'Fern .'
    
  2. Move the cursor to README.md, and <CR> on it.
  3. Jump back to the fern buffer with <C-o>.
  4. Jump to README.md with <C-i>
  5. Jump back to the fern buffer with <C-o>
  6. E19: Mark has invalid line number

Interestingly, the line number of the position in jumplist keeps increasing after each <C-o>, <C-i> cycle:

# In README.md

:ju
 jump line  col file/text
   2     1    0 fern://79154091/file:///home/user/.vim/plugged/vim-fern$
   1    41    0 fern://79154091/file:///home/user/.vim/plugged/vim-fern$
>  0     1    0 # 🌿 vim-fern

# run <C-o> <C-i>

:ju
 jump line  col file/text
   2     1    0 fern://79154091/file:///home/user/.vim/plugged/vim-fern$
   1    49    0 fern://79154091/file:///home/user/.vim/plugged/vim-fern$

Vim (9.1.771) does not raise E19, but you can see the line number increasing after each <C-o>, <C-i>.

tomtomjhj avatar Oct 20 '24 05:10 tomtomjhj