Add newlines between headings

This commit is contained in:
contrapunctus 2022-01-10 10:04:08 +05:30
parent 6e08bacd71
commit 6a98469ee5
1 changed files with 12 additions and 0 deletions

View File

@ -545,12 +545,14 @@ choice.el is required by =chronometrist-key-values=
(15 "Wikisource"))
alert-default-style 'libnotify))
#+END_SRC
*** spark
#+BEGIN_SRC emacs-lisp
(use-package chronometrist-spark
:hook (chronometrist-mode . chronometrist-spark-minor-mode)
:config (setq chronometrist-spark-length (* 7 4)))
#+END_SRC
*** chronometrist
#+BEGIN_SRC emacs-lisp
(use-package chronometrist
@ -2130,6 +2132,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("H" org-metaleft "promote")
("S" org-metaright "demote"))
#+END_SRC
** jabber
#+BEGIN_SRC emacs-lisp
(my-defhydra my-jabber-hydra (:color blue)
@ -2141,6 +2144,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("E" toggle-debug-on-error "tdoe")
("Q" toggle-debug-on-quit "tdoq"))
#+END_SRC
** Emacs Lisp
#+BEGIN_SRC emacs-lisp
(my-defhydra my-elisp-hydra (:color blue)
@ -2158,6 +2162,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("t" contrapunctus-el-test/body "Test")
("n" my-elisp-insert-hydra/body "Insert"))
#+END_SRC
*** eval
#+BEGIN_SRC emacs-lisp
(defhydra my-elisp-hydra-eval (:color blue)
@ -2165,12 +2170,14 @@ With PREFIX argument and CMD not supplied - prompt for command."
("e" eval-defun "defun")
("l" eval-last-sexp "last sexp"))
#+END_SRC
*** unit testing
#+BEGIN_SRC emacs-lisp
(defhydra contrapunctus-el-test (:color blue)
("e" (my-compile-project "Cask" "cask exec buttercup -L . --traceback pretty") "buttercup")
("r" ert "ert"))
#+END_SRC
*** debug
#+BEGIN_SRC emacs-lisp
(defhydra my-elisp-hydra-debug (:color blue)
@ -2179,6 +2186,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("o" toggle-debug-on-error "tdoe")
("u" toggle-debug-on-quit "tdoq"))
#+END_SRC
*** byte-compile
#+BEGIN_SRC emacs-lisp
(defhydra my-elisp-bytecomp-hydra (:color blue)
@ -2188,6 +2196,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("r" (byte-recompile-file (buffer-file-name)) "recompile")
("R" byte-force-recompile "force recompile"))
#+END_SRC
*** insert
:PROPERTIES:
:CREATED: 2022-01-05T19:45:33+0530
@ -2263,6 +2272,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("E" toggle-debug-on-error "tdoe")
("Q" toggle-debug-on-quit "tdoq"))
#+END_SRC
** Lilypond
#+BEGIN_SRC emacs-lisp
(my-defhydra my-lilypond-hydra (:color blue)
@ -2274,6 +2284,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("E" toggle-debug-on-error "tdoe")
("Q" toggle-debug-on-quit "tdoq"))
#+END_SRC
** Prolog
#+BEGIN_SRC emacs-lisp
(my-defhydra my-prolog-hydra (:color blue)
@ -2282,6 +2293,7 @@ With PREFIX argument and CMD not supplied - prompt for command."
("E" toggle-debug-on-error "tdoe")
("Q" toggle-debug-on-quit "tdoq"))
#+END_SRC
** Programming
Don't try to check if there are files with a certain extension...it will lead to false positives.
#+BEGIN_SRC emacs-lisp