fix indent-command.

This commit is contained in:
Christopher Eames 2018-03-13 22:27:55 +01:00 committed by duianto
parent d1934f8e30
commit 39ce04ccd9
2 changed files with 5 additions and 3 deletions

View File

@ -1531,6 +1531,7 @@ Other:
- Revert setting company min. prefix length to 0 for company-web backend
(thanks to Dela Anthonio)
- Added missing prefixes for =web-mode= and =css-mode= (thanks to Uroš Perišić)
- Fixed ~TAB~ indenting in =web-mode= (thanks to Christopher Eames)
**** Hy
- Added support for virtual envs (thanks to Danny Freeman)
- Key bindings:

View File

@ -11,9 +11,10 @@
(defun spacemacs/emmet-expand ()
(interactive)
(if (bound-and-true-p yas-minor-mode)
(call-interactively 'emmet-expand-yas)
(call-interactively 'emmet-expand-line)))
(unless (if (bound-and-true-p yas-minor-mode)
(call-interactively 'emmet-expand-yas)
(call-interactively 'emmet-expand-line))
(indent-for-tab-command)))
(defun spacemacs/impatient-mode ()
(interactive)