You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling actions.send_all_to_qf() (bound to <C-q> by default) does not append the current query to prompt history. As a result, on a subsequent invocation of the same picker, you cannot recall the previous query via actions.cycle_history_prev().
Neovim version
NVIM v0.8.1
Build type: Release
LuaJIT 2.1.0-beta3
Compiled by nixbld
Features: +acl +iconv +tui
See ":help feature-compile"
system vimrc file: "$VIM/sysinit.vim"
fall-back for $VIM: "
/nix/store/zfyninsb38hzxkx3rxvwz3lxdxnsfz0j-neovim-unwrapped-0.8.1/share/nvim
"
Description
Calling
actions.send_all_to_qf()
(bound to<C-q>
by default) does not append the current query to prompt history. As a result, on a subsequent invocation of the same picker, you cannot recall the previous query viaactions.cycle_history_prev()
.Neovim version
Operating system and version
NixOS 23.05pre435935.04f574a1c0f (Stoat)
Telescope version / branch / rev
cabf991
checkhealth telescope
Steps to reproduce
echo abc > abc.txt
nvim -nu minimal.lua
:lua require('telescope.builtin').live_grep()
ab
<CR>
to visit currently-selected result:lua require('telescope.builtin').live_grep()
bc
<C-q>
to send results to quickfix:lua require('telescope.builtin').live_grep()
<M-p>
to recall previous query from history viaactions.cycle_history_prev()
Expected behavior
The most recent query (
bc
) is inserted at the prompt.Actual behavior
An older query (
ab
) is inserted at the prompt.Minimal config
The text was updated successfully, but these errors were encountered: