2012-01-23 15:00:33 +01:00
|
|
|
hook global WinCreate .*\.(c|cc|cpp|cxx|C|h|hh|hpp|hxx|H) \
|
2012-01-15 18:35:25 +01:00
|
|
|
addhl group hlcpp; \
|
2012-06-04 16:14:01 +02:00
|
|
|
addhl -group hlcpp regex "\<(this|true|false|NULL|nullptr|)\>|\<-?\d+[fdiu]?|'((\\.)?|[^'\\])'" red default; \
|
2012-05-04 06:25:09 +02:00
|
|
|
addhl -group hlcpp regex "\<(void|int|char|unsigned|float|bool|size_t)\>" yellow default; \
|
2012-06-04 16:14:01 +02:00
|
|
|
addhl -group hlcpp regex "\<(while|for|if|else|do|switch|case|default|goto|break|continue|return|using|try|catch|throw|new|delete|and|or|not)\>" blue default; \
|
2012-05-29 11:23:53 +02:00
|
|
|
addhl -group hlcpp regex "\<(const|auto|namespace|static|volatile|class|struct|enum|union|public|protected|private|template|typedef|virtual|friend|extern)\>" green default; \
|
2012-05-04 06:25:09 +02:00
|
|
|
addhl -group hlcpp regex "(?<!')\"(\\\"|[^\"])*\"" magenta default; \
|
|
|
|
addhl -group hlcpp regex "(\`|(?<=\n))\h*#\h*[^\n]*" magenta default; \
|
|
|
|
addhl -group hlcpp regex "(//[^\n]*\n)|(/\*.*?(\*/|\'))" cyan default; \
|
2012-01-15 18:35:25 +01:00
|
|
|
addfilter preserve_indent; \
|
2012-01-23 15:00:33 +01:00
|
|
|
addfilter cleanup_whitespaces; \
|
|
|
|
hook window InsertEnd .* exec xs\h+(?=\n)<ret>d
|
|
|
|
|
2012-01-31 15:07:41 +01:00
|
|
|
hook global BufCreate .*\.(h|hh|hpp|hxx|H) \
|
|
|
|
exec ggi<c-r>%<ret><esc>ggxs\.<ret>c_<esc><space>A_INCLUDED<esc>xyppI#ifndef<space><esc>jI#define<space><esc>jI#endif<space>//<space><esc>O<esc>
|
|
|
|
|
2012-02-13 22:43:22 +01:00
|
|
|
def alt edit \
|
|
|
|
`case ${kak_bufname} in
|
|
|
|
*.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} ;;
|
|
|
|
esac`
|