Created
November 9, 2012 18:26
-
-
Save dstcruz/4047355 to your computer and use it in GitHub Desktop.
Nice to use with haskell :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun my-align-single-equals () | |
"Align on a single equals sign (with a space either side)." | |
(interactive) | |
(align-regexp | |
(region-beginning) (region-end) | |
"\\(\\s-*\\) = " 1 0 nil)) | |
(global-set-key (kbd "C-c a") 'my-align-single-equals) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment