add function comment, evil goto next line indent

`spacemacs/evil-goto-next-line-and-indent` doesn't have a function comment, this corrects that.
This commit is contained in:
duianto 2016-12-16 20:14:27 +01:00 committed by d12frosted
parent b67118c8ca
commit b3abf4269d
No known key found for this signature in database
GPG Key ID: 8F60E862D6F5CE8F
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ the current state and point position."
(dotimes (_ count) (save-excursion (evil-insert-newline-below))))
(defun spacemacs/evil-goto-next-line-and-indent (&optional count)
"Match the current lines indentation to the next line.
A COUNT argument matches the indentation to the next COUNT lines."
(interactive "p")
(let ((counter (or count 1)))
(while (> counter 0)