summaryrefslogtreecommitdiff
path: root/plugin
AgeCommit message (Collapse)Author
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