LoginSignup
6
3

More than 3 years have passed since last update.

Emacs 26.3 で vue-mode の js パートのインデントが効かなくなる件の対処法

Posted at

syntax-ppss-table に何かが設定されているのが原因のようで、Issueにあった次の設定を追加したら直りました。

(setq mmm-js-mode-enter-hook (lambda () (setq syntax-ppss-table nil)))
(setq mmm-typescript-mode-enter-hook (lambda () (setq syntax-ppss-table nil)))

参照

Indentation problems in <script> tags #74
https://github.com/AdamNiederer/vue-mode/issues/74#issuecomment-539711083

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3