Skip to content

Commit 47e297e

Browse files
committed
fix: Remove '>' from telescope/snacks
1 parent 80b1aec commit 47e297e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/debugprint/printtag_operations.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ local picker_handlers = {
109109
local ok_telescope, telescope = pcall(require, "telescope.builtin")
110110
if ok_telescope then
111111
telescope.live_grep({
112-
prompt_title = "Debug Prints> ",
112+
prompt_title = "Debug Prints",
113113
default_text = print_tag,
114114
})
115115
return true
@@ -122,7 +122,7 @@ local picker_handlers = {
122122
local ok_snacks, snacks = pcall(require, "snacks")
123123
if ok_snacks then
124124
snacks.picker.grep({
125-
title = "Debug Prints> ",
125+
title = "Debug Prints",
126126
search = print_tag,
127127
})
128128
return true

0 commit comments

Comments
 (0)