Skip to content
Merged
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
2 changes: 1 addition & 1 deletion lua/namu/core/symbol_utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ function M.show_picker(
end

local picker_opts = {
title = opts.title or title or "Namu Symbols",
title = opts.title or title or " Symbols ",
fuzzy = false,
preserve_order = true,
window = opts.window,
Expand Down
15 changes: 2 additions & 13 deletions lua/namu/namu_symbols/symbols.lua
Original file line number Diff line number Diff line change
Expand Up @@ -243,18 +243,7 @@ function M.show(config, opts)
text = symbol_cache.source == "lsp" and "󰿘 " or " ",
hl_group = "NamuSourceIndicator",
}
symbol_utils.show_picker(
items,
state,
config,
ui,
selecta,
" Namu Symbols ",
notify_opts,
false,
"buffer",
prompt_info
)
symbol_utils.show_picker(items, state, config, ui, selecta, " Symbols ", notify_opts, false, "buffer", prompt_info)
return
end

Expand Down Expand Up @@ -318,7 +307,7 @@ function M.show(config, opts)
config,
ui,
selecta,
" Namu Symbols ",
" Symbols ",
notify_opts,
false,
"buffer",
Expand Down
2 changes: 1 addition & 1 deletion lua/namu/namu_watchtower/ctags.lua
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ function M.show()
picker_config,
ui,
selecta,
"Namu Watchtower (ctags)",
"Watchtower (ctags)",
{ title = "Namu", icon = config.values.icon },
false,
"open",
Expand Down
2 changes: 1 addition & 1 deletion lua/namu/namu_watchtower/watchtower.lua
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ function M.show(config)
config,
ui,
selecta,
" Namu Watchtower ",
" Watchtower ",
{ title = "Namu" },
false,
"open",
Expand Down
2 changes: 1 addition & 1 deletion lua/namu/namu_workspace/impl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ function impl.show_with_query(config, query, opts)
impl.selecta.pick(
initial_items,
vim.tbl_deep_extend("force", config, {
title = config.title or "  Namu Workspace ",
title = config.title or " Workspace Symbols ",
initial_prompt_info = prompt_info,
config,
async_source = create_async_symbol_source(state.original_buf, config),
Expand Down