summaryrefslogtreecommitdiff
path: root/lisp/init-view.el
AgeCommit message (Collapse)Author
2015-06-10Use custom avy-goto-subword-1 for all bindingsKyle Meyer
Only changed main binding in f88d106fc3.
2015-05-29Use avy instead of ace-jump-modeKyle Meyer
2015-02-02Bind ace-jump-mode to 'j' in View modeKyle Meyer
This is more consistent with its one-key binding in other modes (e.g., magit-log-mode and gnus-summary-mode).
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-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
2014-11-29Wrap imenu to add rescan as prefix argumentKyle Meyer
2014-08-19Add {forward,backward}-paragraph to view-mode-mapKyle Meyer
2014-06-18Define {forward,backward}-word in view-mode-mapKyle Meyer
2014-06-06Move diminish code to single fileKyle Meyer
2014-06-06Use milkypostman's `after' macroKyle Meyer
2014-05-12Add imenu binding to view-modeKyle Meyer
2014-05-12Move view-mode settings to separate fileKyle Meyer