blob: 815886f896c4539aa8caf031fa22991562c08c03 (
plain) (
blame)
1
2
3
4
5
6
7
|
vim.api.nvim_create_user_command('Inspect', function(cmd)
if cmd.bang then
vim.pretty_print(vim.inspect_pos())
else
vim.show_pos()
end
end, { desc = 'Inspect highlights and extmarks at the cursor', bang = true })
|