mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
929f52632b
man/.dir-locals is to keep indentation under control. This makes it much easier to compile and run those examples, c.f. #7578. v2: - copy more of .dir-locals.el from the root to man/.dir-locals.el (I though emacs would inherit from the one in the parent dir, but it seems it just uses its own broken defaults, including indent-tabs-mode by default.)
15 lines
606 B
EmacsLisp
15 lines
606 B
EmacsLisp
; special .c mode with reduced indentation for man pages
|
|
((nil . ((indent-tabs-mode . nil)
|
|
(tab-width . 8)
|
|
(fill-column . 79)))
|
|
(c-mode . ((fill-column . 80)
|
|
(c-basic-offset . 2)
|
|
(eval . (c-set-offset 'substatement-open 0))
|
|
(eval . (c-set-offset 'statement-case-open 0))
|
|
(eval . (c-set-offset 'case-label 0))
|
|
(eval . (c-set-offset 'arglist-intro '++))
|
|
(eval . (c-set-offset 'arglist-close 0))))
|
|
(nxml-mode . ((nxml-child-indent . 2)
|
|
(fill-column . 119)))
|
|
(meson-mode . ((meson-indent-basic . 8))))
|