Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 358 Bytes

File metadata and controls

22 lines (17 loc) · 358 Bytes

For integrating Recall into shell workflow:

Use Ctrl + h to launch recall app.

ZSH (.zshrc)

# Create the widget function
recall-widget() {
    recall
    zle reset-prompt
}
zle -N recall-widget  # Register the widget

# Bind Alt+h to the widget
bindkey '^h' recall-widget

Bash (.bashrc)

bind '"\C-h": "recall\n"'  # Ctrl+h