This continues a pattern that was introduced in ffa45b0 and refined
further in later commits. This enables all aliases by default, but can
be disabled by any user if they remove the appropriate
aliases/enabled/*.bash file.
20 lines
322 B
Bash
20 lines
322 B
Bash
#!/bin/bash
|
|
|
|
alias tls="$TODO ls"
|
|
alias ta="$TODO a"
|
|
alias trm="$TODO rm"
|
|
alias tdo="$TODO do"
|
|
alias tpri="$TODO pri"
|
|
|
|
todo-help() {
|
|
echo
|
|
echo "todo.txt-cli Custom Aliases Usage"
|
|
echo
|
|
echo " tls = $TODO ls"
|
|
echo " ta = $TODO add"
|
|
echo " trm = $TODO rm"
|
|
echo " tdo = $TODO do"
|
|
echo " tpri = $TODO pri"
|
|
echo
|
|
}
|