added pushall function

This commit is contained in:
qorg11 2020-07-07 01:00:05 +02:00
parent 65292685f0
commit 5719eab031
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -447,6 +447,15 @@ Including indent-buffer, which should not be called automatically on save."
(setq erc-default-server website) (setq erc-default-server website)
(setq erc-nick name) (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 #+END_SRC
* ido * ido
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here Ido is a replacement for keybindings such as C-x C-f and C-x b. Here