| Age | Commit message (Collapse) | Author |
|
Co-authored-by: Christian Clason <christian.clason@uni-due.de>
|
|
(#1600)
Also fixes `initial_mode`
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
|
|
|
|
|
|
* feat: add `multi_icon` option to pickers and corresponding highlight
* feat: allow `multi_icon` to be any length
* fix: adjust `selection_caret` highlighting
|
|
So we can use `vim.json` and `vim.diagnostics`.
If you aren't able to update to 0.6.* yet you should pin the previous commit.
|
|
fix #1540
|
|
* feat(highlight): add Normal highlights for prompt and results
* fix(highlight): link to TelescopeNormal by default
|
|
- also updates the error message to point to it
|
|
|
|
- requires nvim-lua/plenary.nvim#260
|
|
|
|
|
|
* feat: add highlight group: TelescopePreviewMessage
* fix indentation from 4 to 2 spaces
|
|
|
|
|
|
|
|
* add icons to git_status finder
* fix lint warning
* fix incorrect removed icon
* refactor, more states/icons
* refactor, widen columns to allow for 3char width icons
* attempted col width fix
* fixup: small comments
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
|
|
|
|
|
|
* Enhance Telescope command close #581
* bug fix
|
|
Requires up to date plenary version
|
|
* 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
|
|
|
|
|
|
* refactor telescope command
* addd telescope default options support
* fix variable name wrong
* convert command line string to lua type
* add comment.
* update readme for use theme in commandline
* enhance complete in commandline
* enhance complete in commandline
* enhance covert commandline options
|
|
|
|
|
|
Configure preview window with:
autocmd User TelescopePreviewerLoaded setlocal wrap
autocmd User TelescopePreviewerLoaded setlocal number
file_maker example: Use regex highlighting for certain filetype like `*min.js` because they slow
down things with treesitter highlighter. Just a snippet for tests. We will do an extension :)
local previewers = require('telescope.previewers')
local putils = require('telescope.previewers.utils')
local pfiletype = require('plenary.filetype')
local _bad = { '.*%.min%.js' }
local bad_files = function(filepath)
for _, v in ipairs(_bad) do
if filepath:match(v) then
return true
end
end
return false
end
local new_maker = function(filepath, bufnr, bufname, use_ft_detect, callback)
if use_ft_detect == nil then use_ft_detect = true end
if bad_files(filepath) then
previewers.buffer_previewer_maker(filepath, bufnr, bufname, false, callback)
local ft = pfiletype.detect(filepath)
putils.regex_highlighter(bufnr, ft)
else
previewers.buffer_previewer_maker(filepath, bufnr, bufname, use_ft_detect, callback)
end
end
require('telescope').setup {
defaults = {
buffer_previewer_maker = new_maker,
}
}
|
|
|
|
|
|
Also make vim buffer line configurable
|
|
|
|
* support custom list type commands
* update command usage
|
|
* rewrite command of telescope
* add complete support
* add comment
* rewrite get builtin list
* Update README.md
* use vim.tbl_keys function
* rewrite complete-list
|
|
|
|
* Add Telescope Commands
* Add Colorscheme support
* Add Command for coloscehme
* add marks support
* rename commad
|
|
* enable prompt_prefix option
* add hl and default value
* default hl and prefix
* fixup: move the redraw til after prompt create
* fixup: nits
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
|
|
* Add highlight for selection caret
* add default hl
* remove highlight overlap
|
|
* [WIP]: Mon 28 Sep 2020 01:08:24 PM EDT
* add much much better tracking. so much less hax
* status updates, oneshot job updates, etc.
* remove temp function
* add status function
* asdfasdfasdf
|
|
|
|
Started adding `resolve` which will allow you to do some really nice
stuff easily with options to get the window options from a variety of
inputs.
You can see how we do it in pickers.lua for borders & borderchars
currently.
|
|
|
|
|
|
|
|
|
|
|
|
|