mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-10 19:10:36 +00:00
10 lines
237 B
Plaintext
10 lines
237 B
Plaintext
|
notes for video: https://www.youtube.com/watch?v=RDsUapd8jVw
|
||
|
|
||
|
# site: https://github.com/chrisallenlane/cheat
|
||
|
# cheat zsh autocomplete; add to ~/.zshrc
|
||
|
_cmpl_cheat() {
|
||
|
reply=($(cheat -l | cut -d' ' -f1))
|
||
|
}
|
||
|
compctl -K _cmpl_cheat cheat
|
||
|
|