summaryrefslogtreecommitdiff
path: root/lua/telescope/actions/history.lua
AgeCommit message (Collapse)Author
2023-01-30feat: add support for wrapping history on reaching history begin or end (#2349)Reid Swan
2023-01-22docs: telescope.nvim spelling and grammar fixes (#2325)vladislav doster
Corrects the following issues: - article agreement - spelling
2022-04-30docs: add 'https://' prefix to smart history link (#1885)Austin Ray
2022-04-18docs: add module prefix (#1847)Simon Hauser
2022-03-13feat: improve UX with vim.notify (#1763)tami5
* fix(notify): don't report request on new line * ref(notify): update message format * ref(msgs): always quote values + decrease duplication * fix(ci): undefined variables * ref(actions): temporary silent actions.__index errors * cleanup * revert: panic effort, we continue to use error for those Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2021-07-23chore: use stylua for formatting (#1040)Simon Hauser
* chore: stylua job and config * reformat with stylua
2021-07-09hotfix: just only false to disableSimon Hauser
I knew i will break it with my last commit
2021-07-09feat: cycle prompt history (#521)Simon Hauser
history is enabled on default but cycle_history_next and cycle_history_prev is not mapped yet Example: require('telescope').setup { defaults = { mappings = { i = { ["<C-Down>"] = require('telescope.actions').cycle_history_next, ["<C-Up>"] = require('telescope.actions').cycle_history_prev, } } } } For more information :help telescope.defaults.history big thanks to clason and all other testers :)