fix pod entity inserters

This commit is contained in:
Thomas von Dein
2017-06-26 20:10:37 +02:00
parent 90e9288979
commit 3fc00558d7
2 changed files with 408 additions and 404 deletions

20
.emacs
View File

@@ -391,6 +391,8 @@
;; - added outshine HTML exporter via org: outshine-to-html ;; - added outshine HTML exporter via org: outshine-to-html
;; - fixed outshine config ;; - fixed outshine config
;; - added (my) config-general-mode ;; - added (my) config-general-mode
;; - fixed pod format inserters
;; -------------------------------------------------------------------------------- ;; --------------------------------------------------------------------------------
@@ -1861,24 +1863,24 @@ col1, col2"
(er/expand-region 1)) (er/expand-region 1))
(save-excursion (save-excursion
(goto-char (region-beginning)) (goto-char (region-beginning))
(insert (format "%s<" CHAR)) (insert (format "%c<" CHAR))
(goto-char (region-end)) (goto-char (region-end))
(insert ">"))) (insert ">")))
(defun pod-bold() (defun pod-bold()
"bold text in outline mode" "bold text in outline mode"
(interactive) (interactive)
(tvd-outline-emphasize "B")) (tvd-outline-emphasize ?B))
(defun pod-italic() (defun pod-italic()
"italic text in outline mode" "italic text in outline mode"
(interactive) (interactive)
(tvd-outline-emphasize "I")) (tvd-outline-emphasize ?I))
(defun pod-code() (defun pod-code()
"verbatim text in outline mode" "verbatim text in outline mode"
(interactive) (interactive)
(tvd-outline-emphasize "C")) (tvd-outline-emphasize ?C))
;; pod mode config ;; pod mode config
(add-hook 'pod-mode-hook (add-hook 'pod-mode-hook
@@ -4160,6 +4162,10 @@ converted to PDF at the same location."
'(font-lock-warning-face ((t (:bold t :foreground "Red")))) '(font-lock-warning-face ((t (:bold t :foreground "Red"))))
'(highlight ((t (:background "DodgerBlue2" :foreground "White")))) '(highlight ((t (:background "DodgerBlue2" :foreground "White"))))
'(ido-only-match ((t (:foreground "dark green" :weight bold)))) '(ido-only-match ((t (:foreground "dark green" :weight bold))))
'(info-title-1 ((t (:inherit outline-1))))
'(info-title-2 ((t (:inherit outline-2))))
'(info-title-3 ((t (:inherit outline-3))))
'(info-title-4 ((t (:inherit outline-4))))
'(mode-line ((t (:foreground "White" :background "Blue")))) '(mode-line ((t (:foreground "White" :background "Blue"))))
'(mode-line-inactive ((t (:foreground "White" :background "DimGray")))) '(mode-line-inactive ((t (:foreground "White" :background "DimGray"))))
'(org-date ((t (:foreground "dark gray" :underline t)))) '(org-date ((t (:foreground "dark gray" :underline t))))
@@ -4172,10 +4178,6 @@ converted to PDF at the same location."
'(outline-2 ((t (:inherit font-lock-variable-name-face :underline t :weight bold)))) '(outline-2 ((t (:inherit font-lock-variable-name-face :underline t :weight bold))))
'(outline-3 ((t (:inherit font-lock-keyword-face :underline t :weight bold)))) '(outline-3 ((t (:inherit font-lock-keyword-face :underline t :weight bold))))
'(outline-4 ((t (:inherit font-lock-comment-face :underline t)))) '(outline-4 ((t (:inherit font-lock-comment-face :underline t))))
'(info-title-1 ((t (:inherit outline-1))))
'(info-title-2 ((t (:inherit outline-2))))
'(info-title-3 ((t (:inherit outline-3))))
'(info-title-4 ((t (:inherit outline-4))))
'(region ((t (:foreground "Aquamarine" :background "Darkblue")))) '(region ((t (:foreground "Aquamarine" :background "Darkblue"))))
'(secondary-selection ((t (:foreground "Green" :background "darkslateblue")))) '(secondary-selection ((t (:foreground "Green" :background "darkslateblue"))))
'(wg-command-face ((t nil))) '(wg-command-face ((t nil)))
@@ -4206,7 +4208,7 @@ converted to PDF at the same location."
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance. ;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right. ;; If there is more than one, they won't work right.
) )
;; ** done ;; ** done

File diff suppressed because it is too large Load Diff