When programming in extended assembler (using asm-mode
), auto indentation insists on indenting compiler directives, such as #define
, #if
and #endif
, how can I disable this?
Emacs version: 0.300.0@26.3 (spacemacs)
When programming in extended assembler (using asm-mode
), auto indentation insists on indenting compiler directives, such as #define
, #if
and #endif
, how can I disable this?
Emacs version: 0.300.0@26.3 (spacemacs)
setting electric-indent-mode
to nil
on asm-mode-hook
resolved the issue.