2016-11-03 14:57:55 +03:00
|
|
|
decl str docsclient
|
|
|
|
|
2016-02-02 22:15:12 +03:00
|
|
|
def -hidden -params 1..2 _doc-open %{
|
|
|
|
%sh{
|
|
|
|
manout=$(mktemp /tmp/kak-man-XXXXXX)
|
|
|
|
|
2016-11-03 14:57:55 +03:00
|
|
|
# Those options are handled by the `man-db` implementation
|
|
|
|
export MAN_KEEP_FORMATTING=y
|
|
|
|
export MANWIDTH=${kak_window_width}
|
2016-02-02 22:15:12 +03:00
|
|
|
|
2016-12-14 04:02:53 +03:00
|
|
|
if man "$1" > "${manout}"; then
|
2016-12-20 10:54:37 +03:00
|
|
|
sed -ie $(printf 's/.\x8//g') "${manout}"
|
2016-02-02 22:15:12 +03:00
|
|
|
|
2016-04-23 08:47:01 +03:00
|
|
|
printf %s\\n "
|
2016-02-02 22:15:12 +03:00
|
|
|
edit! -scratch '*doc*'
|
2016-11-03 14:57:55 +03:00
|
|
|
exec |cat<space>${manout}<ret>gg
|
|
|
|
nop %sh{rm ${manout}}
|
2016-02-02 22:15:12 +03:00
|
|
|
set buffer filetype man
|
|
|
|
"
|
|
|
|
|
|
|
|
if [ $# -gt 1 ]; then
|
2016-04-23 08:47:01 +03:00
|
|
|
needle=$(printf %s\\n "$2" | sed 's,<,<lt>,g')
|
|
|
|
printf %s\\n "try %{ exec '%<a-s><a-k>(?i)^\h+[^\n]*?\Q${needle}\E<ret>\'' } catch %{ exec <space>gg }"
|
2016-02-02 22:15:12 +03:00
|
|
|
fi
|
|
|
|
else
|
2016-04-23 08:47:01 +03:00
|
|
|
printf %s\\n "echo -color Error %{doc '$@' failed: see *debug* buffer for details}"
|
2016-11-03 14:57:55 +03:00
|
|
|
rm ${manout}
|
2016-02-02 22:15:12 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def -params 1..2 \
|
2016-08-30 17:23:42 +03:00
|
|
|
-shell-candidates %{
|
2016-12-14 03:59:19 +03:00
|
|
|
find "${kak_runtime}/../doc/kak/manpages/" -type f -iname "*.gz" | while read l; do
|
|
|
|
basename "${l%.*}"
|
2016-02-03 22:09:17 +03:00
|
|
|
done
|
2016-02-02 22:15:12 +03:00
|
|
|
} \
|
2016-10-11 10:03:41 +03:00
|
|
|
doc -docstring %{doc <topic> [<keyword>]: open a buffer containing documentation about a given topic
|
|
|
|
An optional keyword argument can be passed to the function, which will be automatically selected in the documentation} %{
|
2016-02-02 22:15:12 +03:00
|
|
|
%sh{
|
2016-02-04 02:46:01 +03:00
|
|
|
readonly PATH_DOC="${kak_runtime}/../doc/kak/manpages/${1}.gz"
|
2016-02-02 22:15:12 +03:00
|
|
|
|
|
|
|
shift
|
|
|
|
if [ ! -f "${PATH_DOC}" ]; then
|
2016-04-23 08:47:01 +03:00
|
|
|
printf %s\\n "echo -color Error No such doc file: ${PATH_DOC}"
|
2016-02-02 22:15:12 +03:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2016-04-23 08:47:01 +03:00
|
|
|
printf %s\\n "eval -try-client %opt{docsclient} _doc-open ${PATH_DOC} $@"
|
2016-02-02 22:15:12 +03:00
|
|
|
}
|
|
|
|
}
|
2016-12-13 21:26:19 +03:00
|
|
|
|
|
|
|
alias global help doc
|