diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/eos/jao-afio.el | 2 | ||||
-rw-r--r-- | lib/eos/jao-tracking.el | 3 | ||||
-rw-r--r-- | lib/themes/jao-light-term-theme.el | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/lib/eos/jao-afio.el b/lib/eos/jao-afio.el index f57838a..0f1ae43 100644 --- a/lib/eos/jao-afio.el +++ b/lib/eos/jao-afio.el @@ -56,7 +56,7 @@ (let ((jao-doc-session-inhibit-save t)) (dolist (doc (or docs (jao-doc-session))) (when (file-exists-p doc) - (jao-open-doc doc) + (if (jao-pdf-is-pdf-file doc) (jao-open-doc doc) (find-file doc)) (other-window 1))) (other-window 1))) diff --git a/lib/eos/jao-tracking.el b/lib/eos/jao-tracking.el index badffae..cf64c89 100644 --- a/lib/eos/jao-tracking.el +++ b/lib/eos/jao-tracking.el @@ -133,7 +133,8 @@ (unless (eq 0 n) (setq jao-tracking--start-frame n)) (cond (tracking-buffers (let ((b (car tracking-buffers))) - (if (eq 0 n) (tracking-next-buffer) + (if (eq 0 n) + (tracking-next-buffer) (jao-afio--goto-scratch) (when b (pop-to-buffer b)) (tracking-remove-visible-buffers)))) diff --git a/lib/themes/jao-light-term-theme.el b/lib/themes/jao-light-term-theme.el index f7b2eb8..ccd6a3f 100644 --- a/lib/themes/jao-light-term-theme.el +++ b/lib/themes/jao-light-term-theme.el @@ -97,13 +97,13 @@ :box (:line-width 1 :color "grey90")) (magit-diff-context-highlight (c nil hl) ex) (magit-diff-hunk-heading-highlight (c nil hl) it bf) - (mode-line (c blue "gray91") nbf) + (mode-line (c "grey20" "gray90") nbf) (mode-line-inactive (c "grey40" "gray95")) (mode-line-buffer-id (~ default) (c dark-blue-2 nil) nit) (mode-line-emphasis (c green nil)) (mode-line-highlight (c green nil)) (org-link (p link) (ul "grey80")) - (scroll-bar (c "grey80" nil)) + (scroll-bar (c "grey90" nil)) (show-paren-match (c nil "grey85")) (shr-text (c nil nil)) (shr-link (~ link) (ul light-gray)) |