diff options
-rw-r--r-- | completion.org | 4 | ||||
-rw-r--r-- | init.org | 2 | ||||
-rw-r--r-- | lib/themes/jao-themes.el | 5 |
3 files changed, 6 insertions, 5 deletions
diff --git a/completion.org b/completion.org index 1e0bb4b..8e506b1 100644 --- a/completion.org +++ b/completion.org @@ -471,7 +471,8 @@ (dictionary-lookup-definition))) (add-to-list 'avy-dispatch-alist '(?d . avy-dictionary-act)) - :bind ("C-c a" . avy-goto-char-timer)) + :bind (("C-c a" . avy-goto-char-timer) + ("C-S-a" . avy-goto-char-timer))) (use-package link-hint :ensure t @@ -518,6 +519,7 @@ (push 'link-hint-notmuch-w3m-url link-hint-types) :bind (("C-c l" . link-hint-open-link) + ("C-S-l" . link-hint-open-link) ("C-c L" . link-hint-open-multiple-links))) #+end_src @@ -593,7 +593,7 @@ (setq jao-minibuffer-active-buffer-line-color "azure4" jao-minibuffer-inactive-buffer-line-color "grey25") (setq jao-minibuffer-active-buffer-line-color "burlywood3" - jao-minibuffer-inactive-buffer-line-color "grey25")) + jao-minibuffer-inactive-buffer-line-color "grey65")) :commands (jao-minibuffer-add-variable jao-minibuffer-refresh jao-minibuffer-add-mode-line)) diff --git a/lib/themes/jao-themes.el b/lib/themes/jao-themes.el index 90be19f..1316462 100644 --- a/lib/themes/jao-themes.el +++ b/lib/themes/jao-themes.el @@ -188,8 +188,7 @@ ((numberp clr) (or (nth clr jao-themes--cidxs) (nth clr jao-themes--default-cidxs) (format "color-%s" clr))) - ((symbolp clr) (or (cadr (assoc clr *jao-themes--color-names*)) - 'unspecified)) + ((and (symbolp clr) (cadr (assoc clr *jao-themes--color-names*)))) (t 'unspecified))) (defun jao-themes--parse-face-sym (s) @@ -919,7 +918,7 @@ (org-ellipsis (p dimm)) (org-formula (p f02)) (org-headline-done (p dimm)) - (org-hide (c ,jao-themes--bg)) + (org-hide (c dbg dfg)) (org-latex-and-export-specials (~ default)) (org-level-1 (~ outline-1)) (org-level-2 (~ outline-2)) |