[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Movement keys.
smart-documents.org
@@ -446,8 +446,33 @@
446
446
(global-set-key (kbd "C-+") 'text-scale-increase)
447
447
#+END_SRC
448
448
449
Removed:
450
449
** Navigation
450
Added:
451
Added:
=Alt= (=Meta=) is the privileged key for motion in a buffer. It precedes a
452
Added:
numerical argument, and a movement command. You may navigate in a buffer by
453
Added:
keeping =Alt= pressed, optionally inputting a number from the keypad or number
454
Added:
row, then pressing any of the following movement keys: =j=, =k=, =h=, and
455
Added:
=l=. You will move in that direction by the according numerical argument.
456
Added:
457
Added:
#+NAME: keybinding-navigation
458
Added:
#+CAPTION[Navigation keybindings]: Navigation keybindings.
459
Added:
#+ATTR_LATEX: :booktabs t
460
Added:
| | *Backwards* | *Forwards* |
461
Added:
|-----------+-------------+------------|
462
Added:
| Character | =M-h= | =M-l= |
463
Added:
| Line | =M-k= | =M-j= |
464
Added:
| Word | =M-f= | =M-b= |
465
Added:
| Paragraph | =M-a= | =M-e= |
466
Added:
467
Added:
468
Added:
We prevent Org mode from overriding preferred navigation keys.
469
Added:
470
Added:
#+BEGIN_SRC emacs-lisp :tangle yes
471
Added:
(local-unset-key (kbd "M-j"))
472
Added:
(local-unset-key (kbd "M-k"))
473
Added:
(local-unset-key (kbd "M-l"))
474
Added:
(local-unset-key (kbd "M-h"))
475
Added:
#+END_SRC
451
476
452
477
*** Move down one line
453
478