From 5719eab0314ea92ae4014ff95678dcef499ae7e8 Mon Sep 17 00:00:00 2001 From: qorg11 Date: Tue, 7 Jul 2020 01:00:05 +0200 Subject: [PATCH] added pushall function --- config.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.org b/config.org index 1b270f0..6a6a7aa 100644 --- a/config.org +++ b/config.org @@ -447,6 +447,15 @@ Including indent-buffer, which should not be called automatically on save." (setq erc-default-server website) (setq erc-nick name) + #+END_SRC +** Extra functions + Here I put functions I won't bother to document because they're so + simple. + #+BEGIN_SRC emacs-lisp + (defun git-pushall () + (interactive) + (shell-command "git pushall")) + #+END_SRC * ido Ido is a replacement for keybindings such as C-x C-f and C-x b. Here