Clarify and correct commentary

This commit is contained in:
contrapunctus 2022-01-16 02:11:22 +05:30
parent c436539446
commit 21e42234b0
1 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@
#+OPTIONS: use-property-inheritance:t
#+PROPERTY: header-args :load yes :tangle init.el :comments link
Some background about my keybinding choices is important -
1. I use modifier-less bindings wherever possible.
2. I use Kmonad to have Space act as Control when held. This makes Control the modifier requiring the least movement to hold. It is also held with the thumbs - the strongest digits - reducing fatigue. So if I must use a modifier, I use Control.
Some background is important to understand my keybinding choices -
1. I use modifier-less bindings wherever possible. Hydra and modal editing make up most of my interaction with Emacs.
2. I use Kmonad to have Space act as Control when held. This makes Control the modifier which disrupts the typing position the least. It is also held with the thumbs - the strongest digits - reducing fatigue. So if I must use a modifier, I use Control.
3. I use the Dvorak layout.
* package.el :package:
@ -3122,7 +3122,7 @@ PR ideas
:CUSTOM_ID: completion
:END:
The =initials= completion style is excellent! Instead of typying =(w-o-t-t|<TAB>)= to get =(with-output-to-temp-buffer|)=, you can just type =(wott|<TAB>)=.
The =initials= completion style is excellent! Instead of typing =(w-o-t-t|<TAB>)= to get =(with-output-to-temp-buffer|)=, you can just type =(wott|<TAB>)=.
But with =initials=, the desired completion is often buried in the results. That is where =prescient= shines - it remembers your input text and ranks previously-selected suggestions higher.