-
-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CTRL+R is overwritten #242
Comments
Hi @gabyx, Thanks for your issue, I think your problem is similar to #15 as the reason mentioned in README. You can load your specific plugin after zsh-vi-mode is initialized aspect as below. function zvm_after_init() {
source "<your_plugin_folder>/zsh-navigation-tools.plugin.zsh"
} or function zvm_after_init() {
zvm_bindkey viins '^R' znt-history-widget
} Thanks & Regards |
Thanks a lot.BR
|
I have a similar issue, I was using fzf plugin for the nice history search widget, after installed zvm, I find that when I do |
For integration with fzf history search, this worked for me: function zvm_after_init() {
zvm_bindkey viins "^R" fzf-history-widget
} |
General information
Please report the following information as possible as you can:
Basic examination
Problem description
Some how binding
CTRL+R
gets overwritten when the plugin is loaded, but this is not mentioned in the readme (?).This is especially the case when first loading the
z-shell/zsh-navigation-tools
Reproduction steps
n-history
widget. But instead the normal historybck-i-search
is done.Expected behavior
CTRL+R is not overwritten or reset?
Of course the behavior can be disabled with
local ZVM_INIT_MODE=sourcing
when first loading this plugin.I am just confused why this overwrite happens?
The text was updated successfully, but these errors were encountered: