15 lines
185 B
Bash
Raw Normal View History

2019-01-03 13:46:05 -08:00
# call the fedit script
2019-01-03 13:50:47 -08:00
_fedit() {
/usr/bin/fedit
}
_etcedit() {
2019-01-03 13:50:47 -08:00
/usr/bin/fedit -e
}
zle -N fedit
2019-01-03 13:50:47 -08:00
bindkey -M viins '^o' _fedit
zle -N _etcedit
bindkey -M viins '^e' _etcedit