summaryrefslogtreecommitdiff
path: root/plugin
AgeCommit message (Collapse)Author
2022-10-08fix: selected icon highlight with color_devicons to false (#2187)Antoine Bertin
2022-04-25break: remove lsp code actions (#1866)Simon Hauser
see :help telescope.changelog-1866 for more information
2022-04-25feat: switch to telescope.lua (#1873)Simon Hauser
Co-authored-by: Christian Clason <christian.clason@uni-due.de>
2022-04-22fix: fix keep insert when going from telescope window to telescope window ↵kylo252
(#1600) Also fixes `initial_mode` Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-04-22break: bump minimum required neovim version to 0.7 (#1851)Simon Hauser
2022-04-18feat: add default hl group for devicons (#1849)Antoine Bertin
2022-01-05feat: multiselect icon (#1572)Luke Kershaw
* feat: add `multi_icon` option to pickers and corresponding highlight * feat: allow `multi_icon` to be any length * fix: adjust `selection_caret` highlighting
2021-12-10break: bump the minimum required neovim version to 0.6 or higher (#1549)Simon Hauser
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.
2021-12-03feat: highlight group for counter: TelescopePromptCounterSimon Hauser
fix #1540
2021-11-29add Normal highlights for prompt and results (#1514)max397574
* feat(highlight): add Normal highlights for prompt and results * fix(highlight): link to TelescopeNormal by default
2021-11-13docs: add a changelog entry for updated version requirements (#1444)Luke Kershaw
- also updates the error message to point to it
2021-11-04breaking: bump nvim version requirement to 0.5.1 (#1406)Julian Fricker
2021-10-26feat: separate higlight for titles in picker windows (#1362)Luke Kershaw
- requires nvim-lua/plenary.nvim#260
2021-09-27fix highlight declaration of 'TelescopePreviewMessageFillchar' (#1290)Sávio Carlos Martins Costa
2021-09-27feat: filetype_hook & improved docs; fix preview partial override (#1273)fdschmidt93
2021-09-27feat: add highlight group: TelescopePreviewMessage (#1286)Sávio Carlos Martins Costa
* feat: add highlight group: TelescopePreviewMessage * fix indentation from 4 to 2 spaces
2021-08-21fix(command_definition): default to nil on empty <f-args> (#1142)Jonathan Teran
2021-08-19Allow range parameters on command parser (#1123)Jan Steinke
2021-04-27feat: Just straight up error right away for nvim 0.4.4TJ DeVries
2021-04-09feat: add icons to git_status finder (#401)Senghan Bright
* 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>
2021-03-04fix: add loading guard (#602)Dmitry
2021-03-03fix: subcommand completion for each extension (#597)tamago324
2021-03-02Enhance Telescope command (#588)Raphael
* Enhance Telescope command close #581 * bug fix
2021-02-12feat: buffer previewers ls is now colorized (#505)Simon Hauser
Requires up to date plenary version
2021-01-31support custom table type keyword (#450)Raphael
* 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
2021-01-24fix: allow previewer win customization (#460)Alvaro Muñoz
2021-01-09fix #406 (#407)Raphael
2021-01-08refactor telescope command (#398)Raphael
* 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
2021-01-04feat: Add highlight to builtin.git_status (#388)Cedric M'Passi
2021-01-04feat: add extension in telescope command (#380)Raphael
2020-12-29feat: All buffer previewers are now async and more config options (#354)Simon Hauser
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, } }
2020-12-19Feat: displayer hl_chars and TelescopeResults hlgroups (#349)Simon Hauser
2020-12-17Fix builtin.builtin again and add TelescopePreviewMatch hlgroup (#342)Simon Hauser
2020-12-17Update autocmd, highlights and help_tags previewers (#332)Simon Hauser
Also make vim buffer line configurable
2020-11-23Filter the completion of the command (#279)tamago324
2020-11-03Feat: convert options if it is table type in lua (#220)Raphael
* support custom list type commands * update command usage
2020-11-01rewrite command of telescope (#197)Raphael
* rewrite command of telescope * add complete support * add comment * rewrite get builtin list * Update README.md * use vim.tbl_keys function * rewrite complete-list
2020-10-24feat: turn on matching colors by default, since people do not know about itTJ DeVries
2020-10-12Add Colorscheme and Marks Support and Telescope Commands (#167)Raphael
* Add Telescope Commands * Add Colorscheme support * Add Command for coloscehme * add marks support * rename commad
2020-10-08feat: prompt_prefix option (#154)Alvaro Muñoz
* 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>
2020-10-02feat: Add highlight for selection caret (#135)Alvaro Muñoz
* Add highlight for selection caret * add default hl * remove highlight overlap
2020-09-29feat: Add status, better debug, and some associated refactorsTJ DeVries
* [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
2020-09-26feat: Add TelescopeMatching a new highlight for matches from sortersTJ DeVries
2020-09-12feat: Better border configuration.TJ DeVries
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.
2020-09-11fix: make begin proffTJ DeVries
2020-09-11temp: add PERFTJ DeVries
2020-09-03feat: Add cool mapping for <C-R> in command modeTJ DeVries
2020-09-01wip: new sortersTJ DeVries
2020-08-29feat: Add selection and start actionsTJ DeVries
2020-07-15Initial commit after streamTJ DeVries