Neovim
Neovim is a modal text editor forked off of Vim in 2014. Being modal means that you do not simply type text on screen, but the behavior and functionality of the editor changes entirely depending on the mode.
The most common and most used mode, the "normal mode" for Neovim is to essentially turn your keyboard in to hotkeys with which you can navigate and manipulate text. Several modes exist, but two other most common ones are "insert mode" where you type in text directly as if it was a traditional text editor, and "visual mode" where you select text.
Neovim seeks to enable further community participation in its development and to make drastic changes without turning it in to something that is "not Vim". Neovim also seeks to enable embedding the editor within GUI applications.
The Neovim logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.
view the rest of the comments
Ok, found a few errors, but only one in your code. I have a workaround though for the bug in nvim-session-manager.
There's, at the very least, a bug in the code of neovim-session-manager which errors out even if you get the correct name while sidebar is open, before crashing. This may be an issue with sidebar though but session manager shouldn't crash neovim at all.
For your bug, in your binding, you should add one to the line number to get the correct index. So,
local filename = filenames(line + 1)
will work. This isn't what caused your issue howeverThe second issue, is with you having the sidebar open. This, for some reason, crashes neovim for me. The following code closes the sidebar before running the command.
This, for me, works. I'll update later with my full code snippet along with how to output tables in lua.
Edit: Here's the code that worked for me, incase I missed something. You can use the dump function at the top to format the table into a string. Use
print(dump(file))
to view it:Oh man, i can't believe it was only me being off by one. I'm pretty surprised i got as far as i did, considering my lua knowledge boils down to some config functions in Lazy Packages.
I appreciate you looking into this. This works perfectly. I'll probably play around with coloring stuff a bit, but the functionality works.