summaryrefslogtreecommitdiff
path: root/lisp/init-editing.el
AgeCommit message (Collapse)Author
2014-06-13Install narrow-indirectKyle Meyer
Needed to install 'subr+ to avoid void variable `filter-buffer-subtring-function'.
2014-05-28Add km/narrow-to-comment-headingKyle Meyer
2014-05-12Move ace settings to separate fileKyle Meyer
2014-05-12Move view-mode settings to separate fileKyle Meyer
2014-05-11Automatically enter view-mode for read-only filesKyle Meyer
2014-04-17Limit ace-jump scope to current frameKyle Meyer
If this is set to global, frames in other desktops (even invisible ones) are used to generate the jump choices.
2014-04-09Install and setup ace-linkKyle Meyer
Removing ido-vertical because if it is active, some links in the lower portion of the window are cutoff.
2014-03-25Merge insert and multiple-cursors mapsKyle Meyer
There was only one binding left in insert map, so it didn't make much sense to keep around.
2014-03-25Remove a few functions the are covered by snippetsKyle Meyer
2014-03-21Tweak `hippie-expand-try-functions-list'Kyle Meyer
Removed line and list completion functions, which are almost never what I intend to complete. This should also take care of the clash with paredit mode (since these multi-word expansions shouldn't occur anymore), so I'm deleting `he-paredit-fix'.
2014-03-21Simplify km/join-next-line-with-spaceKyle Meyer
2014-03-21Use macro to define kill-thing-at-point functionsKyle Meyer
2014-03-09Use diminish to shorten mode lineKyle Meyer
2014-02-11Move multiple cursors keymap outside of insert mapKyle Meyer
2014-02-11Add mc/edit-{beginnings,ends}-of-lines bindingsKyle Meyer
2014-02-01Move some settings from general to editingKyle Meyer
2014-01-31Remove M-z unsetKyle Meyer
Originally 'M-z' was unset because I moved `zap-to-char' to 'C-z', but 'M-z' is now bound to autoloaded `zap-up-to-char'.
2014-01-26Reorganize and use require-packageKyle Meyer
`require-package' is from https://github.com/purcell/emacs.d/blob/master/lisp/init-elpa.el.