Fix newlines

This commit is contained in:
contrapunctus 2022-01-19 01:28:13 +05:30
parent 065a89234a
commit 60b79410fe
1 changed files with 9 additions and 3 deletions

View File

@ -624,7 +624,6 @@ Add these common operations to the hydra -
,docstring
,@unique-forms
,@my-hydra-common-heads))
#+END_SRC
*** Line display
@ -680,8 +679,8 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
;; ("h" mc/mark-next-like-this-symbol "next symbol")
("d" mc/insert-numbers)
("i" mc/insert-letters))
#+END_SRC
*** info
#+BEGIN_SRC emacs-lisp
(defhydra contrapunctus-info-hydra (:color blue)
@ -697,6 +696,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("g" (info "(guile)") "Guile")
("t" (info "(texinfo)") "Texinfo"))
#+END_SRC
*** Help
#+BEGIN_SRC emacs-lisp
(defhydra my-help-hydra (:color blue)
@ -709,6 +709,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("m" man "man page")
("c" describe-char "character"))
#+END_SRC
*** Search
#+BEGIN_SRC emacs-lisp
(defhydra my-search-hydra (:color blue)
@ -766,6 +767,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("q" (my-start-app-or-switch "qtractor") "Qtractor")
("w" my-eww "eww"))
#+END_SRC
*** org
#+BEGIN_SRC emacs-lisp
(defun my-compile-org-lp (&optional prefix)
@ -921,6 +923,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("r" slime "REPL")
("j" slime-edit-definition "jump to definition"))
#+END_SRC
**** eval
#+BEGIN_SRC emacs-lisp
(defhydra my-cl-hydra-eval (:color blue)
@ -930,6 +933,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("r" slime-eval-region "region")
("l" slime-eval-last-expression "last expression"))
#+END_SRC
**** help
#+BEGIN_SRC emacs-lisp
(defhydra my-cl-help-hydra (:color blue)
@ -941,6 +945,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("k" helpful-key "key")
("m" man "man page"))
#+END_SRC
*** Scheme
**** eval
#+BEGIN_SRC emacs-lisp
@ -951,6 +956,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("E" toggle-debug-on-error "tdoe")
("Q" toggle-debug-on-quit "tdoq"))
#+END_SRC
**** CHICKEN Scheme
#+BEGIN_SRC emacs-lisp
(my-defhydra my-chicken-hydra (:color blue)
@ -5042,8 +5048,8 @@ TODO - wrap region if region active"
#+BEGIN_SRC emacs-lisp
(use-package ediprolog
:commands ediprolog-dwim)
#+END_SRC
** C
#+BEGIN_SRC emacs-lisp
(use-package cc-mode