mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
f3be3cda6a
* services/emacs: add `defaultEditor` option Sets `emacsclient` as the default editor using the `EDITOR` environment variable.
18 lines
316 B
Bash
18 lines
316 B
Bash
set +u
|
|
source $TESTED/home-path/etc/profile.d/hm-session-vars.sh
|
|
set -u
|
|
|
|
check_arguments () {
|
|
if [ "$1" != "$2" ]; then
|
|
@coreutils@/bin/cat <<- EOF
|
|
Expected arguments:
|
|
$1
|
|
but got:
|
|
$2
|
|
EOF
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
check_arguments "--create-frame" "$($EDITOR)"
|
|
check_arguments "foo bar baz" "$($EDITOR foo bar baz)"
|