| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-22 | feat(treesitter): symbols & ignore symbols options (#2338)HEADmaster | Maksym Klishevych | |
| * feat(treesitter): symbols & ignore symbols options * renamed the function passed to utils.filter_symbols --------- Co-authored-by: Maksym Klishevych <max@klishevy.ch> | |||
| 2023-02-20 | fix: current_buffer_fuzzy_find highlighter (#2394) | Simon Hauser | |
| 2023-02-19 | feat: support selection for grep_string (#2333) | cristiansofronie | |
| 2023-02-19 | fix: apply jump_type only if the definition file is different from the ↵ | Luyu Huang | |
| current file (#2324) | |||
| 2023-02-19 | fix: current_buffer_fuzzy_find push cursor (#2393) | Simon Hauser | |
| close #2332 | |||
| 2023-02-19 | fix(builtin.commands): add the command w/ zero arguments to cmd history when ↵ | liugh | |
| executed (#2320) | |||
| 2023-02-19 | docs: add missing documentation for builtin lsp symbols (#2365) | Uraza | |
| 2023-02-19 | feat: keep prompt and selection on git_staging_toggle (#2372) | atusy | |
| 2023-01-31 | Revert "feat(git): git_commits shows the current branch graph (#2288)" (#2358) | Simon Hauser | |
| This reverts commit 01d92285ef4402b188fa583d57f5d1a18c889d22. | |||
| 2023-01-30 | feat: Allow filtering for oldfiles and buffers (#2353) | Svetlozar Iliev | |
| 2023-01-30 | fix: man_pages on macOS and FreeBSD (#2326) (#2352) | Fernando Schauenburg | |
| macOS 13.x (Ventura, Darwin 22.x) uses `apropos(1)` from FreeBSD, which does not behave the same as the previous implementation up to macOS 12. `apropos(1)` takes a regular expression as an argument, so passing "." causes it to match anything and therefore return all results to be filtered by Telescope. | |||
| 2023-01-22 | docs: proof-read edits (#2311) | James Trew | |
| 2023-01-22 | fix(oldfiles): use path separator from builtin utils in cwd_only (#2340) | Hasan Mahmud | |
| 2023-01-11 | feat(pickers): add opt.show_remote_tracking_branches to git_branches (#2314) | Matt Taylor | |
| 2023-01-07 | fix(old_files): opts.cwd_only includes similarly named dirs (#2308) | emmanueltouzery | |
| 2023-01-06 | fix: live_grep additional_args parsing (#2306) | Simon Hauser | |
| 2023-01-06 | fix: correctly parse filenames with special chars in git_status (#2296) | Jonas Strittmatter | |
| 2022-12-28 | feat(git): git_commits shows the current branch graph (#2288) | Cyan | |
| Co-authored-by: Cyan Joeng <cyan.joeng@gmail.com> | |||
| 2022-12-28 | chore: bump ci to more modern os and nvim versions (#2289) | Simon Hauser | |
| 2022-12-21 | fix: jumplist picker indexing the line after (#2273) | Tobias S | |
| 2022-12-21 | fix: misidentification invert and files_with_matches (#2240) (#2262) | fcying | |
| 2022-11-28 | feat: add configuration to fix encoding of output of find_command in ↵ | zbq | |
| find_files (#2232) | |||
| 2022-11-27 | feat(builtin.keymaps): display noremap/buffer indicators and add lhs filter ↵ | Xavier Young | |
| (#2246) | |||
| 2022-11-27 | feat: add new action to open quickfix window from quickfixhistory (#2249) | kyoh86 | |
| 2022-11-23 | feat: sort branches initially by authordate (#2236) | A. Schueler | |
| 2022-11-23 | feat(picker): command history filter (#2132) | kkharji | |
| * feat(picker): command history filter I've recently start using command history. For sometime was a bit annoyed of unrelevant commands like edit/write and others (most likely only used once) I've considered using lua patterns, however, logical `or` isn't a thing. Additionally, passing a list of lua patterns and checking each pattern for each command history entry felt tedious. This PR introduce a new optional function to filter command history items. For example, in my configurations ~~~lua local command_history_ignore = vim.regex "edit\\|Move\\|write\\|Write\\|e\\s\\|lua\\sI(" overrides.command_history = minimal { prompt_prefix = "CMDHistory> ", filter_fn = function(item) if #item < 3 then return false else return not command_history_ignore:match_str(item) end end, } ~~~ * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Github Actions <actions@github> | |||
| 2022-11-11 | fix(lsp_references): not changing files if only 1 result (#2229) | Andreas Guth | |
| 2022-11-06 | feat: add jump_type option for lsp_references (#2218) | Gutyina Gergő | |
| 2022-11-06 | feat: the parameter "map" of attach_mappings can be list of modes to create ↵ | ADoyle | |
| mapping on multiple modes (#2220) | |||
| 2022-10-31 | Revert "feat(git): notify when not in a git repo instead of error (#2181)" ↵ | Simon Hauser | |
| (#2217) This reverts commit a09df82861944aab86c74648b1a570ff8ff73f82. | |||
| 2022-10-26 | fix: always load the up to date picker config on picker open | Simon Hauser | |
| 2022-10-25 | fix: rg invert and files-with-matches res line parsing (#2208) | Simon Hauser | |
| 2022-10-24 | feat: allow table as additional args in live grep and grep string (#2139) | Gutyina Gergő | |
| 2022-10-24 | perf(builtin): faster list extend for find_files (#2205) | kylo252 | |
| 2022-09-30 | feat(git): notify when not in a git repo instead of error (#2181) | Antoine | |
| Fix #2180 | |||
| 2022-09-27 | fix: builtin register picker better sorting (#2175) | Tushar Kuntawar | |
| 2022-09-17 | fix: don't include current line in lsp references if current_line=false (#2165) | Marcus Caisey | |
| 2022-09-04 | docs: update for git_files and live_grep (#2133) | Sam Rosenthal | |
| 2022-08-27 | fix(preview): update buffer previewer to upstream changes (#2150) | Christian Clason | |
| https://github.com/neovim/neovim/pull/19931 removed `_get_hl_from_capture(id)` since captures are now implicitly mapped to highlight groups with the same name. | |||
| 2022-08-13 | fix: find_files to force color=never (#2130) | Bryce Montano | |
| Co-authored-by: Bryce Montano <brycesec@amazon.com> | |||
| 2022-08-04 | fix: restore testing framework to actually work (#2070) | TJ DeVries | |
| after refactor to some new asynchronous items for finders, the tests stopped actually doing anything. now they do things again. | |||
| 2022-08-01 | fix: error due to concatenating table to string (#2108) | Christoph Blessing | |
| This commit fixes a bug that lead to an error because we tried to concatenate a table (`err`) to a string. Now we concatenate `err.message` (a string) to the string. | |||
| 2022-07-22 | fix: move the moon behind show_moon option and update documentation (#2072) ↵ | steven | |
| (#2079) | |||
| 2022-07-22 | fix: `Telescope` command lsp_definition call (and potentially more) (#2086) | Simon Hauser | |
| 2022-07-12 | chore: remove deprecated functions / messages (#2063) | Simon Hauser | |
| 2022-07-07 | fix: live_grep search_dirs and grep_open_files opts | Simon Hauser | |
| fix #2048 | |||
| 2022-07-07 | chore: reformat with stylua 0.14.0 | Simon Hauser | |
| 2022-07-06 | docs: add missing opts docs for lsp builtins | Simon Hauser | |
| 2022-07-06 | feat(grep_string): invert_match for search="", removing empty lines (#2040) | Simon Hauser | |
| 2022-07-06 | feat: grep_open_files for builtin.grep_string (#2039) | Simon Hauser | |
