summaryrefslogtreecommitdiff
path: root/lua/telescope/init.lua
AgeCommit message (Collapse)Author
2023-01-22docs: proof-read edits (#2311)James Trew
2022-08-13fix: typo in docs (#2100)Emiel Van Severen
2022-07-12docs: add module names to fix gO (#2064)Simon Hauser
2022-05-09feat(docs): simplified architecture flow chart (#1925)fdschmidt93
`:h telescope.nvim` now shows an overview of the telescope architecture
2021-12-27fix: too early setup on initial extension access (#1601)fdschmidt93
2021-09-16docs: rewrite readme and add missing config values + builtin optsSimon Hauser
2021-08-20feat(performance): Major performance improvements using async v2 from ↵TJ DeVries
@oberblastmeister (#987) * start: Working w/ async jobs * short circuit to using bad finder if you pass writer.
2021-07-23chore: use stylua for formatting (#1040)Simon Hauser
* chore: stylua job and config * reformat with stylua
2021-06-09feat: set defaults for each picker in telescope setup (#883)Simon Hauser
This allows easier picker configuration for example: ```lua require("telescope").setup { pickers = { buffers = { show_all_buffers = true, sort_lastused = true, theme = "dropdown", previewer = false, mappings = { i = { ["<c-q>"] = "smart_send_to_qflist", } } } } } ``` This configuration will be applied when running `:Telescope buffers`
2021-03-03docs: start documenting previewers (#574)Simon Hauser
Co-authored-by: Muhammed Zakir <MuhammedZakir@users.noreply.github.com>
2021-02-27fix: a lot of small things and adds more customization for caret (#554)Simon Hauser
Attention: prompt_prefix will no longer add a space at the end. So if you still want a space at the end make sure your configuration has one. The default should not be changed. So if you haven't copied prompt_prefix in your config this doesn't affect you. Feat: - prompt prefix does no longer always end with space - selection_caret configurable. Default: `> ` - result_prefix configurable. Default: ` ` - more actions for git_branches - <c-t> does track the branch - <c-r> does rebase branch - also added delete branch action but not configured. See readme on how to do that Fixes: - fix docgen ci - Better error for lsp_workspace_symbols - better formatting for CONTRIBUTING.md - move from systemlist to plenary.job - git branch now supports checkout on remote branches
2021-02-24feat: Add vim docs & generators (#370)TJ DeVries
* feat: Add vim docs & generators * example of what we could start to do * Docgen CI job * wip * incremental updates. soon good validation * [Actions] Generate Documentation skip-checks: true * pretty cool now * [Actions] Generate Documentation skip-checks: true * make sure telescope is loaded first * Add updates. Maybe this will not delete now? * Add defaults tags as well * :smile: Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> Co-authored-by: Github Actions <actions@github>
2020-11-23feat: v0.1 of extensions (#278)TJ DeVries
2020-10-06fix: Reduce memory leaks (#148)TJ DeVries
It is not 100% clear that we've gotten ALL the memory leaks, but it seems much much much better and doesn't look like it's going to die immediately or as often anymore :)
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-11fix: make begin proffTJ DeVries
2020-09-11feat: Add some more layout optionsTJ DeVries
2020-09-07Begin work on larger global config, to tailor defaultsTJ DeVries
2020-08-27feat: Add livegrep and lsp referecnesTJ DeVries
2020-08-24Add fuzzy git file finderZTJ DeVries
2020-07-17Another streamTJ DeVries
2020-07-15Get simple rg example to workTJ DeVries
2020-07-15PipesTJ DeVries
2020-07-15Initial commit after streamTJ DeVries