blob: 872f3eea429bd02200cdb7510e4d4bdb7aab5a17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
# This file is run after history_functions.sh have been sourced.
# It converts the defined functions into zsh widgets that are
# thereafter bound to keys for expedience.
zle -N wh_two_back_widget wh_two_back &&
bindkey '^@' wh_two_back_widget
|