Open ghost opened 2 years ago
i use neovim a lot, and i want to make z.lua to remember the files/directories that i open using the nvim command. is that possible ?
z.lua
nvim
you could run an "add directory" command to an event (say BufReadPost)
BufReadPost
The command should be something like eval "$(env luajit /your/custom/path/to/z.lua/z.lua --init)"; _zlua add %s
eval "$(env luajit /your/custom/path/to/z.lua/z.lua --init)"; _zlua add %s
i use neovim a lot, and i want to make
z.lua
to remember the files/directories that i open using thenvim
command. is that possible ?