summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/yasnippet.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/yasnippet.el')
-rw-r--r--.emacs.d/lisp/yasnippet.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/.emacs.d/lisp/yasnippet.el b/.emacs.d/lisp/yasnippet.el
index 1f92adc..5f17465 100644
--- a/.emacs.d/lisp/yasnippet.el
+++ b/.emacs.d/lisp/yasnippet.el
@@ -4306,6 +4306,9 @@ The SNIPPET's markers are preserved."
4306 (forward-line 1) 4306 (forward-line 1)
4307 (let ((indent-line-function 4307 (let ((indent-line-function
4308 (lambda () 4308 (lambda ()
4309 ;; We need to be at beginning of line in order to
4310 ;; indent existing whitespace correctly.
4311 (beginning-of-line)
4309 (indent-to-column yas--indent-original-column)))) 4312 (indent-to-column yas--indent-original-column))))
4310 (yas--indent-region (line-beginning-position) 4313 (yas--indent-region (line-beginning-position)
4311 (point-max) 4314 (point-max)