integrate org-noter
This commit is contained in:
parent
a6b2f37182
commit
c39d7de783
65
org/elpa/org-noter-20191020.1212/org-noter-autoloads.el
Normal file
65
org/elpa/org-noter-20191020.1212/org-noter-autoloads.el
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
;;; org-noter-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*-
|
||||||
|
;;
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(add-to-list 'load-path (directory-file-name
|
||||||
|
(or (file-name-directory #$) (car load-path))))
|
||||||
|
|
||||||
|
|
||||||
|
;;;### (autoloads nil "org-noter" "org-noter.el" (0 0 0 0))
|
||||||
|
;;; Generated autoloads from org-noter.el
|
||||||
|
|
||||||
|
(autoload 'org-noter "org-noter" "\
|
||||||
|
Start `org-noter' session.
|
||||||
|
|
||||||
|
There are two modes of operation. You may create the session from:
|
||||||
|
- The Org notes file
|
||||||
|
- The document to be annotated (PDF, EPUB, ...)
|
||||||
|
|
||||||
|
- Creating the session from notes file -----------------------------------------
|
||||||
|
This will open a session for taking your notes, with indirect
|
||||||
|
buffers to the document and the notes side by side. Your current
|
||||||
|
window configuration won't be changed, because this opens in a
|
||||||
|
new frame.
|
||||||
|
|
||||||
|
You only need to run this command inside a heading (which will
|
||||||
|
hold the notes for this document). If no document path property is found,
|
||||||
|
this command will ask you for the target file.
|
||||||
|
|
||||||
|
With a prefix universal argument ARG, only check for the property
|
||||||
|
in the current heading, don't inherit from parents.
|
||||||
|
|
||||||
|
With 2 prefix universal arguments ARG, ask for a new document,
|
||||||
|
even if the current heading annotates one.
|
||||||
|
|
||||||
|
With a prefix number ARG:
|
||||||
|
- Greater than 0: Open the document like `find-file'
|
||||||
|
- Equal to 0: Create session with `org-noter-always-create-frame' toggled
|
||||||
|
- Less than 0: Open the folder containing the document
|
||||||
|
|
||||||
|
- Creating the session from the document ---------------------------------------
|
||||||
|
This will try to find a notes file in any of the parent folders.
|
||||||
|
The names it will search for are defined in `org-noter-default-notes-file-names'.
|
||||||
|
It will also try to find a notes file with the same name as the
|
||||||
|
document, giving it the maximum priority.
|
||||||
|
|
||||||
|
When it doesn't find anything, it will interactively ask you what
|
||||||
|
you want it to do. The target notes file must be in a parent
|
||||||
|
folder (direct or otherwise) of the document.
|
||||||
|
|
||||||
|
You may pass a prefix ARG in order to make it let you choose the
|
||||||
|
notes file, even if it finds one.
|
||||||
|
|
||||||
|
\(fn &optional ARG)" t nil)
|
||||||
|
|
||||||
|
(register-definition-prefixes "org-noter" '("org-noter-"))
|
||||||
|
|
||||||
|
;;;***
|
||||||
|
|
||||||
|
;; Local Variables:
|
||||||
|
;; version-control: never
|
||||||
|
;; no-byte-compile: t
|
||||||
|
;; no-update-autoloads: t
|
||||||
|
;; coding: utf-8
|
||||||
|
;; End:
|
||||||
|
;;; org-noter-autoloads.el ends here
|
2
org/elpa/org-noter-20191020.1212/org-noter-pkg.el
Normal file
2
org/elpa/org-noter-20191020.1212/org-noter-pkg.el
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
;;; Generated package description from org-noter.el -*- no-byte-compile: t -*-
|
||||||
|
(define-package "org-noter" "20191020.1212" "A synchronized, Org-mode, document annotator" '((emacs "24.4") (cl-lib "0.6") (org "9.0")) :commit "9ead81d42dd4dd5074782d239b2efddf9b8b7b3d" :authors '((nil . "Gonçalo Santos (aka. weirdNox@GitHub)")) :maintainer '(nil . "Gonçalo Santos (aka. weirdNox@GitHub)") :keywords '("lisp" "pdf" "interleave" "annotate" "external" "sync" "notes" "documents" "org-mode") :url "https://github.com/weirdNox/org-noter")
|
2296
org/elpa/org-noter-20191020.1212/org-noter.el
Normal file
2296
org/elpa/org-noter-20191020.1212/org-noter.el
Normal file
File diff suppressed because it is too large
Load diff
|
@ -60,7 +60,7 @@
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; additional packages
|
; additional packages
|
||||||
(add-to-list 'package-selected-packages
|
(add-to-list 'package-selected-packages
|
||||||
'(nov pdf-tools)
|
'(nov pdf-tools org-noter)
|
||||||
)
|
)
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
Reference in a new issue