zsh-vi-mode icon indicating copy to clipboard operation
zsh-vi-mode copied to clipboard

Ctrl commands are broken

Open dagadbm opened this issue 2 years ago • 3 comments

General information

When using zsh-vi-mode I try to use Ctl-Z or Ctrl-G or Ctrl-F to do several fzf commands I usually run but when I try to use them with zsh-vi-mode it doenst work.

Here are the relevant functions that do it:

https://github.com/dagadbm/dotfiles/blob/master/zsh/zshrc.zsh#L116

Basic examination

  • [ ] I have read through the README page
  • [ ] I have the latest version of zsh-vi-mode
  • [ ] I have tested with another terminal program

Problem description

Reproduction steps

Expected behavior

dagadbm avatar Jul 18 '22 13:07 dagadbm

Same issue

antony-frolov avatar Sep 26 '22 12:09 antony-frolov

this is addressed in the readme

(although the solutions in the readme don't work for me. But I could well be doing something wrong. If you can get it to work, please comment back!)

EDIT: I've since got it working just as the readme suggests. Was my own errors as expected.

tjex avatar Nov 01 '22 18:11 tjex

I was able to get my history widget back (<C-r>) with the following:

function zvm_after_init() {
 zvm_bindkey viins '^R' fzf-history-widget
}

MostHated avatar Apr 11 '23 15:04 MostHated