From 1f86baac93c9ed206a1be04c6d8c0e4f33f38859 Mon Sep 17 00:00:00 2001 From: eriedaberrie Date: Wed, 5 Feb 2025 15:55:07 +0000 Subject: [PATCH] Swap C-, and C-" avy bindings for consistency --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 181fd0c..f1c80fe 100644 --- a/init.el +++ b/init.el @@ -132,8 +132,8 @@ (use-package avy :bind ("C-'" . avy-goto-char) - ("C-," . avy-goto-char-2) - ("C-\"" . avy-goto-char-timer) + ("C-\"" . avy-goto-char-2) + ("C-," . avy-goto-char-timer) ("M-g f" . avy-goto-line) ("M-g w" . avy-goto-word-1) ("M-g e" . avy-goto-word-0)