summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/__internal.lua
AgeCommit message (Collapse)Author
2023-02-19fix(builtin.commands): add the command w/ zero arguments to cmd history when ↵liugh
executed (#2320)
2023-01-30feat: Allow filtering for oldfiles and buffers (#2353)Svetlozar Iliev
2023-01-30fix: 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-22fix(oldfiles): use path separator from builtin utils in cwd_only (#2340)Hasan Mahmud
2023-01-07fix(old_files): opts.cwd_only includes similarly named dirs (#2308)emmanueltouzery
2022-12-21fix: jumplist picker indexing the line after (#2273)Tobias S
2022-11-27feat(builtin.keymaps): display noremap/buffer indicators and add lhs filter ↵Xavier Young
(#2246)
2022-11-27feat: add new action to open quickfix window from quickfixhistory (#2249)kyoh86
2022-11-23feat(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-06feat: the parameter "map" of attach_mappings can be list of modes to create ↵ADoyle
mapping on multiple modes (#2220)
2022-09-27fix: builtin register picker better sorting (#2175)Tushar Kuntawar
2022-07-22fix: move the moon behind show_moon option and update documentation (#2072) ↵steven
(#2079)
2022-07-22fix: `Telescope` command lsp_definition call (and potentially more) (#2086)Simon Hauser
2022-07-07chore: reformat with stylua 0.14.0Simon Hauser
2022-07-01break: prefix internal files and add deprecation messages (#2032)Simon Hauser