1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-23 23:34:12 +03:00
kakoune/rc/filetype/systemd.kak

15 lines
591 B
Plaintext
Raw Normal View History

# 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 "#"
}
}