Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions fzf-marks.plugin.bash
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,8 @@ function _fzm_setup_bindings {

bind -x "\"$_fzm_key1\": _fzm-widget"
bind "\"$jump_key\":\"$_fzm_key1$_fzm_key2\""
Comment thread
cohml marked this conversation as resolved.
Outdated
bind -m vi-command "\"$jump_key\":\"$_fzm_key1$_fzm_key2\""
bind -m vi-insert "\"$jump_key\":\"$_fzm_key1$_fzm_key2\""
fi

if [[ ${FZF_MARKS_DMARK-} ]]; then
Expand Down
2 changes: 2 additions & 0 deletions fzf-marks.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ zle -N dmark
zle -N fzm

bindkey ${FZF_MARKS_JUMP:-'^g'} fzm
Comment thread
cohml marked this conversation as resolved.
Outdated
bindkey -M vicmd ${FZF_MARKS_JUMP:-'^g'} fzm
bindkey -M viins ${FZF_MARKS_JUMP:-'^g'} fzm
if [ "${FZF_MARKS_DMARK-}" ]; then
bindkey ${FZF_MARKS_DMARK} dmark
fi
Expand Down