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
|
|
|
|
2013-11-12 21:38:00 +01:00
|
|
|
hook global BufSetOption mimetype=text/x-c(\+\+)? %{
|
|
|
|
set buffer filetype cpp
|
|
|
|
}
|
2012-08-07 13:51:51 +02:00
|
|
|
|
2013-11-14 01:11:27 +01:00
|
|
|
def -hidden _cpp_indent_on_new_line %~
|
2013-11-13 14:11:22 +01:00
|
|
|
eval -draft -itersel %_
|
2013-11-07 22:58:19 +01:00
|
|
|
# preserve previous line indent
|
2014-09-25 20:27:31 +02:00
|
|
|
try %{ exec -draft \;K<a-&> }
|
2013-11-07 22:58:19 +01:00
|
|
|
# indent after lines ending with { or (
|
2013-12-03 20:43:33 +01:00
|
|
|
try %[ exec -draft k<a-x> <a-k> [{(]\h*$ <ret> j<a-gt> ]
|
2013-11-07 22:58:19 +01:00
|
|
|
# cleanup trailing white space son previous line
|
2013-12-03 20:43:33 +01:00
|
|
|
try %{ exec -draft k<a-x> s \h+$ <ret>d }
|
2013-11-07 22:58:19 +01:00
|
|
|
# align to opening paren of previous line
|
2014-10-06 20:33:02 +02:00
|
|
|
try %{ exec -draft [( <a-k> \`\([^\n]+\n[^\n]*\n?\' <ret> s \`\(\h*.|.\' <ret> '<a-;>' & }
|
2013-12-23 22:26:07 +01:00
|
|
|
# align to previous statement start when previous line closed a parenthesis
|
|
|
|
# try %{ exec -draft <a-?>\)M<a-k>\`\(.*\)[^\n()]*\n\h*\n?\'<ret>s\`|.\'<ret>1<a-&> }
|
2013-11-07 22:58:19 +01:00
|
|
|
# copy // comments prefix
|
2014-08-30 15:56:01 +02:00
|
|
|
try %{ exec -draft \;<c-s>k<a-x> s ^\h*\K/{2,} <ret> y<c-o><c-o>P<esc> }
|
2013-11-08 20:04:28 +01:00
|
|
|
# indent after visibility specifier
|
2013-12-03 20:43:33 +01:00
|
|
|
try %[ exec -draft k<a-x> <a-k> ^\h*(public|private|protected):\h*$ <ret> j<a-gt> ]
|
2013-11-12 21:38:00 +01:00
|
|
|
# indent after if|else|while|for
|
2014-09-25 20:27:31 +02:00
|
|
|
try %[ exec -draft \;<a-F>)MB <a-k> \`(if|else|while|for)\h*\(.*\)\h*\n\h*\n?\' <ret> s \`|.\' <ret> 1<a-&>1<a-space><a-gt> ]
|
2013-11-13 14:11:22 +01:00
|
|
|
_
|
2013-11-14 01:11:27 +01:00
|
|
|
~
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2013-12-03 20:43:33 +01:00
|
|
|
def -hidden _cpp_indent_on_opening_curly_brace %[
|
|
|
|
# align indent with opening paren when { is entered on a new line after the closing paren
|
2013-12-03 22:21:02 +01:00
|
|
|
try %[ exec -draft -itersel h<a-F>)M <a-k> \`\(.*\)\h*\n\h*\{\' <ret> s \`|.\' <ret> 1<a-&> ]
|
2013-12-03 20:43:33 +01:00
|
|
|
]
|
|
|
|
|
2013-11-13 14:11:22 +01:00
|
|
|
def -hidden _cpp_indent_on_closing_curly_brace %[
|
2013-12-23 22:26:07 +01:00
|
|
|
# align to opening curly brace when alone on a line
|
|
|
|
try %[ exec -itersel -draft <a-h><a-k>^\h+\}$<ret>hms\`|.\'<ret>1<a-&> ]
|
2013-11-13 14:11:22 +01:00
|
|
|
# add ; after } if class or struct definition
|
2014-09-25 20:27:31 +02:00
|
|
|
try %[ exec -draft "hm;<a-?>(class|struct|union)<ret><a-k>\`(class|struct|union)[^{}\n]+(\n)?\s*\{\'<ret><a-;>ma;<esc>" ]
|
2013-11-13 14:11:22 +01:00
|
|
|
]
|
2013-11-07 22:58:19 +01:00
|
|
|
|
2014-07-14 22:42:19 +02:00
|
|
|
addhl -group / regions -default code cpp \
|
2014-06-12 00:29:23 +02:00
|
|
|
string %{(?<!')"} %{(?<!\\)(\\\\)*"} '' \
|
2014-06-12 22:52:23 +02:00
|
|
|
comment /\* \*/ '' \
|
2014-07-13 17:55:34 +02:00
|
|
|
comment // $ '' \
|
2014-10-02 00:29:32 +02:00
|
|
|
disabled ^\h*?#\h*if\h+(0|FALSE)\b '#\h*(else|elif|endif)' '#\h*if(def)?' \
|
2014-07-13 17:55:34 +02:00
|
|
|
macro ^\h*?\K# (?<!\\)\n ''
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2014-06-12 22:52:23 +02:00
|
|
|
addhl -group /cpp/string fill string
|
|
|
|
addhl -group /cpp/comment fill comment
|
2014-09-26 01:32:08 +02:00
|
|
|
addhl -group /cpp/disabled fill rgb:666666
|
2014-07-13 17:57:49 +02:00
|
|
|
addhl -group /cpp/macro fill meta
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2014-06-12 22:52:23 +02:00
|
|
|
addhl -group /cpp/code regex "\<(this|true|false|NULL|nullptr|)\>|\<-?\d+[fdiu]?|'((\\.)?|[^'\\])'" 0:value
|
|
|
|
addhl -group /cpp/code regex "\<(void|int|char|unsigned|float|bool|size_t)\>" 0:type
|
2014-10-22 20:32:04 +02:00
|
|
|
addhl -group /cpp/code regex "\<(while|for|if|else|do|switch|case|default|goto|break|continue|return|using|try|catch|throw|new|delete|and|or|not|operator|explicit|(?:reinterpret|const|static|dynamic)_cast)\>" 0:keyword
|
2014-06-12 22:52:23 +02:00
|
|
|
addhl -group /cpp/code 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
|
2013-12-03 23:15:59 +01:00
|
|
|
|
2013-11-14 01:11:27 +01:00
|
|
|
hook global WinSetOption filetype=cpp %[
|
2013-12-03 23:15:59 +01:00
|
|
|
addhl ref cpp
|
2013-11-13 14:11:22 +01:00
|
|
|
|
|
|
|
# cleanup trailing whitespaces when exiting insert mode
|
2014-06-16 21:42:12 +02:00
|
|
|
hook window InsertEnd .* -group cpp-hooks %{ try %{ exec -draft <a-x>s\h+$<ret>d } }
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2014-06-16 21:42:12 +02:00
|
|
|
hook window InsertChar \n -group cpp-indent _cpp_indent_on_new_line
|
|
|
|
hook window InsertChar \{ -group cpp-indent _cpp_indent_on_opening_curly_brace
|
|
|
|
hook window InsertChar \} -group cpp-indent _cpp_indent_on_closing_curly_brace
|
2014-10-30 00:23:36 +01:00
|
|
|
|
|
|
|
alias window alt cpp-alternative-file
|
2013-11-14 01:11:27 +01:00
|
|
|
]
|
2012-01-23 15:00:33 +01:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
hook global WinSetOption filetype=(?!cpp).* %{
|
2013-12-03 23:15:59 +01:00
|
|
|
rmhl cpp
|
2013-11-04 23:23:55 +01:00
|
|
|
rmhooks window cpp-indent
|
2013-04-11 14:30:02 +02:00
|
|
|
rmhooks window cpp-hooks
|
2014-10-30 00:23:36 +01:00
|
|
|
|
|
|
|
unalias window alt cpp-alternative-file
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2013-11-13 14:11:22 +01:00
|
|
|
def -hidden _cpp_insert_include_guards %{
|
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-11-13 14:11:22 +01:00
|
|
|
hook global BufNew .*\.(h|hh|hpp|hxx|H) _cpp_insert_include_guards
|
|
|
|
|
2013-05-16 19:23:54 +02:00
|
|
|
decl str-list alt_dirs ".;.."
|
2013-03-22 14:30:09 +01:00
|
|
|
|
2014-10-30 00:23:36 +01:00
|
|
|
def cpp-alternative-file -docstring "Jump to the alternate file (header/implementation)" %{ %sh{
|
2014-03-06 04:35:38 +01:00
|
|
|
alt_dirs=$(echo ${kak_opt_alt_dirs} | sed -e 's/;/ /g')
|
2014-03-02 02:07:29 +01:00
|
|
|
file=$(basename ${kak_buffile})
|
|
|
|
dir=$(dirname ${kak_buffile})
|
2013-03-22 14:30:09 +01:00
|
|
|
|
|
|
|
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
|
2014-03-06 04:35:38 +01:00
|
|
|
for ext in h hh hpp hxx H; do
|
|
|
|
altname="${dir}/${alt_dir}/${file%.*}.${ext}"
|
|
|
|
[ -f ${altname} ] && break
|
|
|
|
done
|
|
|
|
[ -f ${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
|
2014-03-06 04:35:38 +01:00
|
|
|
for ext in c cc cpp cxx C; do
|
|
|
|
altname="${dir}/${alt_dir}/${file%.*}.${ext}"
|
|
|
|
[ -f ${altname} ] && break
|
|
|
|
done
|
|
|
|
[ -f ${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
|
2014-03-06 04:35:38 +01:00
|
|
|
if [ -f ${altname} ]; then
|
2012-09-06 13:38:51 +02:00
|
|
|
echo edit "'${altname}'"
|
|
|
|
else
|
|
|
|
echo echo "'alternative file not found'"
|
|
|
|
fi
|
|
|
|
}}
|