Get The Name Of The Current File In Neovim
local current_buffer_name = vim.api.nvim_buf_get_name(0)
print(current_buffer_name)
:echo nvim_buf_get_name(0)
Notes
-
Where [TODO: Code shorthand span ] is for the current buffer
-
Can also pass a buffer number for another buffer
~ fin ~