summaryrefslogtreecommitdiff
path: root/lisp
AgeCommit message (Collapse)Author
2015-04-03Rewrite org-sort-parentKyle Meyer
Search for whole heading line instead of using org-find-exact-headline-in-buffer.
2015-03-30Add delete-trailing-whitespace to cleanup functionKyle Meyer
With 5f4f111cd, I replaced by old buffer cleanup functions with whitespace-mode. This resulted in similar behavior, but empty lines at the end of the buffer were no longer deleted. The 'empty' option for whitespace-style will do this, but it also deletes empty lines at the beginning of the buffer, which I don't want. Add delete-trailing-whitespace to km/cleanup-buffer so that trailing whitespace is removed.
2015-03-30Install God modeKyle Meyer
2015-03-30Add bibtex-remove-doi-leader to clean hookKyle Meyer
2015-03-30Add bibtex-pages-use-double-hyphen to clean hookKyle Meyer
2015-03-30Add bibtex-single-space-author-list to clean hookKyle Meyer
2015-03-30bibtex-use-title-case: Don't touch commandsKyle Meyer
2015-03-30Make bibtex-clean-entry do moreKyle Meyer
2015-03-27Add command magit-insert-staged-fileKyle Meyer
2015-03-25Reorganize magit-define-popup-action callsKyle Meyer
2015-03-25Add magit-delete-previous-branch commandKyle Meyer
2015-03-24Use helm variant of imenuKyle Meyer
2015-03-24Update toggle-line-or-region-commentKyle Meyer
These modifications are based off of Drew Adam's comment function [1]. The main change in behavior from my old function is that whole lines of the region are commented even when the beginning or end of the region is not at the beginning or end of the line. [1] http://permalink.gmane.org/gmane.emacs.devel/181816
2015-03-23Use a second daemon for GnusKyle Meyer
Follow setup described in http://tychoish.com/posts/running-multiple-emacs-daemons-on-a-single-system/
2015-03-23Update Bog for global command mapKyle Meyer
2015-03-23Swap meaning of ace-window prefix argumentsKyle Meyer
2015-03-23Add dired-copy-and-edit commandKyle Meyer
2015-03-15Org capture: Move point before copied textKyle Meyer
2015-03-14Set bog-subdirectory-groupKyle Meyer
2015-03-14Simplify IPython shell setupKyle Meyer
Current python.el seems to have this built in.
2015-03-12Remove goto-line-with-feedbackKyle Meyer
Whenever I use goto-line, it's because I already have the line number, so I don't need the feedback. If I just wanted to jump to a visible line, I'd use ace-jump-mode.
2015-03-12Change km/kill-buffer keyKyle Meyer
2015-03-10Remove km/magit-log-all-branches actionKyle Meyer
A similar action was added to Magit in a471cfb94c762a714570a86a75004770fb6214c3.
2015-03-10Use woman for helm man functionKyle Meyer
2015-03-10Modify projectile for helmKyle Meyer
Add helm version of functions to map and commander. I can't use helm-projectile-on directly because of the keys I've redefined. Since I'm now redefining so many commands, don't use any of the predefined keys and just set everything here for both projectile-command-map and commander.
2015-03-10Switch from ido to helmKyle Meyer
2015-03-10gnus-group-sort-by-topic: Load gnus-topicKyle Meyer
2015-03-03Fix typo scratch-find-file docstringKyle Meyer
2015-03-03Don't load customization fileKyle Meyer
I don't use this. I'm not setting custom-file to nil because I don't want customization to be dropped in init.el.
2015-03-03Fix indentationKyle Meyer
2015-03-03Add command shr-browse-url-and-goto-nextKyle Meyer
2015-03-01Save bookmarks when modifiedKyle Meyer
2015-03-01Add find-function-other-window bindingKyle Meyer
2015-02-28Save abbrevs silentlyKyle Meyer
2015-02-28Setup Org Link EditKyle Meyer
2015-02-28Make 'Link' heading in Org setup fileKyle Meyer
2015-02-28Add PubMed link type for OrgKyle Meyer
2015-02-28Replace noflet instance with cl-letfKyle Meyer
2015-02-28Rework some file-map bindingsKyle Meyer
2015-02-28Add write-file variantKyle Meyer
2015-02-28Add Oleh Krehel's variant of occurKyle Meyer
2015-02-28Prepend new entries when captureKyle Meyer
2015-02-28Add capture templates for Visit/Revisit headingsKyle Meyer
2015-02-28Make typo-abbrev-tableKyle Meyer
Previously, I was using global-abbrev-table as an initial capture area for abbrevs and for really common typos. Make separate table for common typos so that global-abbrev-table only serves as capture area.
2015-02-28Move abbrev customization to separate fileKyle Meyer
2015-02-28Save abbrevs silentlyKyle Meyer
2015-02-28Add case-only abbrev functionsKyle Meyer
2015-02-28Pass ARG to dired-get-marked-filesKyle Meyer
2015-02-28Tweak make-kill-thing-at-pointKyle Meyer
2015-02-28Rewrite org-refile-dwim-target-fileKyle Meyer