summaryrefslogtreecommitdiff
path: root/lua/telescope/actions/set.lua
AgeCommit message (Collapse)Author
2023-03-21feat: utilize last window cursor position (#2416)James Trew
closes #2386
2023-01-22fix: escape filename used in drop commands (#2339)Ryan Blonna
2022-09-17fix: check for window before scrolling previewer (#2163)Jonas Strittmatter
This avoids an error when scrolling the preview window but the window is not visible (e.g. due to a screen resize).
2022-09-04feat: added support for tabdrop (#2143)Ryan Koval
2022-08-13feat: add drop command for buffers (#2131)Ryan Blonna
2022-07-12docs: add module names to fix gO (#2064)Simon Hauser
2022-07-07fix: grep_string search= jump to lineSimon Hauser
fix #2047
2022-05-20fix: wrong win on selection (#1951)fdschmidt93
2022-05-20fix: exiting picker from insert mode (#1202)fdschmidt93
2022-05-18fix: set tagstack when we jump with lsp in telescope (#1887)dagle
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-05-15hotfix: regression from latest commit, files could no longer be openedSimon Hauser
2022-05-15feat: Add ability to choose window to edit (#745)TJ DeVries
2022-04-18docs: add module prefix (#1847)Simon Hauser
2022-04-08fix: save position into jumplist before 'edit' action (#1234)Joshua Cao
currently enabled for some builtins. You can manually enable it by adding `push_cursor_on_edit = true` to the builtin options. But feel free to open a PR if you find a builtin that needs this option enabled.
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>
2022-01-09Revert "fix: folding when a file is opened (#1643)" (#1673)Simon Hauser
This reverts commit 01426c491b2b612b48f48b26e2e77679006999d3.
2022-01-09fix: folding when a file is opened (#1643)Abel Mulugeta
* fix: folding after a file is opened fixes #559 * fix: wrap nvim_win_set_cursor in autocmd * chore: Cleanup folding fix * explain the reason behind the autocmd Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2021-12-06fix: ensure buffer is listed before edit_buffer (#1492)Richard Lu
2021-11-13feat: results scrolling actions (#1436)Luke Kershaw
2021-09-16fix: wrap vim.cmd in pcall to avoid error (#1247)gavynriebau
When opening a file under swap from the "fd" finder results an error was printed after the file was opened, wrapping the call to "vim.cmd" in a pcall avoids the error.
2021-08-03fix: fix `file_browser` on windows and potentially other file opens (#1026)Luke Kershaw
2021-07-23chore: use stylua for formatting (#1040)Simon Hauser
* chore: stylua job and config * reformat with stylua
2021-07-17fix: prevent error if preview scroll is triggered but no preview is ↵Abe Nonym
available (#994)
2021-07-14refactor: move from telescope.path to plenary.path (#473)anott03
This will deprecate telescope.path, we will remove it soon. Please move over to plenary.path Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
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 :)
2021-05-09feat: jumplist picker and jump to row/col on existing buffers. (#813)caojoshua
2021-04-22docs: add other actions modules (#792)TJ DeVries
* docs: add other actions modules * [docgen] Update doc/telescope.txt skip-checks: true * fixup * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Github Actions <actions@github>
2021-04-15Fix: open files with the same name (#697) (#741)Lars Haalck
* Fix: open files with the same name (#697) * Fix: fire vim.cmd if command is not edit (#760)
2021-03-05feat: define scroll speed + smart_send to qflist (#610)elianiva
* smart send to qflist * Previewer scrolling for half window height * Start doing cleanup in readme * feat: add ability to define the scrolling speed * move scrolling action to action.set * docs: added more docs for actions * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> Co-authored-by: Github Actions <actions@github>
2021-02-27fix: goto_file_selection performance issues, do not reload buffer if it is ↵oberblastmeister
already loaded (#541)
2021-02-24fix: scroll misbehaving + fixed jump to middle (#547)elianiva
* fix: scroll misbehaving + fixed jump to middle * add test * fixx * fix nil
2021-02-24feat: advanced normal mode (#463)Simon Hauser
Add <count>j and k to normal mode and H and L to jump at top and bottom of displayed results
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>