Emulation of % in vi using C-2

This commit is contained in:
qorg11 2020-07-22 19:10:18 +02:00
parent ed1e776343
commit dcad083c72
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -411,6 +411,20 @@ Including indent-buffer, which should not be called automatically on save."
:ensure t
:init
(global-set-key [f8] 'treemacs))
#+END_SRC
** C-2 to matching parentheses
This make the C-2 show the matching parenthesis. like % in Vi.
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "C-2") 'match-paren)
(defun match-paren (arg)
"Go to the matching paren if on a paren; otherwise insert %."
(interactive "p")
(cond ((looking-at "\\s(") (forward-list 1) (backward-char 1))
((looking-at "\\s)") (forward-char 1) (backward-list 1))
(t (self-insert-command (or arg 1)))))
#+END_SRC
* ido
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here