summaryrefslogtreecommitdiff
path: root/lisp/init-buffile.el
AgeCommit message (Collapse)Author
2014-08-29Fix ctl-x-4-map bindingKyle Meyer
I was unbinding "R" and then binding it again later because I didn't realize that it wasn't a default.
2014-08-28Add file-map prefix commandKyle Meyer
This prefix will be used for find-file functions that don't already have a shorter keybinding. This commit adds two functions to the map, `view-file' and `magit-find-file', which both have an other-window analog in `ctl-x-4-map'. View mode can be accessed using ',v' right after finding a file, so the `view-file' binding might not be too useful. `magit-find-file' was in my magit-specific map, but it makes sense to have it here because it's useful in buffers outside the magit status buffer.
2014-08-28Use prefix in name of all custom mapsKyle Meyer
2014-08-19Add view-file-other-window to ctl-x-4-mapKyle Meyer
2014-07-26Set require-final-newlineKyle Meyer
2014-06-19Add shell scratch bufferKyle Meyer
2014-06-18Define scratch functions for different modesKyle Meyer
2014-05-02Set uniquify-buffer-name-styleKyle Meyer
2014-04-17Disable ibuffer-auto-modeKyle Meyer
2014-04-17Remove saved ibuffer groupsKyle Meyer
I don't think this has too much advantage over filtering and sorting on the fly, and it is a hassle to keep up-to-date.
2014-03-21Relocate recent files settingsKyle Meyer
2014-01-26Add function to delete current buffer's fileKyle Meyer
Taken from https://github.com/purcell/emacs.d/blob/master/lisp/init-utils.el.
2014-01-26Reorganize and use require-packageKyle Meyer
`require-package' is from https://github.com/purcell/emacs.d/blob/master/lisp/init-elpa.el.