]> git.earman.xyz Git - emacsinit.git/commitdiff
Formatting changes, attempt to make =C-'= display properly
authorrearman <rearman@r717.net>
Wed, 15 Mar 2023 21:30:41 +0000 (17:30 -0400)
committerrearman <rearman@r717.net>
Wed, 15 Mar 2023 21:30:41 +0000 (17:30 -0400)
init.org

index ac8ae47f9f00fb45186697ac443a201bd266532a..7b8fbd453871964d3baf1d9c7dc46c9f5fdf2ef8 100644 (file)
--- a/init.org
+++ b/init.org
@@ -461,7 +461,7 @@ Just some basic stuff.  I don't think I've seen too many configs that don't have
 
 *** Bindings
 
-The usual bindings, aside from my special case of using ~C-'~ in place of =C-u=.  I have unbound ~C-'~ in org-mode.
+The usual bindings, aside from my special case of using =C-'X= in place of =C-u=.  I have unbound =C-'X= in org-mode.
 
 #+BEGIN_SRC emacs-lisp
 (global-set-key (kbd "C-c l") 'org-store-link)
@@ -776,7 +776,7 @@ There is no pre-made function to kill backward to the beginning of line from poi
 (global-set-key (kbd "C-u")'backward-kill-line)
 #+END_SRC
 
-Since =C-u= is =universal-argument=, I put that functionality on ~C-'~.
+Since =C-u= is =universal-argument=, I put that functionality on =C-'X=.
 
 #+BEGIN_SRC emacs-lisp
 (global-set-key (kbd "C-'") 'universal-argument)