jones-nvim-config/lua/commands.lua

7 lines
161 B
Lua
Raw Normal View History

2024-05-05 12:55:15 +00:00
local api = vim.api
-- Show file path in command bar
api.nvim_create_user_command("ShowFilePath", function()
print(vim.fn.expand("%:p"))
end, { bang = true })