Commit Graph
170 Commits
Author SHA1 Message Date
Nghia Le MinhandSimon Hauser 11a3b16487 fix(lsp_dynamic_workspace_symbols): add prefilter as per documentation (after to_fuzzy_refine) (#2584)
* fix(lsp_dynamic_workspace_symbols): add prefilter as per documentation (after to_fuzzy_refine)

* [docgen] Update doc/telescope.txt
skip-checks: true

* docs grammar

* [docgen] Update doc/telescope.txt
skip-checks: true

---------

Co-authored-by: Github Actions <actions@github>
Co-authored-by: James Trew <j.trew10@gmail.com>
(cherry picked from commit 219584a6ef)
2023-09-05 16:01:35 +02:00
James TrewandSimon Hauser f97f4a04f7 fix: previewers & entry maker file encoding (#2430)
(cherry picked from commit c8b65238e8)
2023-05-24 17:08:36 +02:00
James TrewandSimon Hauser 37fa401040 Revert "chore: simplify vimgrep_arguments args (#2440)" (#2488)
This reverts commit cfe6df6257.

(cherry picked from commit d77b37f452)
2023-05-14 21:34:13 +02:00
Andrew SnellingandSimon Hauser 9800a1d107 chore: simplify vimgrep_arguments args (#2440)
(cherry picked from commit cfe6df6257)
2023-04-09 17:50:59 +02:00
Pooyan KhanjankhaniandSimon Hauser 818ad69723 doc: fix border characters in docs (#2388)
* chore: Fix border characters in comments

* [docgen] Update doc/telescope.txt
skip-checks: true

---------

Co-authored-by: Github Actions <actions@github>
(cherry picked from commit e504cf03c2)
2023-04-09 10:23:54 +02:00
Luyu HuangandSimon Hauser 48ece76315 fix: apply jump_type only if the definition file is different from the current file (#2324)
(cherry picked from commit 5d9658c39d)
2023-02-19 14:12:15 +01:00
UrazaandSimon Hauser 9e55b91b54 docs: add missing documentation for builtin lsp symbols (#2365)
(cherry picked from commit 5ce991ad23)
2023-02-19 14:09:55 +01:00
vladislav dosterandSimon Hauser a1bd6866b5 docs: telescope.nvim spelling and grammar fixes (#2325)
Corrects the following issues:
- article agreement
- spelling

(cherry picked from commit dce1156ca1)
2023-01-22 10:09:28 +01:00
James TrewandSimon Hauser 0077389133 docs: proof-read edits (#2311)
(cherry picked from commit 053f2303c4)
2023-01-22 10:09:23 +01:00
cristiansofronieandSimon Hauser 6a65f24ff6 docs: fix unfinised sentence in docs (#2335)
(cherry picked from commit ed366bba14)
2023-01-22 10:09:18 +01:00
Tsakiris TryfonandSimon Hauser 7408286e67 docs: fix typos/wording (#2283)
(cherry picked from commit a606bd10c7)
2023-01-06 14:35:17 +01:00
C.D. MacEachernandSimon Hauser 0b0846fe83 fix(docs): point to correct lua modules (#2284)
(cherry picked from commit d7d3ea9015)
2023-01-06 14:35:08 +01:00
ADoyleandSimon Hauser 2bf2d10d19 feat: the parameter "map" of attach_mappings can be list of modes to create mapping on multiple modes (#2220)
(cherry picked from commit d541e0d6e0)
2023-01-06 14:30:45 +01:00
Gutyina GergőandSimon Hauser 6a67ef38bf feat: allow table as additional args in live grep and grep string (#2139)
(cherry picked from commit 5c7db4055d)
2023-01-06 14:28:55 +01:00
Antoine BertinandSimon Hauser 50461b86c0 fix: selected icon highlight with color_devicons to false (#2187)
(cherry picked from commit 5fadc247c5)
2023-01-06 14:27:50 +01:00
Sam RosenthalandSimon Hauser 0b1c41ad80 docs: update for git_files and live_grep (#2133)
(cherry picked from commit bd9e8a7eac)
2022-09-04 22:01:54 +02:00
Emiel Van SeverenandSimon Hauser 0585cd9a8c fix: typo in docs (#2100)
(cherry picked from commit e1206cb3e1)
2022-08-13 11:33:30 +02:00
Nikita KulakovandSimon Hauser 2df16c0618 docs: fix arguments in mappings table to refelct implementation (#2111) (#2125)
(cherry picked from commit 36d4571b05)
2022-08-13 11:07:54 +02:00
stevenandSimon Hauser 83c760cbac fix: move the moon behind show_moon option and update documentation (#2072) (#2079)
(cherry picked from commit b5833a682c)
2022-07-22 18:22:45 +02:00
ac38730da1 docs: mappings documentation overhaul (#2065)
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2022-07-12 11:52:57 +02:00
Simon HauserandGitHub 361482c599 docs: add module names to fix gO (#2064) 2022-07-12 09:46:30 +02:00
Simon Hauser 8fe2dde656 docs: add missing opts docs for lsp builtins 2022-07-06 20:45:40 +02:00
Simon HauserandGitHub 02cf3e4070 feat: grep_open_files for builtin.grep_string (#2039) 2022-07-06 08:26:22 +02:00
Simon HauserandGitHub 2b1da47deb chore: make to_fuzzy_refine configurable (#2034) 2022-07-03 21:39:24 +02:00
Tyler WardhaughandGitHub 4afd1be74a docs: fix typos/grammar in PR#1945 changelog (#2033) 2022-07-03 13:25:19 +02:00
Simon Hauser e778abfdb4 docs: changelog for dev branch, 1945 2022-07-01 23:20:07 +02:00
marcelandGitHub 5dd4b52910 break: cleanup preview.treesitter language setting (#1612)
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 22:58:05 +02:00
TuriiyaandGitHub bf1a25dbfe feat: search_file option for builtin fd command (#2029) 2022-07-01 22:10:31 +02:00
julianfandSimon Hauser a0a038170d docs: make_entry and entry_display 2022-07-01 16:59:10 +02:00
Simon Hauser a50352eb24 docs: document limitation of action
close #1994
2022-06-30 14:37:02 +02:00
Simon HauserandSimon Hauser d1f3e12a35 feat: add min max boundary to width, hight resolver (#2002) 2022-06-30 14:01:52 +02:00
AntonandSimon Hauser bef86acb6c feat(rg): pass multiple globs to rg by default (#2003) 2022-06-30 14:01:51 +02:00
ManuelandSimon Hauser 3a72cc8902 feat(builtin.lsp): implement builtin handlers for lsp.(incoming|outgoing)_calls (#1484)
Fixes #863
2022-06-30 14:01:51 +02:00
Simon HauserandSimon Hauser ffcc2221d6 docs: clarify docs around search_dirs and map_entries 2022-06-30 14:01:51 +02:00
Simon HauserandSimon Hauser f6efef4c41 feat: find_command can be a function (#2000) 2022-06-30 14:01:51 +02:00
838c32d6a8 refactor: make_entry more consistent (#1410)
drops `ignore_filename`, use `path_display= { "hidden" }`

Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-06-30 14:01:50 +02:00
Bjarki Baldursson HarksenandSimon Hauser 6703c957e7 feat: add option use_default_opts to builtin.builtin (#1996) 2022-06-30 14:01:50 +02:00
Jeremy NealandSimon Hauser 8488cd5ac7 feat: no-ignore-parent shorthand option for find_files. (#1963) 2022-06-30 14:01:50 +02:00
fdschmidt93andSimon Hauser a1aec79cb1 feat: none strategy & control attachment (#1867) 2022-06-30 14:01:49 +02:00
Simon HauserandSimon Hauser edc6f55ba2 docs: document limitations of file_ignore_patterns and transform_path (#1955) 2022-06-30 14:01:49 +02:00
Ben SmithandSimon Hauser 440684edad break(git_files): change show_untracked default to false (#842) 2022-06-30 14:01:48 +02:00
Jose VeigaandGitHub e2a77a54a3 doc: use correct option name for 'only_sort_text' (#1995) 2022-06-12 13:03:12 +02:00
matt riceandGitHub 7bc8efd77b docs: reflect behavior of diagnostics bufnr nil (#1879) 2022-05-18 20:10:45 +02:00
TJ DeVriesandGitHub 0b5f1d69d7 feat: Add ability to choose window to edit (#745) 2022-05-15 22:08:16 +02:00
fdschmidt93andGitHub 795a63ed29 feat(docs): simplified architecture flow chart (#1925)
`:h telescope.nvim` now shows an overview of the telescope architecture
2022-05-09 11:43:22 +02:00
Michael MavesandGitHub 85d95dfddd fix(builtin.tags): custom filename width (#1842) 2022-05-04 22:13:40 +02:00
kylo252andGitHub 3f3cba430e feat(live_grep): add glob and type filter shorthand opts (#1695) 2022-05-04 21:57:29 +02:00
fdschmidt93andGitHub 8d1841bff5 feat: quickfixhistory picker (#1878) 2022-05-04 21:50:15 +02:00
Simon HauserandGitHub 544c5ee407 fix: termopen previewer (#1901)
- buffer leaking
- still insert mode on confirm
2022-05-01 09:46:50 +02:00
Austin RayandGitHub 557c8b98c5 docs: add 'https://' prefix to smart history link (#1885) 2022-04-30 12:35:34 +02:00