| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-07-12 | chore: remove deprecated functions / messages (#2063) | Simon Hauser | |
| 2022-07-01 | break: prefix internal files and add deprecation messages (#2032) | Simon Hauser | |
| 2022-07-01 | feat: search_file option for builtin fd command (#2029) | Turiiya | |
| 2022-07-01 | fix: crash in tags on enter for no results and random crash in previewer | Simon Hauser | |
| 2022-07-01 | feat: refine with new_table | Fabian David Schmidt | |
| 2022-06-30 | feat(rg): pass multiple globs to rg by default (#2003) | Anton | |
| 2022-06-30 | feat: `find_command` can be a function (#2000) | Simon Hauser | |
| 2022-06-30 | feat(tags): process tagfiles on the fly (#1989) | Antoine | |
| 2022-06-30 | feat: no-ignore-parent shorthand option for find_files. (#1963) | Jeremy Neal | |
| 2022-06-30 | break: deprecate utils.get_default utils.if_nil (#1545) | Simon Hauser | |
| 2022-06-30 | fix: grep_string crashes when string has newline (#2026) | Reed Koser | |
| Fixes the crash below by sanitizing the title to not include the linebreak (replacing it by a "\n" string) stack traceback: [C]: in function 'nvim_buf_set_lines' .../nvim/plugged/plenary.nvim/lua/plenary/window/border.lua:222: in function '__align_calc_config' .../nvim/plugged/plenary.nvim/lua/plenary/window/border.lua:266: in function 'new' ...are/nvim/plugged/plenary.nvim/lua/plenary/popup/init.lua:384: in function 'create' ...re/nvim/plugged/telescope.nvim/lua/telescope/pickers.lua:326: in function '_create_window' ...re/nvim/plugged/telescope.nvim/lua/telescope/pickers.lua:399: in function 'find' ...m/plugged/telescope.nvim/lua/telescope/builtin/files.lua:151: in function 'v' ...m/plugged/telescope.nvim/lua/telescope/builtin/files.lua:475: in function 'v' ...im/plugged/telescope.nvim/lua/telescope/builtin/init.lua:487: in function 'grep_string' Fixes #2023 | |||
| 2022-05-04 | feat(live_grep): add glob and type filter shorthand opts (#1695) | kylo252 | |
| 2022-03-30 | fix (treesitter): kind column | Simon Hauser | |
| fix #1811 | |||
| 2022-03-26 | fix (tags|btags): escape all special characters (#1806) | ibhagwan | |
| 2022-03-13 | feat: improve UX with vim.notify (#1763) | tami5 | |
| * fix(notify): don't report request on new line * ref(notify): update message format * ref(msgs): always quote values + decrease duplication * fix(ci): undefined variables * ref(actions): temporary silent actions.__index errors * cleanup * revert: panic effort, we continue to use error for those Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> | |||
| 2022-03-12 | fix(find_files): follow with unix `find` command (#1787) | i3Cheese | |
| 2022-03-10 | fix(*grep): escape dot when not using regex (#1784) | Slotos | |
| 2022-03-08 | fix: treesitter picker with lua (defintions) (#1779) | Simon Hauser | |
| 2022-02-14 | fix: add opts.bufnr and opts.winnr to builtin picker (#1706) | James Trew | |
| 2022-01-11 | break!: remove file_browser from builtins (#1453) | fdschmidt93 | |
| The file_browser now has been fully removed. Please move to github.com/nvim-telescope/telescope-file-browser.nvim for a more featureful extension that replaces the builtin file browser. | |||
| 2022-01-09 | fix(builtin.treesitter): make sure that kind is not nil | Simon Hauser | |
| If kind is nil then prefilter throws an error fix #1631 | |||
| 2022-01-06 | fix: support find_command along with shorthand options (#1642) | pedro757 | |
| 2021-12-29 | chore: deprecation notice for builtin.file_browser (#1574) | fdschmidt93 | |
| `builtin.file_browser` will be removed in favor of `telescope-file-browser.nvim`. Primary rationale for carving out the file browser to an extension: - Faster development - Very expansive picker with larger feature set than builtins | |||
| 2021-12-27 | chore: remove dot at the beginning (#1552) | Simon Hauser | |
| We added this for rg 13.0 release because it was needed but it doesnt seem to be needed anymore. Weird This might be due to some changes in neovim or due to changes to jobs | |||
| 2021-12-06 | fix: current_buffer_fuzzy_find in vue files (#1561) | h0adp0re | |
| 2021-12-05 | fix: current_buffer_fuzzy_find check if nvim-ts is okay before calling ↵ | Simon Hauser | |
| is_enabled | |||
| 2021-12-03 | fix: dont change highlights when using current_buffer_fuzzy_find (#1524) | Simon Hauser | |
| this happens if parsers are installed but highlight is set to false. So parsing the buffer with treesitter will automatically apply them to the buffer but because treesitter highlighting is disabled it will change the buffer. Its stupid and i dont know why you want parser installed but highlighting disabled but whatever. We just dont calculate highlights for people who have highlight set to false | |||
| 2021-11-15 | chore: reformat files.lua after stylua update (#1456) | fdschmidt93 | |
| 2021-10-28 | fix: buitin.tags broke when tags-file was in wildignore (#1387) | Denis Cornehl | |
| regression from 6f829bf6bc333809dd97e532dbc88a7fcf297b02 https://github.com/nvim-telescope/telescope.nvim/pull/1122 | |||
| 2021-09-12 | fix: add no more flags delimiter for ripgrep (#1217) | Chase Colman | |
| This matches the behavior of fzf, if a user needs to pass additional arguments they can use additional_args or change vimgrep_arguments. | |||
| 2021-09-09 | Add word to prompt title for grep string (#1184) | Dheepak Krishnamurthy | |
| 2021-08-25 | fix(ts-highlighting): get hl name from the capture (#1166) | Dhruv Manilawala | |
| After this commit (https://github.com/neovim/neovim/commit/2460f0a7028550ea2d87492a4e8b95914fdba7b1), the `hl_cache` variable stores the hl_ID instead of the group name. Another way to get the hl name which is adopted from the method used here `_get_hl_from_capture`: ```lua local hl = vim.treesitter.highlighter.hl_map[query.captures[id]] ``` But, as the method covers another case, we can directly use it. I've also added the type guard so that, in the future, it does not explode like it does now. fixes: #1151 | |||
| 2021-08-23 | refactor(pickers): remove additional fileopen (#1154) | tami5 | |
| unfinished work from #1122 | |||
| 2021-08-23 | pickers(*): Add support for &tags (#1122) | Emilia Simmons | |
| 2021-08-20 | feat(performance): Major performance improvements using async v2 from ↵ | TJ DeVries | |
| @oberblastmeister (#987) * start: Working w/ async jobs * short circuit to using bad finder if you pass writer. | |||
| 2021-08-04 | feat: live_grep and grep_string function for additional opts (allow file ↵ | Nazeeh ElDirghami | |
| mask) (#1017) | |||
| 2021-07-29 | feat: add no_ignore option to find_files (#1010) | Lee Marlow | |
| Allow find_files to find files ignored by .gitignore and other ignore files. This is supported by fd, rg, and fdfind. | |||
| 2021-07-23 | chore: use stylua for formatting (#1040) | Simon Hauser | |
| * chore: stylua job and config * reformat with stylua | |||
| 2021-07-17 | feat: add ^ and $ to characters handled by regex escape (#1007) | Daniel Imfeld | |
| 2021-07-17 | fix: correct the prompt title (#1013) | wongxy | |
| 2021-07-14 | refactor: move from telescope.path to plenary.path (#473) | anott03 | |
| This will deprecate telescope.path, we will remove it soon. Please move over to plenary.path Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> | |||
| 2021-07-14 | fix: builtin `find_files`, `find` command `win32` check == 0 (#989) | Luke Kershaw | |
| - changes check for Windows OS, as 0 is truthy, so `not 0` and `not 1` are both `false` | |||
| 2021-07-13 | feat: add Windows `where` file finder command (#979) | Luke Kershaw | |
| 2021-07-08 | Consistent filepath display and code cleanup. (#839) | caojoshua | |
| BREAKING CHANGE: see :help telescope.changelog-839 for more information Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> | |||
| 2021-06-12 | fix: ripgrep 13 | Simon Hauser | |
| 2021-06-06 | fix: search_dirs in builtin.grep_string (#897) | the continium | |
| 2021-05-31 | feat: add prefiltering to treesitter picker (#879) | fdschmidt93 | |
| 2021-05-13 | Docs for builtin pickers (#783) | Ben Smith | |
| 2021-05-08 | feat: add use_regex option to grep_string (#767) | Khalid | |
| 2021-04-28 | fix: file browser navigate to parent directory on windows (#786) | Alex Fischer | |
