Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lua/namu/namu_symbols/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ M.defaults = {
"Function",
"Method",
"Class",
"Struct",
"Module",
"Property",
"Variable",
Expand Down
2 changes: 1 addition & 1 deletion lua/namu/selecta/selecta.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1480,6 +1480,7 @@ local SPECIAL_KEYS = {
ESC = vim.api.nvim_replace_termcodes("<ESC>", true, true, true),
BS = vim.api.nvim_replace_termcodes("<BS>", true, true, true),
MOUSE = vim.api.nvim_replace_termcodes("<LeftMouse>", true, true, true),
CTRL_C = vim.api.nvim_replace_termcodes("<C-c>", true, true, true),
}

---Delete last word from query
Expand Down Expand Up @@ -1730,7 +1731,6 @@ local function handle_char(state, char, opts)
local movement_keys = get_movement_keys(opts)

-- Handle custom keymaps first

if opts.custom_keymaps and type(opts.custom_keymaps) == "table" then
for _, action in pairs(opts.custom_keymaps) do
-- Check if action is properly formatted
Expand Down
2 changes: 1 addition & 1 deletion plugin/namu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local command_descriptions = {
workspace = "Search workspace symbols with LSP",
treesitter = "Show symbols using Treesitter",
diagnostics = "Show diagnostics for current buffer (use 'diagnostics workspace' for workspace diagnostics)",
open = "Show symbols from all open buffers",
watchtower = "Show symbols from all open buffers",
help = "Show help information (use 'help symbols' or 'help analysis' for detailed views)",
}
-- Argument validators
Expand Down