| Age | Commit message (Collapse) | Author |
|
I didn't test this cause I'm noob. It's my fault not tami's
This reverts commit d9bf9181bccecb774ba7d56cdf5db440547f3b50.
|
|
|
|
When a bat theme contained spaces it would crash the bat previewer as
described in #318.
|
|
|
|
|
|
|
|
|
|
|
|
* Add luacheck ci job
* Fix most of the linting issues
* fixup: lint
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
|
|
Enable with:
require('telescope').setup {
defaults = {
file_previewer = previewers.vim_buffer_cat.new,
grep_previewer = previewers.vim_buffer_vimgrep.new,
qflist_previewer = previewers.vim_buffer_qflist.new,
}
}
|
|
|
|
Fixes #105.
|
|
closes #299
authored by: @Conni2461
|
|
Separator Example: When creating the displayer
```lua
local displayer = entry_display.create {
separator = " ",
separator_hl = 'Visual', -- New
items = {
{ width = opts.bufnr_width },
{ width = 4 },
{ remaining = true },
},
}
```
Elements Example: When submitting data
```lua
local hl_group = x == y then 'Normal' or 'Visual'
return displayer {
entry.bufnr,
{ entry.indicator, hl_group },
display_bufname .. ":" .. entry.lnum,
}
```
|
|
* add back filetypedetect on edit
* chore(): apply feedback
|
|
builtins were not passing `opts` correctly, but now do.
|
|
* feat: new builtin - Autocommands finder
* fix: remove decorators to avoid confusion.
* make preview split same hl-group as border
* use highlight instead of marker character for preview selection hl
|
|
|
|
closes #262 , adds new parameter to action.close. Users know can have more control over the mode after action.close is called.
|
|
|
|
|
|
https://github.com/neovim/neovim/pull/12962
authored by: @windwp
|
|
builtin.git_status() (#289)
Very useful functionality to use git_status for. Now users can add a file or restore it by <tab>
authored by: @cempassi
|
|
|
|
Previously, if e.g. : was remapped, Telescope would be unclosable with
its mappings (<Esc>).
(Do the same for ensuring we :silent)
|
|
|
|
|
|
|
|
builtin: Registers finder. view and edit vim registers.
|
|
- Set env vars for previewer with set_env({ key = value } fix #228)
- Set pager for git previewes (default is GIT_PAGER=less so users can scroll see #253)
- Use less for people who don't have bat but less installed
- Reset less env to only '-RS' because '-X' will break scrolling(fix #253, thanks @eth3lbert)
- Scrolling for buffer previewer(thanks @tami5 for helping)
- Also new function to create buffer previewers (which has scrolling by default). Used for tags and help_tags previewer.
- Add new setting set_env to readme
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Conni2461 is a great coder and contributor :)
|
|
[RFC] Fix help_tags previewer
|
|
|
|
|
|
|
|
|
|
|
|
Probably slower, but the builtin `taglist()` only looks at the first
file in 'tags', not ideal for this application. This can probably be
cleaned up a little.
|
|
Still doesn't update for multiple files, but the first file in the
taglist is shown, so that's a start?
|
|
the results variable can be nil when there's no code action available,
check for nil results before checking the length
|
|
Rework helptags builtin, including helps tags from installed plugins
|
|
* Add built-in to search keymaps
* Re-factor maps for cleaner codes
Rather than use function to return a results table for various key maps.
Assign results the key maps table itself. This makes for cleaner code.
* Keymaps: escape termcodes using built-in util
* Rename builtin.maps to builtin.keymaps
|