2015-09-22 00:36:20 +02:00
|
|
|
hook global BufCreate .*\.(cc|cpp|cxx|C|hh|hpp|hxx|H)$ %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype cpp
|
2016-12-06 14:40:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=c\+\+ %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype cpp
|
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$ %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype c
|
2015-09-22 00:36:20 +02:00
|
|
|
}
|
|
|
|
|
2015-09-22 19:50:05 +02:00
|
|
|
hook global BufCreate .*\.h$ %{
|
|
|
|
try %{
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft %{%s\b::\b|\btemplate\h*<lt>|\bclass\h+\w+|\b(typename|namespace)\b|\b(public|private|protected)\h*:<ret>}
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype cpp
|
2015-09-22 19:50:05 +02:00
|
|
|
} catch %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype c
|
2015-09-22 19:50:05 +02:00
|
|
|
}
|
2013-11-12 21:38:00 +01:00
|
|
|
}
|
2012-08-07 13:51:51 +02:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
hook global BufCreate .*\.m %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype objc
|
2014-12-02 17:15:53 +01:00
|
|
|
}
|
|
|
|
|
2017-11-03 09:09:45 +01:00
|
|
|
define-command -hidden c-family-trim-autoindent %[ evaluate-commands -draft -itersel %[
|
2016-11-14 22:11:20 +01:00
|
|
|
# remove the line if it's empty when leaving the insert mode
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys <a-x> 1s^(\h+)$<ret> d ]
|
2016-07-12 16:23:55 +02:00
|
|
|
] ]
|
|
|
|
|
2017-11-03 09:09:45 +01:00
|
|
|
define-command -hidden c-family-indent-on-newline %< evaluate-commands -draft -itersel %<
|
|
|
|
execute-keys \;
|
2017-05-20 11:49:56 +02:00
|
|
|
try %<
|
2016-11-14 22:11:20 +01:00
|
|
|
# if previous line closed a paren, copy indent of the opening paren line
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft k<a-x> 1s(\))(\h+\w+)*\h*(\;\h*)?$<ret> m<a-\;>J s\A|.\z<ret> 1<a-&>
|
2017-05-20 11:49:56 +02:00
|
|
|
> catch %<
|
2016-11-14 22:11:20 +01:00
|
|
|
# else indent new lines with the same level as the previous one
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft K <a-&>
|
2017-05-20 11:49:56 +02:00
|
|
|
>
|
2016-11-14 22:11:20 +01:00
|
|
|
# remove previous empty lines resulting from the automatic indent
|
2017-11-03 09:09:45 +01:00
|
|
|
try %< execute-keys -draft k <a-x> <a-k>^\h+$<ret> Hd >
|
2016-11-14 22:11:20 +01:00
|
|
|
# indent after an opening brace
|
2017-11-03 09:09:45 +01:00
|
|
|
try %< execute-keys -draft k <a-x> s\{\h*$<ret> j <a-gt> >
|
2016-11-14 22:11:20 +01:00
|
|
|
# indent after a label
|
2017-11-03 09:09:45 +01:00
|
|
|
try %< execute-keys -draft k <a-x> s[a-zA-Z0-9_-]+:\h*$<ret> j <a-gt> >
|
2016-11-14 22:11:20 +01:00
|
|
|
# indent after a statement not followed by an opening brace
|
2017-11-03 09:09:45 +01:00
|
|
|
try %< execute-keys -draft k <a-x> <a-k>\b(if|else|for|while)\h*\(.+?\)\h*$<ret> j <a-gt> >
|
2017-05-21 23:31:05 +02:00
|
|
|
# align to the opening parenthesis or opening brace (whichever is first)
|
2017-05-20 11:49:56 +02:00
|
|
|
# on a previous line if its followed by text on the same line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %< evaluate-commands -draft %<
|
2017-05-21 23:31:05 +02:00
|
|
|
# Go to opening parenthesis and opening brace, then select the most nested one
|
2017-11-03 09:09:45 +01:00
|
|
|
try %< try %< execute-keys [bZ<a-\;>[B<a-z><gt> > catch %< execute-keys [B > >
|
2017-05-21 23:31:05 +02:00
|
|
|
# Validate selection and get first and last char
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys <a-k>\A[{(](\h*\S+)+\n<ret> <a-:><a-\;>L s\A|.\z<ret>
|
2017-05-21 23:31:05 +02:00
|
|
|
# Remove eventual indent from new line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %< execute-keys -draft <space> <a-h> s\h+<ret> d >
|
2017-05-21 23:31:05 +02:00
|
|
|
# Now align that new line with the opening parenthesis/brace
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys &
|
2017-05-21 08:08:20 +02:00
|
|
|
> >
|
2017-05-20 11:49:56 +02:00
|
|
|
> >
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -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
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft -itersel h<a-F>)M <a-k> \A\(.*\)\h*\n\h*\{\z <ret> s \A|.\z <ret> 1<a-&> ]
|
2013-12-03 20:43:33 +01:00
|
|
|
]
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -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
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -itersel -draft <a-h><a-:><a-k>^\h+\}$<ret>hms\A|.\z<ret>1<a-&> ]
|
2016-07-12 16:23:55 +02:00
|
|
|
]
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden c-family-insert-on-closing-curly-brace %[
|
2016-07-12 16:23:55 +02:00
|
|
|
# add a semicolon after a closing brace if part of a class, union or struct definition
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -itersel -draft hm<a-x>B<a-x><a-k>\A\h*(class|struct|union|enum)<ret> a\;<esc> ]
|
2016-07-12 16:23:55 +02:00
|
|
|
]
|
|
|
|
|
2017-11-03 09:09:45 +01:00
|
|
|
define-command -hidden c-family-insert-on-newline %[ evaluate-commands -draft %[
|
|
|
|
execute-keys \;
|
2016-07-12 16:23:55 +02:00
|
|
|
try %[
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft %[
|
2016-11-14 22:11:20 +01:00
|
|
|
# copy the commenting prefix
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -save-regs '' k <a-x>1s^\h*(//+\h*)<ret> y
|
2016-07-12 16:23:55 +02:00
|
|
|
try %[
|
2016-11-14 22:11:20 +01:00
|
|
|
# if the previous comment isn't empty, create a new one
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys <a-x><a-K>^\h*//+\h*$<ret> j<a-x>s^\h*<ret>P
|
2016-07-12 16:23:55 +02:00
|
|
|
] catch %[
|
2016-11-14 22:11:20 +01:00
|
|
|
# if there is no text in the previous comment, remove it completely
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys d
|
2016-07-12 16:23:55 +02:00
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
try %[
|
2016-11-14 22:11:20 +01:00
|
|
|
# if the previous line isn't within a comment scope, break
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft k<a-x> <a-k>^(\h*/\*|\h+\*(?!/))<ret>
|
2016-11-14 22:11:20 +01:00
|
|
|
|
|
|
|
# find comment opening, validate it was not closed, and check its using star prefixes
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft <a-?>/\*<ret><a-H> <a-K>\*/<ret> <a-k>\A\h*/\*([^\n]*\n\h*\*)*[^\n]*\n\h*.\z<ret>
|
2016-08-05 10:37:25 +02:00
|
|
|
|
|
|
|
try %[
|
2016-11-14 22:11:20 +01:00
|
|
|
# if the previous line is opening the comment, insert star preceeded by space
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft k<a-x><a-k>^\h*/\*<ret>
|
|
|
|
execute-keys -draft i<space>*<space><esc>
|
2016-08-05 10:37:25 +02:00
|
|
|
] catch %[
|
2016-11-14 22:11:20 +01:00
|
|
|
try %[
|
|
|
|
# if the next line is a comment line insert a star
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft j<a-x><a-k>^\h+\*<ret>
|
|
|
|
execute-keys -draft i*<space><esc>
|
2016-08-05 10:37:25 +02:00
|
|
|
] catch %[
|
2016-11-14 22:11:20 +01:00
|
|
|
try %[
|
|
|
|
# if the previous line is an empty comment line, close the comment scope
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft k<a-x><a-k>^\h+\*\h+$<ret> <a-x>1s\*(\h*)<ret>c/<esc>
|
2016-11-14 22:11:20 +01:00
|
|
|
] catch %[
|
|
|
|
# if the previous line is a non-empty comment line, add a star
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys -draft i*<space><esc>
|
2016-11-14 22:11:20 +01:00
|
|
|
]
|
2016-08-05 10:37:25 +02:00
|
|
|
]
|
2016-07-12 16:23:55 +02:00
|
|
|
]
|
2016-08-05 10:37:25 +02:00
|
|
|
|
2016-11-14 22:11:20 +01:00
|
|
|
# trim trailing whitespace on the previous line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft 1s(\h+)$<ret>d ]
|
2016-11-14 22:11:20 +01:00
|
|
|
# align the new star with the previous one
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys J<a-x>1s^[^*]*(\*)<ret>&
|
2016-07-12 16:23:55 +02:00
|
|
|
]
|
2016-08-05 10:37:25 +02: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
|
|
|
|
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n '
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ regions -default code -match-capture FT \
|
2017-05-25 07:51:39 +02:00
|
|
|
string %{MAYBEAT(?<!QUOTE)"} %{(?<!\\)(?:\\\\)*"} "" \
|
|
|
|
string %{R"([^(]*)\(} %{\)([^)]*)"} "" \
|
2014-12-01 14:52:24 +01:00
|
|
|
comment /\* \*/ "" \
|
|
|
|
comment // $ "" \
|
2017-05-25 07:51:39 +02:00
|
|
|
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
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/FT/string fill string
|
|
|
|
add-highlighter shared/FT/comment fill comment
|
|
|
|
add-highlighter shared/FT/disabled fill rgb:666666
|
|
|
|
add-highlighter shared/FT/macro fill meta
|
|
|
|
add-highlighter shared/FT/macro regex ^\h*#include\h+(\S*) 1:module
|
2017-02-03 14:35:45 +01:00
|
|
|
' | 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
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/c/code regex %{\b-?(0x[0-9a-fA-F]+|\d+)[fdiu]?|'((\\.)?|[^'\\])'} 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2017-11-09 03:25:03 +01:00
|
|
|
keywords="asm break case continue default do else for goto if return
|
|
|
|
sizeof switch while"
|
|
|
|
attributes="auto const enum extern inline register restrict static struct
|
|
|
|
typedef union volatile"
|
|
|
|
types="char double float int long short signed size_t unsigned void"
|
2016-11-11 14:07:45 +01:00
|
|
|
values="NULL"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
2017-11-09 03:25:03 +01:00
|
|
|
join() { printf "%s" "$1" | tr -s ' \n' "$2"; }
|
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
# Add the language's grammar to the static completion list
|
2017-11-09 03:25:03 +01:00
|
|
|
printf '%s\n' "hook global WinSetOption filetype=c %{
|
|
|
|
set-option window static_words '$(join "${keywords}:${attributes}:${types}:${values}" ':')'
|
|
|
|
}"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2017-11-09 03:25:03 +01:00
|
|
|
add-highlighter shared/c/code regex \b($(join "${keywords}" '|'))\b 0:keyword
|
|
|
|
add-highlighter shared/c/code regex \b($(join "${attributes}" '|'))\b 0:attribute
|
|
|
|
add-highlighter shared/c/code regex \b($(join "${types}" '|'))\b 0:type
|
|
|
|
add-highlighter shared/c/code regex \b($(join "${values}" '|'))\b 0:value
|
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
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/cpp/code regex %{\b-?(0x[0-9a-fA-F]+|\d+)[fdiu]?|'((\\.)?|[^'\\])'} 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
%sh{
|
|
|
|
# Grammar
|
2017-11-09 03:25:03 +01:00
|
|
|
keywords="alignas alignof and and_eq asm bitand bitor break case catch
|
|
|
|
compl const_cast continue decltype default delete do dynamic_cast
|
|
|
|
else explicit for goto if new not not_eq operator or or_eq
|
|
|
|
reinterpret_cast return sizeof static_assert static_cast switch
|
|
|
|
throw try typeid using while xor xor_eq"
|
|
|
|
attributes="auto class const constexpr enum extern final friend inline
|
|
|
|
mutable namespace noexcept override private protected public
|
|
|
|
register static struct template thread_local typedef typename
|
|
|
|
union virtual volatile"
|
|
|
|
types="bool byte char char16_t char32_t double float int long max_align_t
|
|
|
|
nullptr_t ptrdiff_t short signed size_t unsigned void wchar_t"
|
|
|
|
values="NULL false nullptr this true"
|
|
|
|
|
|
|
|
join() { printf "%s" "$1" | tr -s ' \n' "$2"; }
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=cpp %{
|
2017-11-09 03:25:03 +01:00
|
|
|
set-option window static_words '$(join "${keywords}:${attributes}:${types}:${values}" ':')'
|
|
|
|
}"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2017-11-09 03:25:03 +01:00
|
|
|
add-highlighter shared/cpp/code regex \b($(join "${keywords}" '|'))\b 0:keyword
|
|
|
|
add-highlighter shared/cpp/code regex \b($(join "${attributes}" '|'))\b 0:attribute
|
|
|
|
add-highlighter shared/cpp/code regex \b($(join "${types}" '|'))\b 0:type
|
|
|
|
add-highlighter shared/cpp/code regex \b($(join "${values}" '|'))\b 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
2013-12-03 23:15:59 +01:00
|
|
|
|
2016-11-11 14:07:45 +01:00
|
|
|
# c and c++ compiler macros
|
|
|
|
%sh{
|
2016-11-28 00:38:47 +01:00
|
|
|
builtin_macros="__cplusplus|__STDC_HOSTED__|__FILE__|__LINE__|__DATE__|__TIME__|__STDCPP_DEFAULT_NEW_ALIGNMENT__"
|
2016-11-11 14:07:45 +01:00
|
|
|
|
|
|
|
printf %s "
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/c/code regex \b(${builtin_macros})\b 0:builtin
|
|
|
|
add-highlighter shared/cpp/code regex \b(${builtin_macros})\b 0:builtin
|
2016-11-11 14:07:45 +01:00
|
|
|
"
|
|
|
|
}
|
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
# objective-c specific
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/objc/code regex %{\b-?\d+[fdiu]?|'((\\.)?|[^'\\])'} 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
%sh{
|
|
|
|
# Grammar
|
2017-11-09 03:25:03 +01:00
|
|
|
keywords="break case continue default do else for goto if return switch
|
|
|
|
while"
|
|
|
|
attributes="IBAction IBOutlet __block assign auto const copy enum extern
|
|
|
|
inline nonatomic readonly retain static strong struct typedef
|
|
|
|
union volatile weak"
|
|
|
|
types="BOOL CGFloat NSInteger NSString NSUInteger bool char float
|
|
|
|
instancetype int long short signed size_t unsigned void"
|
|
|
|
values="FALSE NO NULL TRUE YES id nil self super"
|
|
|
|
decorators="autoreleasepool catch class end implementation interface
|
|
|
|
property protocol selector synchronized synthesize try"
|
|
|
|
|
|
|
|
join() { printf "%s" "$1" | tr -s ' \n' "$2"; }
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=objc %{
|
2017-11-09 03:25:03 +01:00
|
|
|
set-option window static_words '$(join "${keywords}:${attributes}:${types}:${values}:${decorators}" ':')'
|
|
|
|
}"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2017-11-09 03:25:03 +01:00
|
|
|
add-highlighter shared/objc/code regex \b($(join "${keywords}" '|'))\b 0:keyword
|
|
|
|
add-highlighter shared/objc/code regex \b($(join "${attributes}" '|'))\b 0:attribute
|
|
|
|
add-highlighter shared/objc/code regex \b($(join "${types}" '|'))\b 0:type
|
|
|
|
add-highlighter shared/objc/code regex \b($(join "${values}" '|'))\b 0:value
|
|
|
|
add-highlighter shared/objc/code regex @($(join "${decorators}" '|'))\b 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
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window c-family-hooks
|
|
|
|
remove-hooks window c-family-indent
|
2017-06-07 13:44:00 +02:00
|
|
|
remove-hooks window c-family-insert
|
2016-03-03 20:28:58 +01:00
|
|
|
}
|
|
|
|
|
2016-12-09 14:51:44 +01:00
|
|
|
hook -group c-family-indent window InsertEnd .* c-family-trim-autoindent
|
2017-01-11 14:56:48 +01:00
|
|
|
hook -group c-family-insert window InsertChar \n c-family-insert-on-newline
|
2016-12-09 14:51:44 +01:00
|
|
|
hook -group c-family-indent window InsertChar \n c-family-indent-on-newline
|
|
|
|
hook -group c-family-indent window InsertChar \{ c-family-indent-on-opening-curly-brace
|
|
|
|
hook -group c-family-indent window InsertChar \} c-family-indent-on-closing-curly-brace
|
|
|
|
hook -group c-family-insert window InsertChar \} c-family-insert-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
|
2013-11-14 01:11:27 +01:00
|
|
|
]
|
2012-01-23 15:00:33 +01:00
|
|
|
|
2017-10-02 14:59:22 +02:00
|
|
|
hook global WinSetOption filetype=(?!c)(?!cpp)(?!objc).* %[
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window c-family-hooks
|
|
|
|
remove-hooks window c-family-indent
|
|
|
|
remove-hooks window c-family-insert
|
2015-10-10 15:25:46 +02:00
|
|
|
|
2014-12-01 14:52:24 +01:00
|
|
|
unalias window alt c-family-alternative-file
|
|
|
|
]
|
2014-10-30 00:23:36 +01:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group c-highlight global WinSetOption filetype=c %[ add-highlighter window ref c ]
|
|
|
|
hook -group c-highlight global WinSetOption filetype=(?!c).* %[ remove-highlighter window/c ]
|
2015-09-22 00:36:20 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group cpp-highlight global WinSetOption filetype=cpp %[ add-highlighter window ref cpp ]
|
|
|
|
hook -group cpp-highlight global WinSetOption filetype=(?!cpp).* %[ remove-highlighter window/cpp ]
|
2014-12-01 14:52:24 +01:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group objc-highlight global WinSetOption filetype=objc %[ add-highlighter window ref objc ]
|
|
|
|
hook -group objc-highlight global WinSetOption filetype=(?!objc).* %[ remove-highlighter window/objc ]
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
declare-option -docstring %{control the type of include guard to be inserted in empty headers
|
2017-05-16 13:35:43 +02:00
|
|
|
Can be one of the following:
|
|
|
|
ifdef: old style ifndef/define guard
|
|
|
|
pragma: newer type of guard using "pragma once"} \
|
|
|
|
str c_include_guard_style "ifdef"
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden c-family-insert-include-guards %{
|
2015-10-27 15:23:04 +01:00
|
|
|
%sh{
|
2016-04-23 07:47:01 +02:00
|
|
|
case "${kak_opt_c_include_guard_style}" in
|
2015-10-27 15:23:04 +01:00
|
|
|
ifdef)
|
2017-11-03 09:09:45 +01:00
|
|
|
echo 'execute-keys 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>'
|
2015-10-27 15:23:04 +01:00
|
|
|
;;
|
|
|
|
pragma)
|
2017-11-03 09:09:45 +01:00
|
|
|
echo 'execute-keys ggi#pragma<space>once<esc>'
|
2015-10-27 15:23:04 +01:00
|
|
|
;;
|
|
|
|
*);;
|
|
|
|
esac
|
|
|
|
}
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-01-31 15:07:41 +01:00
|
|
|
|
2017-06-29 12:29:48 +02:00
|
|
|
hook -group c-family-insert global BufNewFile .*\.(h|hh|hpp|hxx|H) c-family-insert-include-guards
|
2013-11-13 14:11:22 +01:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
declare-option -docstring "colon separated list of path in which header files will be looked for" \
|
2017-05-21 08:09:37 +02:00
|
|
|
str-list alt_dirs ".:.."
|
2013-03-22 14:30:09 +01:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command c-family-alternative-file -docstring "Jump to the alternate file (header/implementation)" %{ %sh{
|
2017-05-16 14:34:29 +02:00
|
|
|
alt_dirs=$(printf %s\\n "${kak_opt_alt_dirs}" | tr ':' '\n')
|
|
|
|
file="${kak_buffile##*/}"
|
|
|
|
file_noext="${file%.*}"
|
2015-10-01 20:38:58 +02:00
|
|
|
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
|
2017-05-16 14:34:29 +02:00
|
|
|
altname="${dir}/${alt_dir}/${file_noext}.${ext}"
|
|
|
|
if [ -f ${altname} ]; then
|
|
|
|
printf 'edit %%{%s}\n' "${altname}"
|
|
|
|
exit
|
|
|
|
fi
|
2014-11-05 14:43:29 +01:00
|
|
|
done
|
|
|
|
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
|
2017-05-16 14:34:29 +02:00
|
|
|
altname="${dir}/${alt_dir}/${file_noext}.${ext}"
|
|
|
|
if [ -f ${altname} ]; then
|
|
|
|
printf 'edit %%{%s}\n' "${altname}"
|
|
|
|
exit
|
|
|
|
fi
|
2014-11-05 14:43:29 +01:00
|
|
|
done
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*)
|
2017-07-19 17:18:52 +02:00
|
|
|
echo "echo -markup '{Error}extension not recognized'"
|
2014-11-05 14:43:29 +01:00
|
|
|
exit
|
|
|
|
;;
|
2012-07-31 14:22:57 +02:00
|
|
|
esac
|
2017-07-19 17:18:52 +02:00
|
|
|
echo "echo -markup '{Error}alternative file not found'"
|
2012-09-06 13:38:51 +02:00
|
|
|
}}
|