Realign the file according to Elisp conventions

This commit is contained in:
Matus Goljer 2018-09-13 14:26:58 +02:00
parent 3f382d2c8f
commit 8172edd05a

View File

@ -138,18 +138,13 @@ Might not behave as intended if more than one cursors are on the same line."
(interactive)
(let ((missing-spaces (- rightest-column (current-column))))
(save-excursion (insert (make-string missing-spaces character)))
(forward-char missing-spaces)
)
))
)
)
(forward-char missing-spaces))))))
;;;###autoload
(defun mc/vertical-align-with-space ()
"Aligns all cursors with whitespace like `mc/vertical-align' does"
(interactive)
(mc/vertical-align 32)
)
(mc/vertical-align 32))
(provide 'mc-separate-operations)
;;; mc-separate-operations.el ends here