src.nth.io/

summaryrefslogtreecommitdiff
path: root/align-with-spaces.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2013-06-30 21:18:21 -0500
committerLuke Hoersten <[email protected]>2013-06-30 21:18:21 -0500
commit1f19cf60de031ceb64a5e142ee8f2eb0e67d8714 (patch)
tree166e59f371923c9b332d0bd0f892a6f1413a011b /align-with-spaces.el
parenteab4b21026cee768e1452f7c9a7a8d3721b5316f (diff)
Fixed a bug with the haskell-mode-hook
Diffstat (limited to 'align-with-spaces.el')
-rw-r--r--align-with-spaces.el16
1 files changed, 0 insertions, 16 deletions
diff --git a/align-with-spaces.el b/align-with-spaces.el
deleted file mode 100644
index cf0ad39..0000000
--- a/align-with-spaces.el
+++ /dev/null
@@ -1,16 +0,0 @@
-;; ~/.emacs.d/hoersten-align-with-spaces.el
-;; Luke Hoersten <[email protected]>
-
-(global-set-key (kbd "C-c a") 'align-with-spaces)
-(defun align-with-spaces (beg end pattern)
- "Align selected using only spaces for whitespace."
- (interactive "r\nsAlign by: ")
- (let ((indent-tabs-mode nil))
- (align-string beg end pattern 1)
- (align-entire beg end)
- (untabify beg end)
- (indent-region beg end)
- (whitespace-cleanup-region beg end)))
-
-(message "Loading align-with-spaces...done")
-(provide 'align-with-spaces)