mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-24 20:13:00 +03:00
Add SVG detection as xml in file.kak
This commit is contained in:
parent
1d74e1edaf
commit
2acdafa325
@ -3,6 +3,7 @@ hook global BufOpenFile .* %{ %sh{
|
||||
mime=$(file -b --mime-type "${kak_buffile}")
|
||||
case "${mime}" in
|
||||
application/*+xml) filetype="xml" ;;
|
||||
image/*+xml) filetype="xml" ;; #SVG
|
||||
message/rfc822) filetype="mail" ;;
|
||||
text/x-shellscript) filetype="sh" ;;
|
||||
text/x-*) filetype="${mime#text/x-}" ;;
|
||||
|
Loading…
Reference in New Issue
Block a user