diff options
-rw-r--r-- | .emacs.d/.gitignore | 2 | ||||
-rw-r--r-- | .emacs.d/lisp/init-company.el | 1 | ||||
-rwxr-xr-x | bin/ek | 6 |
3 files changed, 6 insertions, 3 deletions
diff --git a/.emacs.d/.gitignore b/.emacs.d/.gitignore index 479677f..52517f8 100644 --- a/.emacs.d/.gitignore +++ b/.emacs.d/.gitignore @@ -19,3 +19,5 @@ history projects eln-cache places + +local diff --git a/.emacs.d/lisp/init-company.el b/.emacs.d/lisp/init-company.el index 06ff700..c1e7414 100644 --- a/.emacs.d/lisp/init-company.el +++ b/.emacs.d/lisp/init-company.el @@ -1,4 +1,5 @@ (when (gx/maybe-require-package 'company) + (add-hook 'org-mode-hook #'gx/company-mode-in-tui) (add-hook 'ledger-mode-hook #'gx/company-mode-in-tui) (add-hook 'prog-mode-hook #'gx/company-mode-in-tui)) @@ -1,11 +1,11 @@ #!/usr/bin/env bash server_running () { - emacsclient -a "false" -e "(boundp 'server-process)" + emacsclient -a "false" -e "(boundp 'server-process)" "$@" } -if [ "t" == "$(server_running)" ]; then - emacsclient -e '(kill-emacs)' +if [ "t" == "$(server_running "$@")" ]; then + emacsclient -e '(kill-emacs)' "$@" echo "Emacs server is killed" else echo "Emacs server is not running" |