Add keymap for editing org src blocks
This commit is contained in:
parent
7b051c3c36
commit
110df66ad2
|
@ -297,6 +297,7 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
||||||
|
|
||||||
** Keymaps
|
** Keymaps
|
||||||
#+begin_src emacs-lisp :results output silent
|
#+begin_src emacs-lisp :results output silent
|
||||||
|
(keymap-global-set "C-c o e" #'org-edit-src-code)
|
||||||
(keymap-global-set "C-c o a" #'org-agenda)
|
(keymap-global-set "C-c o a" #'org-agenda)
|
||||||
(keymap-global-set "C-c o n" #'org-capture)
|
(keymap-global-set "C-c o n" #'org-capture)
|
||||||
(keymap-global-set "C-c o l" #'org-capture-goto-last-stored)
|
(keymap-global-set "C-c o l" #'org-capture-goto-last-stored)
|
||||||
|
@ -508,68 +509,6 @@ Will reorganise into separate sections later
|
||||||
(add-hook 'prog-mode-hook #'yas-minor-mode))
|
(add-hook 'prog-mode-hook #'yas-minor-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** TODO Ligatures
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(defun fira-code-mode--make-alist (list)
|
|
||||||
"Generate prettify-symbols alist from LIST."
|
|
||||||
(let ((idx -1))
|
|
||||||
(mapcar
|
|
||||||
(lambda (s)
|
|
||||||
(setq idx (1+ idx))
|
|
||||||
(let* ((code (+ #Xe100 idx))
|
|
||||||
(width (string-width s))
|
|
||||||
(prefix ())
|
|
||||||
(suffix '(?\s (Br . Br)))
|
|
||||||
(n 1))
|
|
||||||
(while (< n width)
|
|
||||||
(setq prefix (append prefix '(?\s (Br . Bl))))
|
|
||||||
(setq n (1+ n)))
|
|
||||||
(cons s (append prefix suffix (list (decode-char 'ucs code))))))
|
|
||||||
list)))
|
|
||||||
|
|
||||||
(defconst fira-code-mode--ligatures
|
|
||||||
'("www" "**" "***" "**/" "*>" "*/" "\\\\" "\\\\\\"
|
|
||||||
"{-" "[]" "::" ":::" ":=" "!!" "!=" "!==" "-}"
|
|
||||||
"--" "---" "-->" "->" "->>" "-<" "-<<" "-~"
|
|
||||||
"#{" "#[" "##" "###" "####" "#(" "#?" "#_" "#_("
|
|
||||||
".-" ".=" ".." "..<" "..." "?=" "??" ";;" "/*"
|
|
||||||
"/**" "/=" "/==" "/>" "//" "///" "&&" "||" "||="
|
|
||||||
"|=" "|>" "^=" "$>" "++" "+++" "+>" "=:=" "=="
|
|
||||||
"===" "==>" "=>" "=>>" "<=" "=<<" "=/=" ">-" ">="
|
|
||||||
">=>" ">>" ">>-" ">>=" ">>>" "<*" "<*>" "<|" "<|>"
|
|
||||||
"<$" "<$>" "<!--" "<-" "<--" "<->" "<+" "<+>" "<="
|
|
||||||
"<==" "<=>" "<=<" "<>" "<<" "<<-" "<<=" "<<<" "<~"
|
|
||||||
"<~~" "</" "</>" "~@" "~-" "~=" "~>" "~~" "~~>" "%%"
|
|
||||||
"x" ":" "+" "+" "*"))
|
|
||||||
|
|
||||||
(defvar fira-code-mode--old-prettify-alist)
|
|
||||||
|
|
||||||
(defun fira-code-mode--enable ()
|
|
||||||
"Enable Fira Code ligatures in current buffer."
|
|
||||||
(setq-local fira-code-mode--old-prettify-alist prettify-symbols-alist)
|
|
||||||
(setq-local prettify-symbols-alist (append (fira-code-mode--make-alist fira-code-mode--ligatures) fira-code-mode--old-prettify-alist))
|
|
||||||
(prettify-symbols-mode t))
|
|
||||||
|
|
||||||
(defun fira-code-mode--disable ()
|
|
||||||
"Disable Fira Code ligatures in current buffer."
|
|
||||||
(setq-local prettify-symbols-alist fira-code-mode--old-prettify-alist)
|
|
||||||
(prettify-symbols-mode -1))
|
|
||||||
|
|
||||||
(define-minor-mode fira-code-mode
|
|
||||||
"Fira Code ligatures minor mode"
|
|
||||||
:lighter " Fira Code"
|
|
||||||
(setq-local prettify-symbols-unprettify-at-point 'right-edge)
|
|
||||||
(if fira-code-mode
|
|
||||||
(fira-code-mode--enable)
|
|
||||||
(fira-code-mode--disable)))
|
|
||||||
|
|
||||||
(defun fira-code-mode--setup ()
|
|
||||||
"Setup Fira Code Symbols"
|
|
||||||
(set-fontset-font t '(#Xe100 . #Xe16f) "Fira Code Symbol"))
|
|
||||||
|
|
||||||
(fira-code-mode)
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
** TODO Media
|
** TODO Media
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(when (require 'emms-setup nil :noerror)
|
(when (require 'emms-setup nil :noerror)
|
||||||
|
|
Loading…
Reference in a new issue