AutoYADM commit: 2025-06-16 14:45:37

This commit is contained in:
Daniel Fichtinger 2025-06-16 14:45:37 -04:00
parent df0d6e097e
commit d9fe2a642e
3 changed files with 38 additions and 0 deletions

View file

@ -115,6 +115,10 @@ hook global WinSetOption filetype=mail %~
}
~
hook global WinSetOption filetype=ini %{
set-option window comment_line '#'
}
hook global BufCreate .*[.](conf) %{
set-option buffer filetype ini
}

View file

@ -0,0 +1,11 @@
hook global BufCreate .*[.]taskrc %{
set-option buffer filetype ini
}
hook global BufCreate .*[.]task %{
set-option buffer filetype task
}
hook global WinSetOption filetype=task %{
set-option window comment_line '#'
}