mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2025-10-13 21:03:05 +00:00
Realign the file according to Elisp conventions
This commit is contained in:
parent
3f382d2c8f
commit
8172edd05a
@ -138,18 +138,13 @@ Might not behave as intended if more than one cursors are on the same line."
|
|||||||
(interactive)
|
(interactive)
|
||||||
(let ((missing-spaces (- rightest-column (current-column))))
|
(let ((missing-spaces (- rightest-column (current-column))))
|
||||||
(save-excursion (insert (make-string missing-spaces character)))
|
(save-excursion (insert (make-string missing-spaces character)))
|
||||||
(forward-char missing-spaces)
|
(forward-char missing-spaces))))))
|
||||||
)
|
|
||||||
))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun mc/vertical-align-with-space ()
|
(defun mc/vertical-align-with-space ()
|
||||||
"Aligns all cursors with whitespace like `mc/vertical-align' does"
|
"Aligns all cursors with whitespace like `mc/vertical-align' does"
|
||||||
(interactive)
|
(interactive)
|
||||||
(mc/vertical-align 32)
|
(mc/vertical-align 32))
|
||||||
)
|
|
||||||
|
|
||||||
(provide 'mc-separate-operations)
|
(provide 'mc-separate-operations)
|
||||||
;;; mc-separate-operations.el ends here
|
;;; mc-separate-operations.el ends here
|
||||||
|
Loading…
x
Reference in New Issue
Block a user