summaryrefslogtreecommitdiff
path: root/lisp/init-files.el
AgeCommit message (Collapse)Author
2016-01-12Rewrite configuration with use-packageKyle Meyer
2016-01-06Add file headersKyle Meyer
2016-01-02Move file-search-map to hydraKyle Meyer
2015-12-19Add avy-goto-subword-1 variant for Grep modeKyle Meyer
2015-12-12Add Guile Scheme scratch bufferKyle Meyer
2015-11-07grep: Truncate long linesKyle Meyer
2015-10-19Add touch buffer file commandKyle Meyer
2015-08-27Don't use doc-view-mode for PDFsKyle Meyer
In Emacs 25, mailcap-mime-data is consulted when opening PDFs, and mailcap-viewer-lessp prefers doc-view-mode over PDF specified in mailcap file because doc-view-mode is a symbol.
2015-08-11dired-jump-file-at-point: Use region if activeKyle Meyer
2015-08-01Prevent unintentional pinging during completionKyle Meyer
2015-06-23Add dired-jump-file-at-point commandKyle Meyer
2015-05-09Sort scratch buffer keysKyle Meyer
2015-05-09Add Text mode to scratch buffersKyle Meyer
2015-05-06Change prefix argument for scratch file commandsKyle Meyer
2015-05-04Load nlinesKyle Meyer
2015-03-10Switch from ido to helmKyle Meyer
2015-03-03Fix typo scratch-find-file docstringKyle Meyer
2015-02-28Rework some file-map bindingsKyle Meyer
2015-02-28Add write-file variantKyle Meyer
2015-02-02Rewrite grep-hide-headerKyle Meyer
2015-02-02Rework key chordsKyle Meyer
- Use letter pairs that are rare in both directions. For really common commands, try to keep my fingers on home row. - Remove some key chords for less frequent commands. For Projectile, just bind switching projects and the commander because most other things are available with one more key from the commander. My strategy for key chord bindings was to lead with ',' or ';' and then follow with any letter. The idea was that, with the languages and coding conventions I was using at the time, when I inserted a comma or semicolon, they were usually followed by a non-letter (typically a space or a new line). But, this is actually not a good way to go about this because Key chord mode accepts the two-letter combination in either order. In practice, I didn't end up unintentionally calling a command too often, but it did happen enough to be slightly annoying. John Cook recently posted a table [1] of bigram frequencies, which is a good starting point for updating my key chords. [1]: http://www.johndcook.com/blog/2015/02/01/rare-bigrams/
2015-01-29Split init-buffile.elKyle Meyer