summaryrefslogtreecommitdiff
path: root/lisp/init-org.el
AgeCommit message (Collapse)Author
2014-11-16Go back to default initial major modeKyle Meyer
Switched to Org in 71642c8257e367d82631cbb740b1325fe44df50f.
2014-11-15Rework command for opening default Org notes fileKyle Meyer
Almost every time I used `km/open-main-orgfile', I would jump to the "Inbox" heading right after, so just have the command do that for me.
2014-11-07Change default-directory for Org agendaKyle Meyer
The main motivation for this is to set org-refile-targets to the value specified in ~/notes/.dir-locals.el.
2014-11-07Set up new method for adding files to Org agendaKyle Meyer
org-agenda-files can be a directory, which allows the files that make up the agenda to be changed without having to change emacs configuration files. So, instead of using org-agenda-file-to-front, which modifies org-agenda-files in custom.el, the new agenda file can just be linked to the agenda directory.
2014-11-07Sort agenda by deadline/scheduled before priorityKyle Meyer
Aside from 'agenda', all other types still match their default values.
2014-11-05Unset org-agenda-dim-blocked-tasksKyle Meyer
2014-11-03Respect Org content with all insertion commandsKyle Meyer
2014-11-03Don't let Org split current lineKyle Meyer
2014-11-03Use hooks, not advice, to modify org-store-linkKyle Meyer
Previously (4af0bf7), I used advice for org-store-link to make it store notmuch links when called from Gnus buffers for local mail. This now doesn't work because org-called-interactively-p returns nil if org-store-link is advised. I'm assuming this is due to the nadvice package, new with Emacs 24.4, which says FIXME: This Major Ugly Hack won't handle calls to called-interactively-p done from the advised function if the deepest advice is an around advice! In other cases (calls from an advice or calls from the advised function when the deepest advice is not an around advice), it should hopefully get it right. Instead of using advice, create a separate function that will run a hook before interactively calling org-store-link.
2014-11-03Add docs for local Org mode to Info-directory-listKyle Meyer
2014-11-02Change setup for Org TODO keywordsKyle Meyer
- Assign keys. - Add 'WAITING' keyword.
2014-10-29Enable org-{log,clock}-into-drawerKyle Meyer
2014-10-26Allow links to Org files to search textKyle Meyer
2014-10-26Don't use time grid in Org agendaKyle Meyer
2014-10-26Move org-reverse-note-order to appropriate sectionKyle Meyer
2014-10-25Don't ignore PDFs in completionsKyle Meyer
2014-10-24Add custom LaTeX class for Org exportKyle Meyer
2014-10-22Prevent advice redefinition warningsKyle Meyer
With Emacs 24.4 release, these produce warnings at startup.
2014-10-22Go crazy with anaphoric formsKyle Meyer
2014-10-22Don't bind read-recent-file resultsKyle Meyer
2014-09-30Use different git-commit-mode hook for orgstructKyle Meyer
2014-09-27Add org-open-recent-fileKyle Meyer
2014-09-27Add org-open-file targets to list of recent filesKyle Meyer
2014-09-26Use "C-c C-c" for poporg-edit-exitKyle Meyer
2014-09-16Fix km/org-open-file promptKyle Meyer
2014-09-14Include PDFs in km/org-open-file completionsKyle Meyer
2014-09-14Add interactive version of org-open-fileKyle Meyer
2014-09-14Add org-open-annex-fileKyle Meyer
2014-09-12Add org-open-file-at-pointKyle Meyer
2014-08-28Use prefix in name of all custom mapsKyle Meyer
2014-08-13Switch scratch mode to OrgKyle Meyer
2014-08-06Add current file to org-refile-dwim targetsKyle Meyer
2014-08-02Advise org-refile with dwim targetKyle Meyer
2014-07-23Create Org mode prefix mapKyle Meyer
2014-07-15Disable org-refile-cacheKyle Meyer
2014-07-15Add km/org-remove-title-leaderKyle Meyer
2014-07-04Change end-of-line maker for auto-mode patternsKyle Meyer
Should use "\\'" instead of "$". http://www.emacswiki.org/emacs/AutoModeAlist
2014-06-24Bind poporg-dwimKyle Meyer
2014-06-20Bind org-open-at-point-globalKyle Meyer
2014-06-06Move diminish code to single fileKyle Meyer
2014-06-06Use milkypostman's `after' macroKyle Meyer
2014-05-26Mask imenu binding with org-goto in Org buffersKyle Meyer
2014-05-19Move ace-link-org binding to init-ace.elKyle Meyer
2014-05-11Use cache for Org refilingKyle Meyer
2014-05-11Add km/org-sort-heading-ignoring-articlesKyle Meyer
2014-05-05Remove unnecessary let*Kyle Meyer
2014-05-04Make maxlevel optional in org-set-refiling-bufferKyle Meyer
2014-05-04Restrict org-refile-targets to current fileKyle Meyer
I don't typically refile headings from a non-agenda file to a target in an agenda file, so setting this for all Org files isn't too useful. Instead, `org-refile-targets' now set in a .dir-locals.el for the agenda files to allow refiling between different agenda files.
2014-05-04Don't use a directory name for org-agenda-filesKyle Meyer
This gives a list of files that can be used for `org-refile-targets'.
2014-05-04Move Org safe-local-variable-values from custom.elKyle Meyer