From 0b1de586fe274830a0278d1f62c77d5a778f6703 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Fri, 5 Feb 2021 20:27:55 -0500 Subject: [PATCH] Update README --- README.org | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.org b/README.org index 0a62909..3221e61 100644 --- a/README.org +++ b/README.org @@ -703,13 +703,16 @@ Some methods must be called and applied to the current call process in order to (apply #'call-process `(,(car command-parts) nil 0 nil ,@(cdr command-parts))))) #+end_src -+ Run shell commands with =SPC x= -+ Run async shell commands with =SPC z= +Place keybindings for executing shell commands behind =SPC x=. + ++ Run shell commands with =x= ++ Run async shell commands with =z= #+begin_src emacs-lisp (dotfiles/leader - "x" '(dotfiles/run :which-key "Run") - "z" '(async-shell-command :which-key "Async")) + "x" '(:ignore t :which-key "Run") + "xx" '(dotfiles/run :which-key "Run") + "xz" '(async-shell-command :which-key "Async")) #+end_src *** Displays @@ -1052,7 +1055,8 @@ http://company-mode.github.io/ #+begin_src emacs-lisp (use-package company) -(use-package company-lsp) +(use-package company-lsp + :custom (company-backend 'company-lsp)) #+end_src *** Languages