summaryrefslogtreecommitdiffhomepage
path: root/lib/doc
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2022-08-29 20:32:36 +0100
committerjao <jao@gnu.org>2022-08-29 20:32:36 +0100
commitdc808512b9ec2fa10d1f134b34a8f31dbc1bdffc (patch)
treeaa529fa0f9d213b82234099e293886dfb4972783 /lib/doc
parent7064d9fb37614d8aeca097a829868d4024d517c1 (diff)
downloadelibs-dc808512b9ec2fa10d1f134b34a8f31dbc1bdffc.tar.gz
elibs-dc808512b9ec2fa10d1f134b34a8f31dbc1bdffc.tar.bz2
zathura improvements, and relevant orgs in doc session too
Diffstat (limited to 'lib/doc')
-rw-r--r--lib/doc/jao-doc-session.el4
-rw-r--r--lib/doc/jao-pdf.el7
2 files changed, 9 insertions, 2 deletions
diff --git a/lib/doc/jao-doc-session.el b/lib/doc/jao-doc-session.el
index 9a3193f..3eee781 100644
--- a/lib/doc/jao-doc-session.el
+++ b/lib/doc/jao-doc-session.el
@@ -43,14 +43,14 @@
(let ((file (or file jao-doc-session-file)))
(jao-doc-session--read-file file)))
-(defun jao-doc-session-save (&optional skip-current)
+(defun jao-doc-session-save (&optional skip-current force)
(interactive)
(let ((docs '())
(cb (and skip-current (current-buffer))))
(dolist (b (buffer-list))
(when-let (fn (and (not (eq cb b)) (jao-doc-session-is-doc b)))
(add-to-list 'docs fn)))
- (when (> (length docs) 0)
+ (when (or force (> (length docs) 0))
(jao-doc-session--save-to-file jao-doc-session-file docs))))
(defun jao-doc-session--save-session ()
diff --git a/lib/doc/jao-pdf.el b/lib/doc/jao-pdf.el
index 62dfc08..6158306 100644
--- a/lib/doc/jao-pdf.el
+++ b/lib/doc/jao-pdf.el
@@ -26,6 +26,8 @@
;; section title of a given page.
;; - Interoperability with zathura.
+(require 'jao-doc-session)
+
;;; PDF info
(declare-function 'pdf-info-outline "pdf-info")
@@ -83,6 +85,10 @@ The result is cached as a local buffer variable."
(replace-regexp-in-string "[[:blank:]]+" " " cur-title)))
;;; zathura interop
+(defun jao-pdf-zathura-open-cmd (file page &optional suffix)
+ (let ((page (if page (format "-P %s" page) "")))
+ (format "zathura %s %s %s" file page (or suffix ""))))
+
(defun jao-pdf-zathura-file-info (title)
(when (string-match "\\(.+\\) \\[\\(.+\\) (\\([0-9]+\\)/\\([0-9]+\\))\\]"
title)
@@ -104,6 +110,7 @@ The result is cached as a local buffer variable."
(let* ((fn (file-name-nondirectory pdf-file))
(desc (jao-pdf-section-title page pdf-file))
(lnk (format "[[doc:%s::%d][%s]]" fn page desc)))
+ (jao-doc-session-mark)
(if (or (not exists) (and (not no-ask) (y-or-n-p "Insert link?")))
(insert lnk "\n")
(kill-new lnk)