summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/files.lua
AgeCommit message (Collapse)Author
2021-04-28fix: use treesitter language name instead of ft if available (#801)Dhruv Manilawala
* fix: use treesitter language name if available This will fix the problem where the filetype is different than the treesitter lang name. Eg., filetyep -> "sh", langname -> "bash" * refactor: use treesitter only if the query object is available * refactor: ok -> parser_ok ;)
2021-04-17fix: live_grep path appending with cwd when already absolute (#768)August Masquelier
2021-04-14picker(live_grep): add option to grep only over open files (#666)James Walmsley
2021-04-08feat: asyncify pickers - except for live_grep (#709)TJ DeVries
* something kind of works already * yayayayayayayayayayayayayayayayayayayayayayayayayayayayayayayayaya * use async for everything besides live jobs * fix: fixup autocmds previewer * fix: lints for prime * temp: Add example of how we can think about async sorters * feat: Allow picker to decide when to cancel * fix: simplify scoring logic and tests * fixup: name * fix: Move back towards more backwards compat methods * fixup: Remove results from opts * fixup: remove trailing quote * fixup: Attempt to clean up some more async items. Next is status * wip: Add todo for when bfredl implements extmarks over the EOL * wip * fixup: got em * fixup: cleaning * fixup: docs
2021-04-07fix: Use standardized names for current buffer fuzzy find (#737)TJ DeVries
2021-04-06feat: buf highlights for current buffer fuzzy find (#732)TJ DeVries
* feat: Add buffer highlights from treesitter * fix: Handle not having tree sitter in some buffers * fixup * fixup * fixup: move back to old node
2021-04-04feat: current buffer fuzzy find improvements (#694)August Masquelier
If you don't want to have a previewer disable it with `:Telescope current_buffer_fuzzy_find previewer=false` To ignore empty lines do: `:Telescope current_buffer_fuzzy_find skip_empty_lines=true`
2021-03-31fix: better relative path output in `live_grep` and `grep_string` (#683)Jesse Leite
2021-03-29picker(git_branch): show committer, upstream and date (#695)Kyoichiro Yamada
* wip: rich finder for branches for: https://github.com/nvim-telescope/telescope.nvim/issues/569 * fix some diagnostics
2021-03-21Fix prompt titles. Closes #OCD. (#675)Jesse Leite
2021-03-04feat: add hidden opt to file_browser (#608)Tom
:Telescope file_browser hidden=true
2021-02-23feat: file browser & refresh interface (#290)Simon Hauser
and more picker api stuff for sunjon. refresh is implemented for file_browser and git_status
2021-02-22feat: Action improvements (#472)TJ DeVries
* feat: replace_map * feat: Add action_set and action_state * fix: Move all actions.get_ to action_state.get_ * fix: replace all internal references of _goto_file_selection_edit * feat: add some docs * fix: lint * feat: actions.select * remove mentions and usage of goto_file_selection APIs * feat: special case attach_mappings to be overridable and defaultable * Having goto_file_selection mappings will cause a error as well as replacing deprecated goto_file_selection methodes For config and replacing use this instead: - actions.select_default - actions.select_horizonal - actions.select_vertical - actions.select_tab Only replacing: - actions.set.edit -- for replacing all select functions * adds actions.state.select_key_to_edit_key Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2021-02-12feat: add 'follow' opt to find_files (#530)Asbjørn Håland
This will add possibility to follow symlinks
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-20grep_string/live_grep support multiple dirs (#448)tami5
+ overwriting vimgrep_argumnets
2021-01-12fix #426 (#427)Simon Hauser
2021-01-12fix #385 (#422)Simon Hauser
2021-01-04fix: live_grep will now accept cwd (#390)Simon Hauser
2021-01-03fix: escape chars instead of resetting the prompt (#379)elianiva
2021-01-03fix: live_grep throws an error if you insert `\` (#378)elianiva
2020-12-31fix: tags now work with hasktags (#375)Simon Hauser
2020-12-27feat: all entry_makers are now overridable and icons for builtin.buffers (#364)tamago324
2020-12-26Feat: Add hidden to find_files (#340)Julian Berman
2020-12-17feat: add search_dirs opt to builtin.find_files to search from multiple dirs ↵Anirudh Haritas Murali
(#237)
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-11-26Refactor builtin (#287)Simon Hauser