Browse Source

Added org journal mode and set up keybindings

master
Raphael Roberts 4 years ago
parent
commit
195477d2db
  1. 147
      elpa/org-journal-2.1.2/org-journal-autoloads.el
  2. 2
      elpa/org-journal-2.1.2/org-journal-pkg.el
  3. 1886
      elpa/org-journal-2.1.2/org-journal.el
  4. 6
      settings.org

147
elpa/org-journal-2.1.2/org-journal-autoloads.el

@ -0,0 +1,147 @@
;;; org-journal-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
(add-to-list 'load-path (directory-file-name
(or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "org-journal" "org-journal.el" (0 0 0 0))
;;; Generated autoloads from org-journal.el
(add-hook 'calendar-today-visible-hook 'org-journal-mark-entries)
(add-hook 'calendar-today-invisible-hook 'org-journal-mark-entries)
(autoload 'org-journal-mode "org-journal" "\
Mode for writing or viewing entries written in the journal.
\(fn)" t nil)
(define-obsolete-function-alias 'org-journal-open-next-entry 'org-journal-next-entry "2.1.0")
(define-obsolete-function-alias 'org-journal-open-previous-entry 'org-journal-previous-entry "2.1.0")
(autoload 'org-journal-convert-created-property-timestamps "org-journal" "\
Convert CREATED property timestamps to `org-journal-created-property-timestamp-format'.
\(fn OLD-FORMAT)" t nil)
(autoload 'org-journal-new-entry "org-journal" "\
Open today's journal file and start a new entry.
With a PREFIX arg, open the today's file, create a heading if it doesn't exist yet,
but do not create a new entry.
If given a TIME, create an entry for the time's day. If no TIME was given,
use the current time (which is interpreted as belonging to yesterday if
smaller than `org-extend-today-until`).
Whenever a journal entry is created the `org-journal-after-entry-create-hook'
hook is run.
\(fn PREFIX &optional TIME)" t nil)
(autoload 'org-journal-new-date-entry "org-journal" "\
Open the journal for the date indicated by point and start a new entry.
If the date is not today, it won't be given a time heading. With one prefix (C-u),
don't add a new heading.
If the date is in the future, create a schedule entry, unless two universal prefix
arguments (C-u C-u) are given. In that case insert just the heading.
\(fn PREFIX &optional EVENT)" t nil)
(autoload 'org-journal-new-scheduled-entry "org-journal" "\
Create a new entry in the future with an active timestamp.
With non-nil prefix argument create a regular entry instead of a TODO entry.
\(fn PREFIX &optional SCHEDULED-TIME)" t nil)
(autoload 'org-journal-reschedule-scheduled-entry "org-journal" "\
Reschedule an entry in the future.
\(fn &optional TIME)" t nil)
(autoload 'org-journal-open-current-journal-file "org-journal" "\
Open the current journal file" t nil)
(autoload 'org-journal-invalidate-cache "org-journal" "\
Clear `org-journal--dates' hash table, and the cache file." t nil)
(autoload 'org-journal-mark-entries "org-journal" "\
Mark days in the calendar for which a journal entry is present." t nil)
(autoload 'org-journal-read-entry "org-journal" "\
Open journal entry for selected date for viewing.
\(fn ARG &optional EVENT)" t nil)
(autoload 'org-journal-display-entry "org-journal" "\
Display journal entry for selected date in another window.
\(fn ARG &optional EVENT)" t nil)
(autoload 'org-journal-read-or-display-entry "org-journal" "\
Read an entry for the TIME and either select the new window when NOSELECT
is nil or avoid switching when NOSELECT is non-nil.
\(fn TIME &optional NOSELECT)" nil nil)
(autoload 'org-journal-next-entry "org-journal" "\
Go to the next journal entry." t nil)
(autoload 'org-journal-previous-entry "org-journal" "\
Go to the previous journal entry." t nil)
(autoload 'org-journal-search "org-journal" "\
Search for a string in the journal files.
See `org-read-date' for information on ways to specify dates.
If a prefix argument is given, search all dates.
\(fn STR &optional PERIOD-NAME)" t nil)
(autoload 'org-journal-search-calendar-week "org-journal" "\
Search for a string within a current calendar-mode week entries.
\(fn STR)" t nil)
(autoload 'org-journal-search-calendar-month "org-journal" "\
Search for a string within a current calendar-mode month entries.
\(fn STR)" t nil)
(autoload 'org-journal-search-calendar-year "org-journal" "\
Search for a string within a current calendar-mode year entries.
\(fn STR)" t nil)
(autoload 'org-journal-search-forever "org-journal" "\
Search for a string within all entries.
\(fn STR)" t nil)
(autoload 'org-journal-search-future "org-journal" "\
Search for a string within all future entries.
\(fn STR)" t nil)
(autoload 'org-journal-search-future-scheduled "org-journal" "\
Search for TODOs within all future entries." t nil)
(add-hook 'org-journal-mode-hook (lambda nil (add-hook org-journal-encrypt-on 'org-journal-encryption-hook nil t)))
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-journal" '("org-journal-")))
;;;***
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; org-journal-autoloads.el ends here

2
elpa/org-journal-2.1.2/org-journal-pkg.el

@ -0,0 +1,2 @@
;;; Generated package description from org-journal.el -*- no-byte-compile: t -*-
(define-package "org-journal" "2.1.2" "a simple org-mode based journaling mode" '((emacs "25.1") (org "9.1")) :commit "c26e73a017963f6638044f1f63354c453f2db54a" :authors '(("Bastian Bechtold") ("Christian Schwarzgruber")) :maintainer '("Bastian Bechtold") :url "http://github.com/bastibe/org-journal")

1886
elpa/org-journal-2.1.2/org-journal.el
File diff suppressed because it is too large
View File

6
settings.org

@ -415,6 +415,12 @@ This handy function is a customized ripoff of custom-save-all
(use-package git-commit
:hook (git-commit-setup . git-commit-turn-on-flyspell)))
#+end_src
** Org Journal
#+begin_src emacs-lisp
(use-package org-journal
:bind
("C-c TAB" . org-journal-new-entry))
#+end_src
** Python
*** Platform specific
Set python command

Loading…
Cancel
Save