From dcad083c725f1e275a725ca989da6b0f042ceccb Mon Sep 17 00:00:00 2001 From: qorg11 Date: Wed, 22 Jul 2020 19:10:18 +0200 Subject: [PATCH] Emulation of % in vi using C-2 --- config.org | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/config.org b/config.org index df7e845..40ad8eb 100644 --- a/config.org +++ b/config.org @@ -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