summaryrefslogtreecommitdiff
path: root/lisp/init-buffile.el
AgeCommit message (Collapse)Author
2015-01-29Split init-buffile.elKyle Meyer
2015-01-27Improve organization and consistency of filesKyle Meyer
- Add pages and more headings for large files. - Try to use consistent order for file (or page) structure. * Loading * Settings * Hooks * Any mode activation or function calls * My functions * Key bindings
2015-01-20Rewrite scratch functionsKyle Meyer
2015-01-15Use grep-setup-hook to hide grep headersKyle Meyer
2015-01-07Fix some docstringsKyle Meyer
2015-01-06ibuffer: Restore window configuration on quitKyle Meyer
2014-12-28Remove unnecessary variable quotesKyle Meyer
2014-11-29Make map for grep and find variantsKyle Meyer
2014-11-29Move grep-related stuff to init-buffile.elKyle Meyer
2014-10-22Don't bind read-recent-file resultsKyle Meyer
2014-09-27Rename recentf find-file functionsKyle Meyer
2014-09-27Move recentf find-file functionsKyle Meyer
2014-09-23Remove sever-edit key chordKyle Meyer
I don't use this frequently enough for it to be bound to a key chord.
2014-09-19Add scratch buffer functions to ctl-x-4-mapKyle Meyer
2014-09-18Add markdown scratch bufferKyle Meyer
2014-09-11Replace some error calls with user-error callsKyle Meyer
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.