Prevent the "funcinfo" command from printing errors
Add a try{} scope around the exec statement that raises errors when no selection was possible/made.
This commit is contained in:
parent
38bb9fc3a8
commit
8beb1da552
14
rc/ctags.kak
14
rc/ctags.kak
|
@ -36,12 +36,14 @@ def tag-complete -docstring "Insert completion candidates for the current select
|
||||||
|
|
||||||
def ctags-funcinfo -docstring "Display ctags information about a selected function" %{
|
def ctags-funcinfo -docstring "Display ctags information about a selected function" %{
|
||||||
eval -draft %{
|
eval -draft %{
|
||||||
exec '[(;B<a-k>[a-zA-Z_]+\(<ret><a-;>'
|
try %{
|
||||||
%sh{
|
exec '[(;B<a-k>[a-zA-Z_]+\(<ret><a-;>'
|
||||||
sigs=$(readtags -e ${kak_selection%(} | grep kind:f | sed -re 's/^(\S+).*((class|struct|namespace):(\S+))?.*signature:(.*)$/\5 [\4::\1]/')
|
%sh{
|
||||||
if [ -n "$sigs" ]; then
|
sigs=$(readtags -e ${kak_selection%(} | grep kind:f | sed -re 's/^(\S+).*((class|struct|namespace):(\S+))?.*signature:(.*)$/\5 [\4::\1]/')
|
||||||
echo "eval -client ${kak_client} %{info -anchor $kak_cursor_line.$kak_cursor_column -placement above '$sigs'}"
|
if [ -n "$sigs" ]; then
|
||||||
fi
|
echo "eval -client ${kak_client} %{info -anchor $kak_cursor_line.$kak_cursor_column -placement above '$sigs'}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user