0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 04:02:15 +02:00
openvpn3/.dir-locals.el-example
Frank Lichtenheld cf950844d0
.dir-locals.el-example: Fix arglist-cont-nonempty
Need to align by first argument, not by function name.

Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
2023-05-22 14:50:39 +02:00

11 lines
255 B
Plaintext

; Adapted from https://www.emacswiki.org/emacs/IndentingC
((c++-mode
(c-file-style . "stroustrup")
(innamespace . -)
(inline-open . 0)
(inher-cont . c-lineup-multi-inher)
(arglist-cont-nonempty . c-lineup-arglist)
(template-args-cont . +))
)