diff options
| author | Maksym Klishevych <m@klishevy.ch> | 2023-03-22 15:49:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-22 09:49:55 -0400 |
| commit | 942fe5faef47b21241e970551eba407bc10d9547 (patch) | |
| tree | d3b695b0196f367cec44729e02eeef0d344bc0a9 /lua/telescope/builtin/init.lua | |
| parent | e504cf03c24119ee024c4182bee7ab31276cd684 (diff) | |
* feat(treesitter): symbols & ignore symbols options
* renamed the function passed to utils.filter_symbols
---------
Co-authored-by: Maksym Klishevych <max@klishevy.ch>
Diffstat (limited to 'lua/telescope/builtin/init.lua')
| -rw-r--r-- | lua/telescope/builtin/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua index d0d669d..922aea4 100644 --- a/lua/telescope/builtin/init.lua +++ b/lua/telescope/builtin/init.lua @@ -91,6 +91,8 @@ builtin.fd = builtin.find_files --- - `<C-l>`: show autocompletion menu to prefilter your query by kind of ts node you want to see (i.e. `:var:`) ---@field show_line boolean: if true, shows the row:column that the result is found at (default: true) ---@field bufnr number: specify the buffer number where treesitter should run. (default: current buffer) +---@field symbols string|table: filter results by symbol kind(s) +---@field ignore_symbols string|table: list of symbols to ignore ---@field symbol_highlights table: string -> string. Matches symbol with hl_group builtin.treesitter = require_on_exported_call("telescope.builtin.__files").treesitter |
