2012-07-31 14:22:57 +02:00
|
|
|
hook global BufCreate .*\.(c|cc|cpp|cxx|C|h|hh|hpp|hxx|H) %{
|
2012-06-14 15:21:22 +02:00
|
|
|
setb filetype cpp
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2012-08-07 13:51:51 +02:00
|
|
|
hook global BufOpen .* %{ %sh{
|
|
|
|
mimetype="$(file -b --mime-type ${kak_bufname})"
|
|
|
|
if [[ "${mimetype}" == "text/x-c++" || "${mimetype}" == "text/x-c" ]]; then
|
|
|
|
echo setb filetype cpp;
|
|
|
|
fi
|
|
|
|
} }
|
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
hook global WinSetOption filetype=cpp %{
|
2012-09-04 00:08:01 +02:00
|
|
|
addhl group cpp-highlight
|
2012-08-07 00:28:55 +02:00
|
|
|
addhl -group cpp-highlight regex "\<(this|true|false|NULL|nullptr|)\>|\<-?\d+[fdiu]?|'((\\.)?|[^'\\])'" 0:red
|
|
|
|
addhl -group cpp-highlight regex "\<(void|int|char|unsigned|float|bool|size_t)\>" 0:yellow
|
|
|
|
addhl -group cpp-highlight regex "\<(while|for|if|else|do|switch|case|default|goto|break|continue|return|using|try|catch|throw|new|delete|and|or|not)\>" 0:blue
|
|
|
|
addhl -group cpp-highlight regex "\<(const|auto|namespace|inline|static|volatile|class|struct|enum|union|public|protected|private|template|typedef|virtual|friend|extern|typename)\>" 0:green
|
|
|
|
addhl -group cpp-highlight regex "(?<!')\"(\\\"|[^\"])*\"" 0:magenta
|
|
|
|
addhl -group cpp-highlight regex "(\`|(?<=\n))\h*#\h*[^\n]*" 0:magenta
|
|
|
|
addhl -group cpp-highlight regex "(//[^\n]*\n)|(/\*.*?(\*/|\'))" 0:cyan
|
2012-07-31 14:22:57 +02:00
|
|
|
addfilter group cpp-filters;
|
|
|
|
addfilter -group cpp-filters preserve_indent;
|
|
|
|
addfilter -group cpp-filters cleanup_whitespaces;
|
|
|
|
hook window InsertEnd .* %{ exec xs\h+(?=\n)<ret>d }
|
|
|
|
}
|
2012-01-23 15:00:33 +01:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
hook global WinSetOption filetype=(?!cpp).* %{
|
|
|
|
rmhl cpp-highlight;
|
2012-06-14 15:21:22 +02:00
|
|
|
rmfilter cpp-filters
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
hook global BufNew .*\.(h|hh|hpp|hxx|H) %{
|
2012-08-05 20:13:41 +02:00
|
|
|
exec ggi<c-r>%<ret><esc>ggxs\.<ret>c_<esc><space>A_INCLUDED<esc>ggxyppI#ifndef<space><esc>jI#define<space><esc>jI#endif<space>//<space><esc>O<esc>
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-01-31 15:07:41 +01:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
def alt %{ edit %sh{
|
|
|
|
case ${kak_bufname} in
|
2012-02-13 22:43:22 +01:00
|
|
|
*.c) echo ${kak_bufname/%c/h} ;;
|
|
|
|
*.cc) echo ${kak_bufname/%cc/hh} ;;
|
|
|
|
*.cpp) echo ${kak_bufname/%cpp/hpp} ;;
|
|
|
|
*.cxx) echo ${kak_bufname/%cxx/hxx} ;;
|
|
|
|
*.C) echo ${kak_bufname/%C/H} ;;
|
|
|
|
*.h) echo ${kak_bufname/%h/c} ;;
|
|
|
|
*.hh) echo ${kak_bufname/%hh/cc} ;;
|
|
|
|
*.hpp) echo ${kak_bufname/%hpp/cpp} ;;
|
|
|
|
*.hxx) echo ${kak_bufname/%hxx/cxx} ;;
|
|
|
|
*.H) echo ${kak_bufname/%H/C} ;;
|
2012-07-31 14:22:57 +02:00
|
|
|
esac
|
2012-09-04 00:08:01 +02:00
|
|
|
}}
|