zsh: add helpers to copy/set environment variables in Emacs
Alan Pearce alan@alanpearce.eu
Mon, 13 Jun 2022 03:01:02 +0200
1 files changed, 8 insertions(+), 0 deletions(-)
jump to
M user/zsh/zshrc → user/zsh/zshrc
@@ -149,3 +149,11 @@ add_project () { project=${1:-$PWD} emacsclient -e "(projectile-add-known-project \"${project}\")" } + +esetenv () { + emacsclient -e "(setenv \"$1\" \"$2\")" +} + +ecpenv () { + esetenv "$1" "${(P)1}" +}