gitea proper src formatting

This commit is contained in:
zdm 2020-02-15 11:37:35 -07:00
parent 19ba650f80
commit bdb9efaf83

View File

@ -11,19 +11,19 @@ Upload regions, buffers, and files to various hosts.
* Usage * Usage
Place emacs-upload.el in ~load-path~ and load the package: Place emacs-upload.el in ~load-path~ and load the package:
#+BEGIN_SRC: emacs-lisp #+BEGIN_SRC: emacs-lisp
(require 'emacs-upload) (require 'emacs-upload)
#+END_SRC #+END_SRC
Optionally, bind the interactive function ~emacs-upload~ to some key: Optionally, bind the interactive function ~emacs-upload~ to some key:
#+BEGIN_SRC: emacs-lisp #+BEGIN_SRC: emacs-lisp
(global-set-key (kbd "C-c e") 'emacs-upload) (global-set-key (kbd "C-c e") 'emacs-upload)
#+END_SRC #+END_SRC
Optionally, set the host upon emacs init: Optionally, set the host upon emacs init:
#+BEGIN_SRC: emacs-lisp #+BEGIN_SRC: emacs-lisp
(emacs-upload/set-host "ix") (emacs-upload/set-host "ix")
#+END_SRC #+END_SRC
~emacs-upload/set-host~ is also an interactive command, so you can ~emacs-upload/set-host~ is also an interactive command, so you can
change your host on the fly. change your host on the fly.