Is there a special meaning to Neovim when trying to open files that start with a + sign?
I try to open a +config.el file using nvim and it does not open. Instead there is a message saying E492 Not an editor command
So it seems adding + to the start of a file name makes neovim thing its some kind of command?
Any way to convince Neovim that its just a file to be opened without having to first rename the file 🙂
Nice! Related: one can call nvim file.txt +42 to open the file at line 42 directly.
Arguments to vim/nvim beginning with a + are interpreted as ex commands to be exectued after starting. E.g.:
nvim +q
Will start nvim and quit immediatelySome solutions outlined https://superuser.com/questions/1591616/how-to-use-vim-to-open-files-that-begin-with-a-plus-sign-for-example-foo-out.
Thanks, that was the answer I was looking for r2d2