Created
April 27, 2024 04:03
-
-
Save delphinus/3b212831f32fc35553a30ce1d03257bb to your computer and use it in GitHub Desktop.
ローマ字で :Telescope live_grep する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require("telescope.builtin").live_grep { | |
---@param prompt string | |
---@return { prompt?: string, updated_finder?: TelescopeFinder } | |
on_input_filter_cb = function(prompt) | |
return { | |
prompt = vim.fn["kensaku#query"](prompt, { | |
rxop = vim.g["kensaku#rxop#javascript"], | |
}), | |
} | |
end, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment