summaryrefslogtreecommitdiff
path: root/lisp/init-org.el
AgeCommit message (Collapse)Author
2015-01-14Decrease value of org-goto-max-levelKyle Meyer
2015-01-09Remove some unhelpful let bindingsKyle Meyer
2015-01-07Mark org-goto-max-level as safe local variableKyle Meyer
2015-01-07Fix some docstringsKyle Meyer
2015-01-05Bind org-refile-goto-last-stored to global-org-mapKyle Meyer
2014-12-25Add command org-clone-and-shift-by-repeaterKyle Meyer
2014-12-21Explicitly enable org-use-speed-commandsKyle Meyer
This variable is usually non-nil because I run Emacs as a daemon, but since I use these bindings frequently, I want to make sure org-use-speed-commands is always non-nil.
2014-12-16Add command org-normalize-spacesKyle Meyer
2014-12-16Add command org-add-blank-before-headingKyle Meyer
2014-12-15Fix typoKyle Meyer
2014-12-10Clean up and comment org-sort-parentKyle Meyer
2014-12-10Clean up org-sort-heading-ignoring-articlesKyle Meyer
2014-12-03org-remove-title-leader: Allow prioritiesKyle Meyer
2014-11-30Use slashes after all directory namesKyle Meyer
2014-11-30Add Org contrib to load path in init-org.elKyle Meyer
2014-11-26Update for git-commit-mode renameKyle Meyer
2014-11-26Remove outdated advice for magit-visitKyle Meyer
magit-visit was removed a while ago [1], so this isn't doing anything. Currently, there are multiple functions to advise [2]. Instead of doing that, I'll just call org-reveal (C-c C-r). [1] 81c6b881d9e4e93442677d6e2183c7f2cc47887a [2] 2dc3965e74eabe53763f208809a9dae3105c1149
2014-11-20Stop quoting lambdasKyle Meyer
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