summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-04nit: Abstract some functions (#498)TJ DeVries
2021-02-04feat: Open quickfix list on it's own action (#497)Tae Sandoval
Given that Telescope has a picker for quickfix items, opening its window automatically isn't that useful, so this commit removes the call from send_to_qflist and send_selected_to_qflist. Some users may prefer the old behaviour though so a new action open_qflist was created. To open quickfix with one key, you can do this: ``` ["<C-q>"] = actions.send_to_qflist + actions.open_qflist, ``` Co-authored-by: Tae Sandoval <tssm@users.noreply.github.com>
2021-02-02Add user autocmd TelescopeFindPre (#491)Raphael
* Add user autocmd Telescope * change name to TelescopeFindPre * update Readme for Telescope user autocmds
2021-02-02remove bat env theme variable (#489)Raphael
2021-02-02feat: add sections opt for man_pages and fix for macos (#413)JINNOUCHI Yasushi
:Telescope man_pages sections=3 will only show man pages from section 3 :Telescope man_pages sections=1,2,3 will show man pages from section 1, 2 and 3
2021-02-01fix: remove env workaround for term_previewer (#482)Simon Hauser
Also fixes #484
2021-02-01Correct missing comma #485 (#487)Peacock
2021-01-31readme: Add new community extension: asynctasks (#483)Gustavo Sampaio
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-31fix: Multi byte truncate for displayer (#464)JINNOUCHI Yasushi
This is needed for calling strdisplaywidth() from Lua loop. See https://github.com/nvim-telescope/telescope.nvim/issues/414 See https://github.com/neovim/neovim/blob/a1ed941a7881122fda2fd48e71e890ed55e4d08e/src/nvim/eval/funcs.c#L9845-L9858 Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2021-01-30fix: dont error if the previewer is not able to set at the current timeTJ DeVries
2021-01-30fix: no TS highlight if it gets loaded after Telescope (#479)elianiva
2021-01-30fix: git branches previewer add nil check to cend (#478)Corentin Brunel
Co-authored-by: Corentin Brunel <cbrunel@localhost.localdomain>
2021-01-29Improves documentation by fixing spelling mistake (#475)David Begin
If you're reading this, then you know begin doesn't deserver hacktoberfest cred.
2021-01-28feat: allow a callback to be called on on_lines update (for filtering tags ↵Senghan Bright
from query text) (#455) * allow a callback to be called on on_lines update * . * remove unused _filter_marker var * nit: Move to table and implement 'close' Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2021-01-27Undo #465 (#469)anott03
We have broke all extension that do some sort of goto_file_selection:replace Problem described here: https://github.com/nvim-telescope/telescope.nvim/pull/465#issuecomment-767831897 Possible solution: https://github.com/nvim-telescope/telescope.nvim/pull/465#issuecomment-767808213
2021-01-25fix: move to actions.select as default action (#465)anott03
2021-01-25feat: support different languages for help_tags if helpfiles are available ↵JINNOUCHI Yasushi
in other languages (#430) " use helplang and show en help when it is not found. :Telescope help_tags " use helplang, but do not show en help when it is not found. :Telescope help_tags fallback=false " ignore helplang and show help from specified langs. " when helps cannot be found, show en help. :Telescope help_tags lang=ja,ru " ignore helplang and show help from specified langs only. :Telescope help_tags lang=ja,ru fallback=false
2021-01-24fix: allow previewer win customization (#460)Alvaro Muñoz
2021-01-23fix: escape filename for previewer and action (#456)elianiva
2021-01-22feat: add vim buffer directory viewer using plenary scandir.ls_async (#421)Simon Hauser
feat: git_status (??) now shows file or directory fix: attempt to index field 'state' (a nil value)
2021-01-22fix: fnameescape in from_entry (#454)Simon Hauser
if entry.path is nil vim.fn.fnameescape will return null which results in all other option no longer be checked
2021-01-22fix: escape filename before opening it (#453)elianiva
2021-01-20grep_string/live_grep support multiple dirs (#448)tami5
+ overwriting vimgrep_argumnets
2021-01-19fix: Treesitter link in README to correct sectionDave Lage
2021-01-19feat: add ignore_current_buffer opt to builtin buffers (#444)relnod
2021-01-19fix: error message too many open files (#432)Simon Hauser
and buffer previewer still "erroring" out for builtin.buffers
2021-01-18Substring matcher (#443)Senghan Bright
* add substr_matcher * correct function name * use util.split function and remove unused opts
2021-01-17feat: Add option to set initial_mode (#442)wordhou
2021-01-17improve conver_user_opts function readable (#441)Raphael
2021-01-16feat: allow to list files in git submodules (#329)Massimo Redaelli
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2021-01-16support convert custom command arg (#439)Raphael
* support convert custom command arg * format code * remove unused variable
2021-01-15fix: preview for unnamed buffers (#434)Simon Hauser
2021-01-15feat: show git log for remote branches (#428)Simon Hauser
2021-01-12fix #426 (#427)Simon Hauser
2021-01-12fix #385 (#422)Simon Hauser
2021-01-12fix: git_branch only remove remotes/origin part (#423)JINNOUCHI Yasushi
2021-01-11feat: only_search_text (#419)TJ DeVries
2021-01-11refactor file_maker signature and fix scrolling (#412)Simon Hauser
2021-01-11fix: previewer windows fix (#371)Simon Hauser
2021-01-11feat: add feature request issue template (#418)Simon Hauser
2021-01-11feat: quickfix (#293)TJ DeVries
* feat: quickfix (not implemented) * [WIP]: Wed 09 Dec 2020 11:11:30 PM EST * somewhat working linked list impl * getting closer * might be working * might be working for real * works and implemented basic example * dont forget to close prompt * fix descending and add more tests * test fixes * fix test * more logging * Fix some more tests * Fix logging messing up tests * fix: lint * fix: multi select stuffs
2021-01-09fix #406 (#407)Raphael
2021-01-09fix: use valid paths for term_previewer vimgrep and qflist (#402)JINNOUCHI Yasushi
2021-01-08fix: custom extensions opts for commands (#404)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-06fix: remove quotes from spell suggestions (#400)Senghan Bright
2021-01-06Spell suggestions (#399)Senghan Bright
* feat: spell suggest picker * set correct window title * add entry to readme
2021-01-06add devicons to oldfiles picker (#397)JINNOUCHI Yasushi
2021-01-05fix: handle directories in windows with dir (term_previewer) (#395)Mike