diff options
Diffstat (limited to 'align-with-spaces.el')
| -rw-r--r-- | align-with-spaces.el | 16 |
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) |
