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: [email protected] (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: [email protected] (spacemacs)
setting electric-indent-mode
to nil
on asm-mode-hook
resolved the issue.