5 lines
61 B
Bash
5 lines
61 B
Bash
|
# Open `~/.todo.md` file.
|
||
|
function todo() {
|
||
|
vi ~/.todo.md
|
||
|
}
|