summaryrefslogtreecommitdiff
path: root/lisp
AgeCommit message (Collapse)Author
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-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-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
2014-10-19Disable magit-backup-modeKyle Meyer
As of Magit c268e7f, backups won't occur if the mode is disabled.
2014-10-18Add command magit-commit-extend-allKyle Meyer
2014-10-18Expand magit-auto-commit docstringKyle Meyer
2014-10-18Add command magit-stage-file-intentKyle Meyer
2014-10-17Add command magit-show-project-commit-under-pointKyle Meyer
2014-10-17Add command magit-show-commit-under-pointKyle Meyer
2014-10-17Create a prefix-map for git-related functionsKyle Meyer
2014-10-17Remove binding of undefined prefix mapKyle Meyer
2014-10-17Remove old configurationKyle Meyer
This should have been removed in 662ae39.
2014-10-11Unset magit-backup-untrackedKyle Meyer
2014-10-10magit-annex: Unset default '--auto' flagKyle Meyer
2014-10-02Remove outdated work-around from Stan setupKyle Meyer
Upstream no longer adds flymake to the mode hook (94f846c).
2014-09-30Use different git-commit-mode hook for orgstructKyle Meyer
2014-09-30Turn on flyspell in Magit commit bufferKyle Meyer
This was deactivated in git-commit-mode.el (0670764).
2014-09-30Fix use of magit-find-file-hookKyle Meyer