mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
11 lines
121 B
Bash
11 lines
121 B
Bash
#!/bin/zsh
|
|
|
|
# Emacs
|
|
function em() {
|
|
emacs $@ &>/dev/null &!
|
|
}
|
|
|
|
# Emacs client
|
|
function emc() {
|
|
emacsclient -n $@
|
|
}
|