| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-02-19 | fix(builtin.commands): add the command w/ zero arguments to cmd history when ↵ | liugh | |
| executed (#2320) | |||
| 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 | fix(oldfiles): use path separator from builtin utils in cwd_only (#2340) | Hasan Mahmud | |
| 2023-01-07 | fix(old_files): opts.cwd_only includes similarly named dirs (#2308) | emmanueltouzery | |
| 2022-12-21 | fix: jumplist picker indexing the line after (#2273) | Tobias S | |
| 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(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-06 | feat: the parameter "map" of attach_mappings can be list of modes to create ↵ | ADoyle | |
| mapping on multiple modes (#2220) | |||
| 2022-09-27 | fix: builtin register picker better sorting (#2175) | Tushar Kuntawar | |
| 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-07 | chore: reformat with stylua 0.14.0 | Simon Hauser | |
| 2022-07-01 | break: prefix internal files and add deprecation messages (#2032) | Simon Hauser | |
