2015-09-22 00:36:20 +02:00
|
|
|
hook global BufCreate .*\.(cc|cpp|cxx|C|hh|hpp|hxx|H)$ %{
|
2013-10-30 10:38:40 +01:00
|
|
|
set buffer filetype cpp
|
2015-09-22 00:36:20 +02:00
|
|
|
set buffer mimetype ''
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2015-09-22 19:50:05 +02:00
|
|
|
hook global BufCreate .*\.c$ %{
|
2015-09-22 00:36:20 +02:00
|
|
|
set buffer filetype c
|
|
|
|
set buffer mimetype ''
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:50:05 +02:00
|
|
|
hook global BufCreate .*\.h$ %{
|
|
|
|
try %{
|
|
|
|
exec %{%s\b::\b|\btemplate\h*<lt>|\bclass\h+\w+|\b(typename|namespace)\b|\b(public|private|protected)\h*:<ret>}
|
|
|
|
set buffer filetype cpp
|
|
|
|
} catch %{
|
|
|
|
set buffer filetype c
|
|
|
|
}
|
|
|
|
set buffer mimetype ''
|
|
|
|
}
|
|
|
|
|
2015-09-22 00:36:20 +02:00
|
|
|
hook global BufSetOption mimetype=text/x-c %{
|
|
|
|
set buffer filetype c
|
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption mimetype=text/x-c\+\+ %{
|
2013-11-12 21:38:00 +01:00
|
|
|
set buffer filetype cpp
|
|
|
|
}
|
2012-08-07 13:51:51 +02:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
hook global BufCreate .*\.m %{
|
|
|
|
set buffer filetype objc
|
2015-09-22 00:36:20 +02:00
|
|
|
set buffer mimetype ''
|
2014-12-01 14:52:24 +01:00
|
|
|
}
|
|
|
|
|
2014-12-02 17:15:53 +01:00
|
|
|
hook global BufSetOption mimetype=text/x-objc %{
|
|
|
|
set buffer filetype objc
|
|
|
|
}
|
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
def -hidden _c-family-indent-on-new-line %~
|
2014-12-17 14:58:05 +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> ]
|
2014-12-17 14:58:05 +01:00
|
|
|
=
|
2013-11-14 01:11:27 +01:00
|
|
|
~
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
def -hidden _c-family-indent-on-opening-curly-brace %[
|
2013-12-03 20:43:33 +01:00
|
|
|
# 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
|
|
|
]
|
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
def -hidden _c-family-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-12-01 14:52:24 +01:00
|
|
|
# Regions definition are the same between c++ and objective-c
|
|
|
|
%sh{
|
2015-09-22 00:36:20 +02:00
|
|
|
for ft in c cpp objc; do
|
2014-12-02 17:44:02 +01:00
|
|
|
if [ "${ft}" = "objc" ]; then
|
|
|
|
maybe_at='@?'
|
|
|
|
else
|
|
|
|
maybe_at=''
|
|
|
|
fi
|
|
|
|
|
2014-12-01 20:33:15 +01:00
|
|
|
printf '%s' '
|
2014-12-01 14:52:24 +01:00
|
|
|
addhl -group / regions -default code FT \
|
2014-12-02 17:44:02 +01:00
|
|
|
string %{MAYBEAT(?<!QUOTE)"} %{(?<!\\)(\\\\)*"} "" \
|
2014-12-01 14:52:24 +01:00
|
|
|
comment /\* \*/ "" \
|
|
|
|
comment // $ "" \
|
|
|
|
disabled ^\h*?#\h*if\h+(0|FALSE)\b "#\h*(else|elif|endif)" "#\h*if(def)?" \
|
2014-12-01 20:33:15 +01:00
|
|
|
macro %{^\h*?\K#} %{(?<!\\)\n} ""
|
2014-12-01 14:52:24 +01:00
|
|
|
|
|
|
|
addhl -group /FT/string fill string
|
|
|
|
addhl -group /FT/comment fill comment
|
|
|
|
addhl -group /FT/disabled fill rgb:666666
|
2014-12-02 17:44:02 +01:00
|
|
|
addhl -group /FT/macro fill meta' | sed -e "s/FT/${ft}/g; s/QUOTE/'/g; s/MAYBEAT/${maybe_at}/;"
|
2014-12-01 14:52:24 +01:00
|
|
|
done
|
|
|
|
}
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2015-09-22 00:36:20 +02:00
|
|
|
# c specific
|
|
|
|
addhl -group /c/code regex %{\<NULL\>|\<-?(0x[0-9a-fA-F]+|\d+)[fdiu]?|'((\\.)?|[^'\\])'} 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2016-03-14 17:29:11 +01:00
|
|
|
keywords="while|for|if|else|do|switch|case|default|goto|asm|break|continue|return|sizeof"
|
|
|
|
attributes="const|auto|register|inline|static|volatile|struct|enum|union|typedef|extern|restrict"
|
|
|
|
types="void|char|short|int|long|signed|unsigned|float|double|size_t"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "hook global WinSetOption filetype=c %{
|
2016-03-14 13:08:51 +01:00
|
|
|
set window static_words '${keywords}'
|
|
|
|
set -add window static_words '${attributes}'
|
|
|
|
set -add window static_words '${types}'
|
2016-03-17 14:30:14 +01:00
|
|
|
}" | sed 's,|,:,g'
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2016-03-14 17:29:11 +01:00
|
|
|
addhl -group /c/code regex \<(${keywords})\> 0:keyword
|
|
|
|
addhl -group /c/code regex \<(${attributes})\> 0:attribute
|
|
|
|
addhl -group /c/code regex \<(${types})\> 0:type
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
2015-09-22 00:36:20 +02:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
# c++ specific
|
2016-03-14 13:08:51 +01:00
|
|
|
addhl -group /cpp/code regex %{\<-?(0x[0-9a-fA-F]+|\d+)[fdiu]?|'((\\.)?|[^'\\])'} 0:value
|
|
|
|
|
|
|
|
%sh{
|
|
|
|
# Grammar
|
2016-03-14 17:29:11 +01:00
|
|
|
keywords="while|for|if|else|do|switch|case|default|goto|asm|break|continue"
|
|
|
|
keywords="${keywords}|return|using|try|catch|throw|new|delete|and|and_eq|or"
|
|
|
|
keywords="${keywords}|or_eq|not|operator|explicit|reinterpret_cast"
|
|
|
|
keywords="${keywords}|const_cast|static_cast|dynamic_cast|sizeof|alignof"
|
|
|
|
keywords="${keywords}|alignas|decltype"
|
|
|
|
attributes="const|constexpr|mutable|auto|noexcept|namespace|inline|static"
|
|
|
|
attributes="${attributes}|volatile|class|struct|enum|union|public|protected"
|
|
|
|
attributes="${attributes}|private|template|typedef|virtual|friend|extern"
|
|
|
|
attributes="${attributes}|typename|override|final"
|
|
|
|
types="void|char|short|int|long|signed|unsigned|float|double|size_t|bool"
|
|
|
|
values="this|true|false|NULL|nullptr"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "hook global WinSetOption filetype=cpp %{
|
2016-03-14 13:08:51 +01:00
|
|
|
set window static_words '${keywords}'
|
|
|
|
set -add window static_words '${attributes}'
|
|
|
|
set -add window static_words '${types}'
|
|
|
|
set -add window static_words '${values}'
|
2016-03-17 14:30:14 +01:00
|
|
|
}" | sed 's,|,:,g'
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2016-03-14 17:29:11 +01:00
|
|
|
addhl -group /cpp/code regex \<(${keywords})\> 0:keyword
|
|
|
|
addhl -group /cpp/code regex \<(${attributes})\> 0:attribute
|
|
|
|
addhl -group /cpp/code regex \<(${types})\> 0:type
|
|
|
|
addhl -group /cpp/code regex \<(${values})\> 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
2013-12-03 23:15:59 +01:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
# objective-c specific
|
2016-03-14 13:08:51 +01:00
|
|
|
addhl -group /objc/code regex %{\<-?\d+[fdiu]?|'((\\.)?|[^'\\])'} 0:value
|
|
|
|
|
|
|
|
%sh{
|
|
|
|
# Grammar
|
2016-03-14 17:29:11 +01:00
|
|
|
keywords="while|for|if|else|do|switch|case|default|goto|break|continue|return"
|
|
|
|
attributes="const|auto|inline|static|volatile|struct|enum|union|typedef"
|
|
|
|
attributes="${attributes}|extern|__block|nonatomic|assign|copy|strong"
|
|
|
|
attributes="${attributes}|retain|weak|readonly|IBAction|IBOutlet"
|
|
|
|
types="void|char|short|int|long|signed|unsigned|float|bool|size_t"
|
|
|
|
types="${types}|instancetype|BOOL|NSInteger|NSUInteger|CGFloat|NSString"
|
|
|
|
values="self|nil|id|super|TRUE|FALSE|YES|NO|NULL"
|
|
|
|
decorators="property|synthesize|interface|implementation|protocol|end"
|
|
|
|
decorators="${decorators}|selector|autoreleasepool|try|catch|class|synchronized"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "hook global WinSetOption filetype=objc %{
|
2016-03-14 13:08:51 +01:00
|
|
|
set window static_words '${keywords}'
|
|
|
|
set -add window static_words '${attributes}'
|
|
|
|
set -add window static_words '${types}'
|
|
|
|
set -add window static_words '${values}'
|
|
|
|
set -add window static_words '${decorators}'
|
2016-03-17 14:30:14 +01:00
|
|
|
}" | sed 's,|,:,g'
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2016-03-14 17:29:11 +01:00
|
|
|
addhl -group /objc/code regex \<(${keywords})\> 0:keyword
|
|
|
|
addhl -group /objc/code regex \<(${attributes})\> 0:attribute
|
|
|
|
addhl -group /objc/code regex \<(${types})\> 0:type
|
|
|
|
addhl -group /objc/code regex \<(${values})\> 0:value
|
|
|
|
addhl -group /objc/code regex @(${decorators})\> 0:attribute
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2015-09-22 00:36:20 +02:00
|
|
|
hook global WinSetOption filetype=(c|cpp|objc) %[
|
2016-03-03 20:28:58 +01:00
|
|
|
try %{ # we might be switching from one c-family language to another
|
|
|
|
rmhooks window c-family-hooks
|
|
|
|
rmhooks window c-family-indent
|
|
|
|
}
|
|
|
|
|
2013-11-13 14:11:22 +01:00
|
|
|
# cleanup trailing whitespaces when exiting insert mode
|
2014-12-18 20:33:57 +01:00
|
|
|
hook window InsertEnd .* -group c-family-hooks %{ try %{ exec -draft <a-x>s^\h+$<ret>d } }
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
hook window InsertChar \n -group c-family-indent _c-family-indent-on-new-line
|
|
|
|
hook window InsertChar \{ -group c-family-indent _c-family-indent-on-opening-curly-brace
|
|
|
|
hook window InsertChar \} -group c-family-indent _c-family-indent-on-closing-curly-brace
|
2014-10-30 00:23:36 +01:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
alias window alt c-family-alternative-file
|
2015-10-10 15:25:46 +02:00
|
|
|
|
2015-10-22 15:41:19 +02:00
|
|
|
set window formatcmd "astyle"
|
2013-11-14 01:11:27 +01:00
|
|
|
]
|
2012-01-23 15:00:33 +01:00
|
|
|
|
2015-09-22 00:36:20 +02:00
|
|
|
hook global WinSetOption filetype=(?!(c|cpp|objc)$).* %[
|
2014-12-01 14:52:24 +01:00
|
|
|
rmhooks window c-family-hooks
|
2015-10-10 15:25:46 +02:00
|
|
|
rmhooks window c-family-indent
|
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
unalias window alt c-family-alternative-file
|
|
|
|
]
|
2014-10-30 00:23:36 +01:00
|
|
|
|
2015-09-22 00:36:20 +02:00
|
|
|
hook global WinSetOption filetype=c %[ addhl ref c ]
|
|
|
|
hook global WinSetOption filetype=(?!c$).* %[ rmhl c ]
|
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
hook global WinSetOption filetype=cpp %[ addhl ref cpp ]
|
2015-09-22 00:36:20 +02:00
|
|
|
hook global WinSetOption filetype=(?!cpp$).* %[ rmhl cpp ]
|
2014-12-01 14:52:24 +01:00
|
|
|
|
|
|
|
hook global WinSetOption filetype=objc %[ addhl ref objc ]
|
2015-09-22 00:36:20 +02:00
|
|
|
hook global WinSetOption filetype=(?!objc$).* %[ rmhl objc ]
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2015-10-27 15:23:04 +01:00
|
|
|
decl str c_include_guard_style "ifdef"
|
2014-12-01 14:52:24 +01:00
|
|
|
def -hidden _c-family-insert-include-guards %{
|
2015-10-27 15:23:04 +01:00
|
|
|
%sh{
|
|
|
|
case "${kak_opt_c_include_guard_style,,}" in
|
|
|
|
ifdef)
|
|
|
|
echo "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>"
|
|
|
|
;;
|
|
|
|
pragma)
|
|
|
|
echo "exec ggi#pragma<space>once<esc>"
|
|
|
|
;;
|
|
|
|
*);;
|
|
|
|
esac
|
|
|
|
}
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-01-31 15:07:41 +01:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
hook global BufNew .*\.(h|hh|hpp|hxx|H) _c-family-insert-include-guards
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2013-05-16 19:23:54 +02:00
|
|
|
decl str-list alt_dirs ".;.."
|
2013-03-22 14:30:09 +01:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
def c-family-alternative-file -docstring "Jump to the alternate file (header/implementation)" %{ %sh{
|
2016-01-10 21:41:46 +01:00
|
|
|
alt_dirs=$(printf %s "${kak_opt_alt_dirs}" | sed -e 's/;/ /g')
|
2015-10-01 20:38:58 +02:00
|
|
|
file=$(basename "${kak_buffile}")
|
|
|
|
dir=$(dirname "${kak_buffile}")
|
2013-03-22 14:30:09 +01:00
|
|
|
|
|
|
|
case ${file} in
|
2014-12-01 14:52:24 +01:00
|
|
|
*.c|*.cc|*.cpp|*.cxx|*.C|*.inl|*.m)
|
2014-11-05 14:43:29 +01:00
|
|
|
for alt_dir in ${alt_dirs}; do
|
|
|
|
for ext in h hh hpp hxx H; do
|
|
|
|
altname="${dir}/${alt_dir}/${file%.*}.${ext}"
|
|
|
|
[ -f ${altname} ] && break
|
|
|
|
done
|
|
|
|
[ -f ${altname} ] && break
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*.h|*.hh|*.hpp|*.hxx|*.H)
|
|
|
|
for alt_dir in ${alt_dirs}; do
|
2014-12-01 14:52:24 +01:00
|
|
|
for ext in c cc cpp cxx C m; do
|
2014-11-05 14:43:29 +01:00
|
|
|
altname="${dir}/${alt_dir}/${file%.*}.${ext}"
|
|
|
|
[ -f ${altname} ] && break
|
|
|
|
done
|
|
|
|
[ -f ${altname} ] && break
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*)
|
2015-04-21 14:21:24 +02:00
|
|
|
echo "echo -color Error 'extension not recognized'"
|
2014-11-05 14:43:29 +01:00
|
|
|
exit
|
|
|
|
;;
|
2012-07-31 14:22:57 +02:00
|
|
|
esac
|
2014-03-06 04:35:38 +01:00
|
|
|
if [ -f ${altname} ]; then
|
2015-04-21 14:21:24 +02:00
|
|
|
echo "edit '${altname}'"
|
2012-09-06 13:38:51 +02:00
|
|
|
else
|
2015-04-21 14:21:24 +02:00
|
|
|
echo "echo -color Error 'alternative file not found'"
|
2012-09-06 13:38:51 +02:00
|
|
|
fi
|
|
|
|
}}
|