Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
This seems to be interfering with reverting Python buffers. I haven't
looked into this further yet.
|
|
|
|
|
|
Current python.el seems to have this built in.
|
|
|
|
- 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/
|
|
|
|
- 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
|
|
|
|
|
|
|
|
|
|
|
|
I'm not sure how I messed that up so bad initially.
|
|
|
|
Implement function similar to `ess-eval-function-or-paragraph-and-step'.
|
|
|
|
|
|
6cbfae7 broke this function when the test file doesn't exist. I'm not
sure why I used `with-current-buffer' in the first place, considering
the desired action is to switch to the file in another window.
|
|
I keep using the wrong one, so I must think it makes more sense this
way.
|
|
Instead of raising an error if the file exist, just open file in other
buffer.
|
|
|
|
`require-package' is from
https://github.com/purcell/emacs.d/blob/master/lisp/init-elpa.el.
|
|
User init files are added using provide/require.
https://github.com/purcell/emacs.d
|