From 315ab343bce1291816b3c9707ef9b9005baf286e Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 4 Mar 2021 11:18:40 -0500 Subject: [PATCH] Edit improvements --- zsh/funcs/editor | 27 +++++++++++++++++++++++++++ zsh/zshrc | 11 ++--------- 2 files changed, 29 insertions(+), 9 deletions(-) create mode 100644 zsh/funcs/editor diff --git a/zsh/funcs/editor b/zsh/funcs/editor new file mode 100644 index 0000000..e6b2312 --- /dev/null +++ b/zsh/funcs/editor @@ -0,0 +1,27 @@ +function edit() { + local editor + printf -v editor "emacsclient -a=\"\" \"\$@\"" + echo $editor + eval "${editor}" +} + +function editc() { + local editor + printf -v editor "emacsclient -c -a=\"\" \"\$@\"" + echo $editor + eval "${editor}" +} + +function editn() { + local editor + printf -v editor "emacsclient -n -a=\"\" \"\$@\"" + echo $editor + eval "${editor}" +} + +function editcn() { + local editor + printf -v editor "emacsclient -cn -a=\"\" \"\$@\"" + echo $editor + eval "${editor}" +} diff --git a/zsh/zshrc b/zsh/zshrc index 6658eec..6325112 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -36,8 +36,8 @@ zle -N down-line-or-beginning-search export COMPLETION_WAITING_DOTS="true" -export VISUAL='emacsclient -c' -export EDITOR='emacsclient -c' +export VISUAL='editc' +export EDITOR='editn' path=("$HOME/bin" "$HOME/go/bin" $path) zstyle ':znap:*' auto-compile no @@ -135,13 +135,6 @@ function vim() { fi } -function edit() { - local editor - printf -v editor "${EDITOR} \"\$@\"" - echo $editor - eval "${editor}" -} - function root() { if [[ -n $(git rev-parse --show-toplevel) ]] then