blob: 3810d00514c2adfe4df6ddd8f2ec2f81486b2ce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# https://freedesktop.org/wiki/Software/systemd/
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*/systemd/.+\.(automount|conf|link|mount|network|path|service|slice|socket|target|timer) %{
set-option buffer filetype ini
# NOTE: INI files define the commenting character to be `;`, which won't work in `systemd` files
hook -once buffer BufSetOption comment_line=.+ %{
set-option buffer comment_line "#"
}
}
|