summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-10Move buffer lists to vim sectionDave Lage
2020-12-10Add links to sections in intro.Dave Lage
2020-12-10Fix treesitter tableDave Lage
2020-12-10FormattingDave Lage
2020-12-10Make smaller targetable lists for pickersDave Lage
2020-12-10Extend context in intro.Dave Lage
2020-12-10Update pickers linksDave Lage
2020-12-10Use lowercase to be consistentDave Lage
2020-12-10Use local extensions section.Dave Lage
2020-12-10Update link for pickersDave Lage
2020-12-10Lots of README changes (#324)Dave Lage
* Lots of README changes * fix: Grammar * Re-order pickers/extensions
2020-12-10List all nvim-telescope extensions.Dave Lage
2020-12-10fix typo (#322)Eli Flanagan
2020-12-10Feat: symbols json picker (#303)Simon Hauser
2020-12-10Fix: filetype guesser (#321)Simon Hauser
2020-12-09fix: Don't require ts at mod levelTJ DeVries
2020-12-09ci fix: don't cache git repos (#320)Simon Hauser
2020-12-09feat: make ci greenTJ DeVries
2020-12-09ci: Pipeline Tests (#315)Simon Hauser
2020-12-09ci: Add luacheck ci job (#317)Simon Hauser
* Add luacheck ci job * Fix most of the linting issues * fixup: lint Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2020-12-09Feat: Opt in vim buffers for previewers (#298)Simon Hauser
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, } }
2020-12-07feat: Force delete buffersTJ DeVries
2020-12-03feat: Create LICENSE (#312)TJ DeVries
2020-12-03fix: Set and unset report to what's needed when deleting buffers. (#282)Julian Berman
Fixes #105.
2020-12-03scratch: show conniTJ DeVries
2020-12-03Fix file_ingore_patterns for tags and lsp (#309)Simon Hauser
closes #299 authored by: @Conni2461
2020-12-03Feat: Displayer now supports highlights for separator and elements (#304)Simon Hauser
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, } ```
2020-12-03fix: add back filetypedetect on edit (#283)Mike Hartington
* add back filetypedetect on edit * chore(): apply feedback
2020-12-02Fix to pass opts to pickers (#301)tamago324
builtins were not passing `opts` correctly, but now do.
2020-12-01add new gif to show telescope.nvim (#306)Raphael
2020-12-02add autocommands finder to readmeSenghan Bright
2020-12-02new builtin - autocommands (#302)Senghan Bright
* 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
2020-12-01update readme to include packer extensionSenghan Bright
2020-12-01fix: abstract and remove paramTJ DeVries
2020-12-01fix: builtin runner insert issue (#266)tami5
closes #262 , adds new parameter to action.close. Users know can have more control over the mode after action.close is called.
2020-11-29Update README.mdtami5
2020-11-29Update README.md: add new previewtami5
by @glepnir
2020-11-28Fix builtin.builtin for lsp and git modules (#300)Simon Hauser
2020-11-28Remove less from default termopen_env (#295)Simon Hauser
2020-11-28feat: add lsp range code actions (#297)windwp
https://github.com/neovim/neovim/pull/12962 authored by: @windwp
2020-11-27feat: Make tab toggle between git add and git restore in ↵Cedric M'Passi
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
2020-11-26Refactor builtin (#287)Simon Hauser
2020-11-24fix: Use noremap when mapping. (#286)Julian Berman
Previously, if e.g. : was remapped, Telescope would be unclosable with its mappings (<Esc>). (Do the same for ensuring we :silent)
2020-11-24fix: bug report template to suggest -nu instead of -Nu (#284)tami5
@Julian
2020-11-24Fix the bug report template to suggest -uJulian Berman
I *assume* this is what the intention here is? I.e. to say to use the test.vim as the config. I don't think `-N` does anything either, but let me know if I'm wrong.
2020-11-23Add gitter tagtami5
2020-11-23feat: highlighter onlyTJ DeVries
2020-11-23Filter the completion of the command (#279)tamago324
2020-11-23feat: Buffers rework (indicators and sorting) (#208)Simon Hauser
2020-11-23feat: v0.1 of extensions (#278)TJ DeVries