summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-09Update magit-log-all-branches for upstream changesKyle Meyer
Magit has removed magit-log-dwim [1] and changed the arguments to magit-log-read-args [2]. [1] e0979bb6bd22a9ce5009a7cdf458034e52817da3 [2] 5737de048843bbad83f16ea13f57d69cdbe6971e
2014-11-09Don't show tags in Magit refs bufferKyle Meyer
This is slow for repos that contain lots of tags.
2014-11-08Move cleanup-buffer codeKyle Meyer
2014-11-08Bind toggle-prevent-cleanup in editing-mapKyle Meyer
2014-11-08Rewrite toggle-prevent-cleanupKyle Meyer
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-06Bind n/p to {next,previous}-line in occur-mode-mapKyle Meyer
2014-11-06Unset magit-delete-by-moving-to-trashKyle Meyer
2014-11-05Change main Dired narrowing functionKyle Meyer
2014-11-05Handle compiling non-project files with SnakemakeKyle Meyer
Allow option to prevent km/snakemake-compile-project-file-at-point from append project path, but keep default-directory set to project root. This is useful if compiling from rule files that already list the file with its full path.
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-02Move replace commands to search-mapKyle Meyer
2014-11-02Don't let paredit clobber M-s mapKyle Meyer
2014-11-02Change setup for Org TODO keywordsKyle Meyer
- Assign keys. - Add 'WAITING' keyword.
2014-10-31Add command ediff-with-other-windowKyle Meyer
2014-10-31Don't use new frame for Ediff control panelKyle Meyer
2014-10-29Add second binding for Info-menuKyle Meyer
2014-10-29Add prefix to unfill-paragraphKyle Meyer
2014-10-29Enable org-{log,clock}-into-drawerKyle Meyer
2014-10-27Rewrite doi-at-point (again)Kyle Meyer
Changes in 300cdc4 don't seem to work in Gnus article buffer.
2014-10-27Use Bog citekey cacheKyle Meyer
2014-10-27Ignore '.org-id-locations'Kyle 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-26Update MELPA urlKyle Meyer
http://www.reddit.com/r/emacs/comments/2k2kmv/melpamilkboxnet_is_now_melpaorg/
2014-10-25Customize WebJump site listKyle Meyer
2014-10-25Reorganize init-external.elKyle Meyer
2014-10-25Rephrase docstringKyle Meyer
2014-10-25Don't ignore PDFs in completionsKyle Meyer
2014-10-24Add custom LaTeX class for Org exportKyle Meyer
2014-10-24Remove old Org export settingsKyle Meyer
This was for Org < 8.0.
2014-10-24Load orgitKyle Meyer
2014-10-22Merge branch 'emacs24.4'Kyle Meyer
2014-10-22Turn off electric-indent modeKyle Meyer
This is enabled by default in Emacs 24.4.
2014-10-22Rewrite doi-at-pointKyle Meyer
This stopped working when I upgraded to Emacs 24.4. Using 'url' with `thing-at-point' doesn't seem to work anymore, so instead use text properties.
2014-10-22Prevent advice redefinition warningsKyle Meyer
With Emacs 24.4 release, these produce warnings at startup.
2014-10-22Show line number when calling goto-lineKyle Meyer
2014-10-22Go crazy with anaphoric formsKyle Meyer
2014-10-22Don't bind read-recent-file resultsKyle Meyer
2014-10-21Support copying in gnus-follow-last-message-linkKyle Meyer
2014-10-21Put follow-last-message-link under gnus prefixKyle Meyer
2014-10-19Use notmuch Org links for local mailKyle Meyer
2014-10-19Set org-gnus-prefer-web-linksKyle Meyer