diff options
Diffstat (limited to '.emacs.d/lisp/init-navigation.el')
-rw-r--r-- | .emacs.d/lisp/init-navigation.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index d0df0f1..d3024aa 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -16,7 +16,8 @@ If a numeric prefix argument N is given, move forward N instances of char." (defun goto-char-forward-repeat-last (arg) "Move forward in line to char last used in a goto-char command. If a C-u prefix argument is given, it is not restricted to the current line. -If a numeric prefix argument N is given, move forward N instances of the last used char." +If a numeric prefix argument N is given, move forward N instances of the last +used char." (interactive "P") (goto-char--move-forward arg)) @@ -31,7 +32,8 @@ If a numeric prefix argument N is given, move back N instances of char." (defun goto-char-backward-repeat-last (arg) "Move backward in line to char last qused in a goto-char command. If a C-u prefix argument is given, it is not restricted to the current line. -If a numeric prefix argument N is given, move back N instances of the last used char." +If a numeric prefix argument N is given, move back N instances of the last used +char." (interactive "P") (goto-char--move-backward arg)) |