| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-21 | doc: fix border characters in docs (#2388) | Pooyan Khanjankhani | |
| * chore: Fix border characters in comments * [docgen] Update doc/telescope.txt skip-checks: true --------- Co-authored-by: Github Actions <actions@github> | |||
| 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 | feat: extend git_delete_branch to delete of all selected branches (#2337) | Sven | |
| 2023-02-19 | docs: add missing documentation for builtin lsp symbols (#2365) | Uraza | |
| 2023-01-30 | feat: add support for wrapping history on reaching history begin or end (#2349) | Reid Swan | |
| 2023-01-30 | feat: Allow filtering for oldfiles and buffers (#2353) | Svetlozar Iliev | |
| 2023-01-22 | docs: telescope.nvim spelling and grammar fixes (#2325) | vladislav doster | |
| Corrects the following issues: - article agreement - spelling | |||
| 2023-01-22 | docs: proof-read edits (#2311) | James Trew | |
| 2023-01-22 | docs: fix unfinised sentence in docs (#2335) | cristiansofronie | |
| 2023-01-11 | feat(pickers): add opt.show_remote_tracking_branches to git_branches (#2314) | Matt Taylor | |
| 2022-12-28 | docs: fix typos/wording (#2283) | Tsakiris Tryfon | |
| 2022-12-28 | fix(docs): point to correct lua modules (#2284) | C.D. MacEachern | |
| 2022-12-02 | fix: icons with multiple dots but without custom overrides (#2256) | Simon Hauser | |
| 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-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: 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-24 | feat: allow table as additional args in live grep and grep string (#2139) | Gutyina Gergő | |
| 2022-10-08 | fix: selected icon highlight with color_devicons to false (#2187) | Antoine Bertin | |
| 2022-09-04 | docs: update for git_files and live_grep (#2133) | Sam Rosenthal | |
| 2022-09-04 | feat: added support for tabdrop (#2143) | Ryan Koval | |
| 2022-08-13 | fix: typo in docs (#2100) | Emiel Van Severen | |
| 2022-08-13 | docs: fix arguments in mappings table to refelct implementation (#2111) (#2125) | Nikita Kulakov | |
| 2022-07-22 | fix: move the moon behind show_moon option and update documentation (#2072) ↵ | steven | |
| (#2079) | |||
| 2022-07-12 | docs: mappings documentation overhaul (#2065) | Simon Hauser | |
| Co-authored-by: TJ DeVries <devries.timothyj@gmail.com> | |||
| 2022-07-12 | docs: add module names to fix gO (#2064) | Simon Hauser | |
| 2022-07-06 | docs: add missing opts docs for lsp builtins | Simon Hauser | |
| 2022-07-06 | feat: grep_open_files for builtin.grep_string (#2039) | Simon Hauser | |
| 2022-07-03 | chore: make to_fuzzy_refine configurable (#2034) | Simon Hauser | |
| 2022-07-03 | docs: fix typos/grammar in PR#1945 changelog (#2033) | Tyler Wardhaugh | |
| 2022-07-01 | docs: changelog for dev branch, 1945 | Simon Hauser | |
| 2022-07-01 | break: cleanup preview.treesitter language setting (#1612) | marcel | |
| this follows nvim-treesitter more closely but enable can also be a table of enabled languages The config now looks like this: ```lua defaults = { preview = { treesitter = { enable = false, -- or enable = { "c" }, -- disable can be set if enable isn't set disable = { "perl", "javascript" }, }, }, }, ``` | |||
| 2022-07-01 | feat: search_file option for builtin fd command (#2029) | Turiiya | |
| 2022-07-01 | docs: `make_entry` and `entry_display` | julianf | |
| 2022-06-30 | docs: document limitation of action | Simon Hauser | |
| close #1994 | |||
| 2022-06-30 | feat: add min max boundary to width, hight resolver (#2002) | Simon Hauser | |
| 2022-06-30 | feat(rg): pass multiple globs to rg by default (#2003) | Anton | |
| 2022-06-30 | feat(builtin.lsp): implement builtin handlers for ↵ | Manuel | |
| lsp.(incoming|outgoing)_calls (#1484) Fixes #863 | |||
| 2022-06-30 | docs: clarify docs around `search_dirs` and `map_entries` | Simon Hauser | |
| 2022-06-30 | feat: `find_command` can be a function (#2000) | Simon Hauser | |
| 2022-06-30 | refactor: make_entry more consistent (#1410) | Yorick Peterse | |
| drops `ignore_filename`, use `path_display= { "hidden" }` Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> | |||
| 2022-06-30 | feat: add option `use_default_opts` to `builtin.builtin` (#1996) | Bjarki Baldursson Harksen | |
| 2022-06-30 | feat: no-ignore-parent shorthand option for find_files. (#1963) | Jeremy Neal | |
| 2022-06-30 | feat: none strategy & control attachment (#1867) | fdschmidt93 | |
| 2022-06-30 | docs: document limitations of file_ignore_patterns and transform_path (#1955) | Simon Hauser | |
| 2022-06-30 | break(git_files): change show_untracked default to false (#842) | Ben Smith | |
| 2022-06-12 | doc: use correct option name for 'only_sort_text' (#1995) | Jose Veiga | |
| 2022-05-18 | docs: reflect behavior of diagnostics bufnr nil (#1879) | matt rice | |
