| Age | Commit message (Collapse) | Author |
|
with opt use_git_root = false
Examples:
- Telescope git_files use_git_root=false
- Telescope git_commits use_git_root=false
- Telescope git_status use_git_root=false
|
|
I am 100% did not spoil anything, I swear
|
|
compatibility (#558)
|
|
* feat: Add vim docs & generators
* example of what we could start to do
* Docgen CI job
* wip
* incremental updates. soon good validation
* [Actions] Generate Documentation
skip-checks: true
* pretty cool now
* [Actions] Generate Documentation
skip-checks: true
* make sure telescope is loaded first
* Add updates. Maybe this will not delete now?
* Add defaults tags as well
* :smile:
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
Co-authored-by: Github Actions <actions@github>
|
|
* fix: scroll misbehaving + fixed jump to middle
* add test
* fixx
* fix nil
|
|
To revert back to bat previewers put this into your config:
file_previewer = require'telescope.previewers'.cat.new,
grep_previewer = require'telescope.previewers'.vimgrep.new,
qflist_previewer = require'telescope.previewers'.qflist.new,
|
|
|
|
Add <count>j and k to normal mode and H and L to jump at top and bottom of displayed results
|
|
and more picker api stuff for sunjon. refresh is implemented for file_browser and git_status
|
|
* feat: replace_map
* feat: Add action_set and action_state
* fix: Move all actions.get_ to action_state.get_
* fix: replace all internal references of _goto_file_selection_edit
* feat: add some docs
* fix: lint
* feat: actions.select
* remove mentions and usage of goto_file_selection APIs
* feat: special case attach_mappings to be overridable and defaultable
* Having goto_file_selection mappings will cause a error
as well as replacing deprecated goto_file_selection methodes
For config and replacing use this instead:
- actions.select_default
- actions.select_horizonal
- actions.select_vertical
- actions.select_tab
Only replacing:
- actions.set.edit -- for replacing all select functions
* adds actions.state.select_key_to_edit_key
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
|
|
This will add possibility to follow symlinks
|
|
Requires up to date plenary version
|
|
|
|
|
|
No longer use ffi for strdisplaywidth and utf_ptr2len on windows.
That might lead to wrong truncations on windows but its better than nothing.
|
|
:Telescope sections=ALL
|
|
|
|
Given that Telescope has a picker for quickfix items, opening its
window automatically isn't that useful, so this commit removes the call
from send_to_qflist and send_selected_to_qflist. Some users may prefer
the old behaviour though so a new action open_qflist was created.
To open quickfix with one key, you can do this:
```
["<C-q>"] = actions.send_to_qflist + actions.open_qflist,
```
Co-authored-by: Tae Sandoval <tssm@users.noreply.github.com>
|
|
* Add user autocmd Telescope
* change name to TelescopeFindPre
* update Readme for Telescope user autocmds
|
|
|
|
:Telescope man_pages sections=3 will only show man pages from section 3
:Telescope man_pages sections=1,2,3 will show man pages from section 1, 2 and 3
|
|
Also fixes #484
|
|
* support custom table type keyword
* remove custom split function use vim.split
* remove unused varable fix test
* rewrite get extensions subcommand
* add comment
* remove blankline
* check the param in default options
* revert
* add register keyword function
|
|
This is needed for calling strdisplaywidth() from Lua loop.
See https://github.com/nvim-telescope/telescope.nvim/issues/414
See https://github.com/neovim/neovim/blob/a1ed941a7881122fda2fd48e71e890ed55e4d08e/src/nvim/eval/funcs.c#L9845-L9858
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
|
|
|
|
|
|
Co-authored-by: Corentin Brunel <cbrunel@localhost.localdomain>
|
|
from query text) (#455)
* allow a callback to be called on on_lines update
* .
* remove unused _filter_marker var
* nit: Move to table and implement 'close'
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
|
|
We have broke all extension that do some sort of goto_file_selection:replace
Problem described here: https://github.com/nvim-telescope/telescope.nvim/pull/465#issuecomment-767831897
Possible solution: https://github.com/nvim-telescope/telescope.nvim/pull/465#issuecomment-767808213
|
|
|
|
in other languages (#430)
" use helplang and show en help when it is not found.
:Telescope help_tags
" use helplang, but do not show en help when it is not found.
:Telescope help_tags fallback=false
" ignore helplang and show help from specified langs.
" when helps cannot be found, show en help.
:Telescope help_tags lang=ja,ru
" ignore helplang and show help from specified langs only.
:Telescope help_tags lang=ja,ru fallback=false
|
|
|
|
|
|
feat: git_status (??) now shows file or directory
fix: attempt to index field 'state' (a nil value)
|
|
if entry.path is nil vim.fn.fnameescape will return null which results
in all other option no longer be checked
|
|
|
|
+ overwriting vimgrep_argumnets
|
|
|
|
and buffer previewer still "erroring" out for builtin.buffers
|
|
* add substr_matcher
* correct function name
* use util.split function and remove unused opts
|
|
|
|
|
|
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
|
|
* support convert custom command arg
* format code
* remove unused variable
|
|
|
|
|
|
|
|
|
|
|
|
|