Merge remote-tracking branch 'casimir/remove-mimetype'
This commit is contained in:
commit
1bdf26fd6e
|
@ -6,10 +6,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-clojure %{
|
|
||||||
set buffer filetype clojure
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](cljs?) %{
|
hook global BufCreate .*[.](cljs?) %{
|
||||||
set buffer filetype clojure
|
set buffer filetype clojure
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-css %{
|
|
||||||
set buffer filetype css
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](css) %{
|
hook global BufCreate .*[.](css) %{
|
||||||
set buffer filetype css
|
set buffer filetype css
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufCreate .*\.di? %{
|
hook global BufCreate .*\.di? %{
|
||||||
set buffer mimetype ""
|
|
||||||
set buffer filetype d
|
set buffer filetype d
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
16
rc/base/file.kak
Normal file
16
rc/base/file.kak
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
decl str mimetype
|
||||||
|
|
||||||
|
hook global BufOpen .* %{ %sh{
|
||||||
|
if [ -z "${kak_opt_filetype}" ]; then
|
||||||
|
mime=$(file -b --mime-type "${kak_buffile}")
|
||||||
|
case "${mime}" in
|
||||||
|
text/x-*) filetype="${mime#text/x-}" ;;
|
||||||
|
text/*) filetype="${mime#text/}" ;;
|
||||||
|
esac
|
||||||
|
if [ -n "${filetype}" ]; then
|
||||||
|
printf "set buffer filetype '%s'\n" "${filetype}"
|
||||||
|
else
|
||||||
|
printf "set buffer mimetype '%s'\n" "${mime}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
} }
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-fish %{
|
|
||||||
set buffer filetype fish
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](fish) %{
|
hook global BufCreate .*[.](fish) %{
|
||||||
set buffer filetype fish
|
set buffer filetype fish
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufCreate .*\.go %{
|
hook global BufCreate .*\.go %{
|
||||||
set buffer mimetype ""
|
|
||||||
set buffer filetype go
|
set buffer filetype go
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-haskell %{
|
|
||||||
set buffer filetype haskell
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](hs) %{
|
hook global BufCreate .*[.](hs) %{
|
||||||
set buffer filetype haskell
|
set buffer filetype haskell
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,10 +2,6 @@ hook global BufCreate .*\.java %{
|
||||||
set buffer filetype java
|
set buffer filetype java
|
||||||
}
|
}
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/java %{
|
|
||||||
set buffer filetype java
|
|
||||||
}
|
|
||||||
|
|
||||||
addhl -group / regions -default code java \
|
addhl -group / regions -default code java \
|
||||||
string %{(?<!')"} %{(?<!\\)(\\\\)*"} '' \
|
string %{(?<!')"} %{(?<!\\)(\\\\)*"} '' \
|
||||||
comment /\* \*/ '' \
|
comment /\* \*/ '' \
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-javascript %{
|
|
||||||
set buffer filetype javascript
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](js) %{
|
hook global BufCreate .*[.](js) %{
|
||||||
set buffer filetype javascript
|
set buffer filetype javascript
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-json %{
|
|
||||||
set buffer filetype json
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](json) %{
|
hook global BufCreate .*[.](json) %{
|
||||||
set buffer filetype json
|
set buffer filetype json
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-lisp %{
|
|
||||||
set buffer filetype lisp
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](lisp) %{
|
hook global BufCreate .*[.](lisp) %{
|
||||||
set buffer filetype lisp
|
set buffer filetype lisp
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-lua %{
|
|
||||||
set buffer filetype lua
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](lua) %{
|
hook global BufCreate .*[.](lua) %{
|
||||||
set buffer filetype lua
|
set buffer filetype lua
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
hook global BufSetOption mimetype=message/rfc822 %{ set buffer filetype mail }
|
hook global BufCreate .+\.eml %{
|
||||||
|
set buffer filetype mail
|
||||||
|
}
|
||||||
|
|
||||||
|
hook global BufSetOption mimetype=message/rfc822 %{
|
||||||
|
set buffer filetype mail
|
||||||
|
}
|
||||||
|
|
||||||
addhl -group / group mail
|
addhl -group / group mail
|
||||||
addhl -group /mail regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
|
addhl -group /mail regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-markdown %{
|
|
||||||
set buffer filetype markdown
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](markdown|md|mkd) %{
|
hook global BufCreate .*[.](markdown|md|mkd) %{
|
||||||
set buffer filetype markdown
|
set buffer filetype markdown
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
decl str mimetype "text/plain"
|
|
||||||
|
|
||||||
hook global BufOpen .* %{
|
|
||||||
set buffer mimetype %sh{file -b --mime-type "${kak_buffile}" }
|
|
||||||
}
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-perl %{
|
|
||||||
set buffer filetype perl
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*\.pl %{
|
hook global BufCreate .*\.pl %{
|
||||||
set buffer filetype perl
|
set buffer filetype perl
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-ruby %{
|
|
||||||
set buffer filetype ruby
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*(([.](rb))|(irbrc)|(pryrc)|(Capfile|[.]cap)|(Gemfile)|(Guardfile)|(Rakefile|[.]rake)|(Thorfile|[.]thor)|(Vagrantfile)) %{
|
hook global BufCreate .*(([.](rb))|(irbrc)|(pryrc)|(Capfile|[.]cap)|(Gemfile)|(Guardfile)|(Rakefile|[.]rake)|(Thorfile|[.]thor)|(Vagrantfile)) %{
|
||||||
set buffer filetype ruby
|
set buffer filetype ruby
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,13 +4,8 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-rust %{
|
|
||||||
set buffer filetype rust
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](rust|rs) %{
|
hook global BufCreate .*[.](rust|rs) %{
|
||||||
set buffer filetype rust
|
set buffer filetype rust
|
||||||
set buffer mimetype ''
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Highlighters
|
# Highlighters
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-scala %{
|
|
||||||
set buffer filetype scala
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](scala) %{
|
hook global BufCreate .*[.](scala) %{
|
||||||
set buffer filetype scala
|
set buffer filetype scala
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-yaml %{
|
|
||||||
set buffer filetype yaml
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](yaml) %{
|
hook global BufCreate .*[.](yaml) %{
|
||||||
set buffer filetype yaml
|
set buffer filetype yaml
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufCreate .*\.asciidoc %{ set buffer filetype asciidoc }
|
hook global BufCreate .+\.(a(scii)?doc|asc) %{
|
||||||
|
set buffer filetype asciidoc
|
||||||
|
}
|
||||||
|
|
||||||
# Highlighters
|
# Highlighters
|
||||||
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
hook global BufCreate .*\.(cc|cpp|cxx|C|hh|hpp|hxx|H)$ %{
|
hook global BufCreate .*\.(cc|cpp|cxx|C|hh|hpp|hxx|H)$ %{
|
||||||
set buffer filetype cpp
|
set buffer filetype cpp
|
||||||
set buffer mimetype ''
|
}
|
||||||
|
|
||||||
|
hook global BufSetOption filetype=c\+\+ %{
|
||||||
|
set buffer filetype cpp
|
||||||
}
|
}
|
||||||
|
|
||||||
hook global BufCreate .*\.c$ %{
|
hook global BufCreate .*\.c$ %{
|
||||||
set buffer filetype c
|
set buffer filetype c
|
||||||
set buffer mimetype ''
|
|
||||||
}
|
}
|
||||||
|
|
||||||
hook global BufCreate .*\.h$ %{
|
hook global BufCreate .*\.h$ %{
|
||||||
|
@ -15,24 +17,10 @@ hook global BufCreate .*\.h$ %{
|
||||||
} catch %{
|
} catch %{
|
||||||
set buffer filetype c
|
set buffer filetype c
|
||||||
}
|
}
|
||||||
set buffer mimetype ''
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-c %{
|
|
||||||
set buffer filetype c
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-c\+\+ %{
|
|
||||||
set buffer filetype cpp
|
|
||||||
}
|
}
|
||||||
|
|
||||||
hook global BufCreate .*\.m %{
|
hook global BufCreate .*\.m %{
|
||||||
set buffer filetype objc
|
set buffer filetype objc
|
||||||
set buffer mimetype ''
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-objc %{
|
|
||||||
set buffer filetype objc
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def -hidden c-family-trim-autoindent %[ eval -draft -itersel %[
|
def -hidden c-family-trim-autoindent %[ eval -draft -itersel %[
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-makefile %{
|
|
||||||
set buffer filetype makefile
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*/?[mM]akefile %{
|
hook global BufCreate .*/?[mM]akefile %{
|
||||||
set buffer filetype makefile
|
set buffer filetype makefile
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-python %{
|
|
||||||
set buffer filetype python
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](py) %{
|
hook global BufCreate .*[.](py) %{
|
||||||
set buffer filetype python
|
set buffer filetype python
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,10 +2,6 @@ hook global BufCreate .*\.(z|ba|c|k)?sh(rc|_profile)? %{
|
||||||
set buffer filetype sh
|
set buffer filetype sh
|
||||||
}
|
}
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-shellscript %{
|
|
||||||
set buffer filetype sh
|
|
||||||
}
|
|
||||||
|
|
||||||
addhl -group / regions -default code sh \
|
addhl -group / regions -default code sh \
|
||||||
double_string %{(?<!\\)(\\\\)*\K"} %{(?<!\\)(\\\\)*"} '' \
|
double_string %{(?<!\\)(\\\\)*\K"} %{(?<!\\)(\\\\)*"} '' \
|
||||||
single_string %{(?<!\\)(\\\\)*\K'} %{'} '' \
|
single_string %{(?<!\\)(\\\\)*\K'} %{'} '' \
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-cabal %{
|
|
||||||
set buffer filetype cabal
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](cabal) %{
|
hook global BufCreate .*[.](cabal) %{
|
||||||
set buffer filetype cabal
|
set buffer filetype cabal
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-coffee %{
|
|
||||||
set buffer filetype coffee
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](coffee) %{
|
hook global BufCreate .*[.](coffee) %{
|
||||||
set buffer filetype coffee
|
set buffer filetype coffee
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-cucumber %{
|
|
||||||
set buffer filetype cucumber
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](feature|story) %{
|
hook global BufCreate .*[.](feature|story) %{
|
||||||
set buffer filetype cucumber
|
set buffer filetype cucumber
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-haml %{
|
|
||||||
set buffer filetype haml
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](haml) %{
|
hook global BufCreate .*[.](haml) %{
|
||||||
set buffer filetype haml
|
set buffer filetype haml
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-tex %{
|
|
||||||
set buffer filetype latex
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*\.tex %{
|
hook global BufCreate .*\.tex %{
|
||||||
set buffer filetype latex
|
set buffer filetype latex
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,6 @@ def -hidden _modeline-parse %{
|
||||||
autowrap_column
|
autowrap_column
|
||||||
eolformat
|
eolformat
|
||||||
filetype
|
filetype
|
||||||
mimetype
|
|
||||||
BOM
|
BOM
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,12 +4,8 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-moon %{
|
|
||||||
set buffer filetype moon
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](moon) %{
|
hook global BufCreate .*[.](moon) %{
|
||||||
set buffer mimetype text/x-moon
|
set buffer filetype moon
|
||||||
}
|
}
|
||||||
|
|
||||||
# Highlighters
|
# Highlighters
|
||||||
|
|
|
@ -8,10 +8,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-pug %{
|
|
||||||
set buffer filetype pug
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](pug|jade) %{
|
hook global BufCreate .*[.](pug|jade) %{
|
||||||
set buffer filetype pug
|
set buffer filetype pug
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,10 +6,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-ragel %{
|
|
||||||
set buffer filetype ragel
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](ragel|rl) %{
|
hook global BufCreate .*[.](ragel|rl) %{
|
||||||
set buffer filetype ragel
|
set buffer filetype ragel
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-sass %{
|
|
||||||
set buffer filetype sass
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](sass) %{
|
hook global BufCreate .*[.](sass) %{
|
||||||
set buffer filetype sass
|
set buffer filetype sass
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,10 +6,6 @@
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufSetOption mimetype=text/x-scss %{
|
|
||||||
set buffer filetype scss
|
|
||||||
}
|
|
||||||
|
|
||||||
hook global BufCreate .*[.](scss) %{
|
hook global BufCreate .*[.](scss) %{
|
||||||
set buffer filetype scss
|
set buffer filetype scss
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufCreate .*\.taskpaper %{
|
hook global BufCreate .*\.taskpaper %{
|
||||||
set buffer mimetype ""
|
|
||||||
set buffer filetype taskpaper
|
set buffer filetype taskpaper
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
hook global BufCreate (.+/)?[Tt]upfile %{
|
hook global BufCreate (.+/)?[Tt]upfile %{
|
||||||
set buffer mimetype ""
|
|
||||||
set buffer filetype tupfile
|
set buffer filetype tupfile
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user