2012-07-31 14:22:57 +02:00
hook global BufCreate .*\.(c|cc|cpp|cxx|C|h|hh|hpp|hxx|H) %{
2013-10-30 10:38:40 +01:00
set buffer 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
2013-10-30 10:38:40 +01:00
echo set buffer filetype cpp;
2012-08-07 13:51:51 +02:00
fi
} }
2012-11-21 19:07:41 +01:00
hook global WinSetOption filetype=cpp %~
2012-09-04 00:08:01 +02:00
addhl group cpp-highlight
2012-09-17 19:02:08 +02:00
addhl -group cpp-highlight regex "\<(this|true|false|NULL|nullptr|)\>|\<-?\d+[fdiu]?|'((\\.)?|[^'\\])'" 0:value
addhl -group cpp-highlight regex "\<(void|int|char|unsigned|float|bool|size_t)\>" 0:type
2012-12-12 13:58:24 +01:00
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|operator|explicit)\>" 0:keyword
2012-11-12 20:07:47 +01:00
addhl -group cpp-highlight regex "\<(const|mutable|auto|namespace|inline|static|volatile|class|struct|enum|union|public|protected|private|template|typedef|virtual|friend|extern|typename|override|final)\>" 0:attribute
2012-12-12 13:58:24 +01:00
addhl -group cpp-highlight regex "^\h*?#.*?(?<!\\)$" 0:macro
2013-04-11 13:47:15 +02:00
addhl -group cpp-highlight regex "(?<!')\".*?(?<!\\)(\\\\)*\"" 0:string
2012-09-17 19:02:08 +02:00
addhl -group cpp-highlight regex "(//[^\n]*\n)|(/\*.*?(\*/|\'))" 0:comment
2013-11-04 19:51:31 +01:00
hook window InsertEnd .* -id cpp-hooks %{ try %{ exec -draft <a-x>s\h+$<ret>d } } # cleanup trailing whitespaces when exiting insert mode
2013-11-04 23:23:55 +01:00
2013-11-06 00:50:44 +01:00
hook window InsertChar \n -id cpp-indent %@ eval -draft -itersel %_
2013-11-04 23:23:55 +01:00
try %{ exec -draft k<a-x>s^\h+<ret>yj<a-h>P } # preserve previous line indent
try %[ exec -draft k<a-x><a-k>[{(]\h*$<ret>j<a-gt> ] # indent after lines ending with { or (
2013-11-06 00:50:44 +01:00
try %{ exec -draft k<a-x>s\h+$<ret>d } # cleanup trailing white space son previous line
2013-11-04 23:23:55 +01:00
try %{ exec -draft [(<a-k>\`\([^\n]+\n[^\n]*\n?\'<ret>s\`..|.\'<ret>& } # align to opening paren of previous line
2013-11-07 19:45:08 +01:00
try %{ exec -draft <c-s>k<a-x>s^\h*\K(/{2,})<ret>y<c-o>P } # copy // comments prefix
2013-11-06 00:50:44 +01:00
_ @
2013-11-07 19:45:08 +01:00
hook window InsertChar \} -id cpp-indent %[
try %[ exec -draft <a-h><a-k>^\h+\}$<ret>< ] # deindent on insert } alone on a line
try %[ exec -draft "hm<space><a-?>(class|struct)<ret><a-k>\`(class|struct)[^{}\n]+(\n)?\s*\{\'<ret><a-space>ma;<esc>" ] # add ; after } if class or struct definition
]
2012-11-21 19:07:41 +01:00
~
2012-01-23 15:00:33 +01:00
2012-07-31 14:22:57 +02:00
hook global WinSetOption filetype=(?!cpp).* %{
2012-11-21 19:07:41 +01:00
rmhl cpp-highlight
2013-11-04 23:23:55 +01:00
rmhooks window cpp-indent
2013-04-11 14:30:02 +02:00
rmhooks window cpp-hooks
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
2013-05-16 19:23:54 +02:00
decl str-list alt_dirs ".;.."
2013-03-22 14:30:09 +01:00
2012-09-06 13:38:51 +02:00
def alt %{ %sh{
shopt -s extglob
2013-05-17 14:08:02 +02:00
alt_dirs=${kak_opt_alt_dirs//;/ }
2013-03-22 14:30:09 +01:00
file=$(basename ${kak_bufname})
dir=$(dirname ${kak_bufname})
case ${file} in
2012-09-06 13:38:51 +02:00
*.c|*.cc|*.cpp|*.cxx|*.C)
2013-03-22 14:30:09 +01:00
for alt_dir in ${alt_dirs}; do
altname=$(ls -1 "${dir}/${alt_dir}/${file%.*}".@(h|hh|hpp|hxx|H) 2> /dev/null | head -n 1)
2013-03-28 14:28:15 +01:00
[[ -e ${altname} ]] && break
2013-03-22 14:30:09 +01:00
done
2012-09-06 13:38:51 +02:00
;;
*.h|*.hh|*.hpp|*.hxx|*.H)
2013-03-22 14:30:09 +01:00
for alt_dir in ${alt_dirs}; do
altname=$(ls -1 "${dir}/${alt_dir}/${file%.*}".@(c|cc|cpp|cxx|C) 2> /dev/null | head -n 1)
2013-03-28 14:28:15 +01:00
[[ -e ${altname} ]] && break
2013-03-22 14:30:09 +01:00
done
2012-09-06 13:38:51 +02:00
;;
2012-07-31 14:22:57 +02:00
esac
2012-09-06 13:38:51 +02:00
if [[ -e ${altname} ]]; then
echo edit "'${altname}'"
else
echo echo "'alternative file not found'"
fi
}}