From 0f0897c0a141f76db6a01878e32e75a4884307ba Mon Sep 17 00:00:00 2001 From: "A. Chavali" Date: Fri, 20 Dec 2019 20:00:59 +0000 Subject: ~redid Emacs commands from terminal Instead of SPC you have two commands: + spc: Opens a new frame with a file open + spu: Updates a currently opened frame with this new file --- zshenv | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/zshenv b/zshenv index 406230a..ecd7a85 100644 --- a/zshenv +++ b/zshenv @@ -7,13 +7,16 @@ export EDITOR="vim" export SHELL="zsh" alias yapf='python2 -m yapf' alias clip="xclip -sel clip" -alias e="emacsclient -c " alias paste="xclip -o" export force_color_prompt=yes # Programming -SPC() { - emacs $1 & disown > /dev/null; +spc() { + emacsclient -c --socket-name=MAIN $1 & disown +} + +spu() { # Use + emacsclient --socket-name=MAIN $1 & disown } gentemplate() { -- cgit v1.2.3-13-gbd6f