Return early if token is empty in whatis_current_token

This commit is contained in:
Gokul Soumya 2020-07-12 00:49:37 +05:30 committed by Johannes Altmanninger
parent 5f782cef7d
commit ec0c3f349d

View File

@ -3,39 +3,40 @@
function __fish_whatis_current_token -d "Show man page entries or function description related to the token under the cursor" function __fish_whatis_current_token -d "Show man page entries or function description related to the token under the cursor"
set -l token (commandline -pt) set -l token (commandline -pt)
if test -n "$token" test -n "$token"
printf "\n" or return
set -l desc "$token: nothing appropriate."
set -l tokentype (type --type $token 2>/dev/null) printf "\n"
set -l desc "$token: nothing appropriate."
switch "$tokentype" set -l tokentype (type --type $token 2>/dev/null)
case function
set -l funcinfo (functions $token --details --verbose)
test $funcinfo[5] != n/a switch "$tokentype"
and set desc "$token - $funcinfo[5]" case function
set -l funcinfo (functions $token --details --verbose)
case builtin test $funcinfo[5] != n/a
set desc (__fish_print_help $token | awk "/./ {print; exit}") and set desc "$token - $funcinfo[5]"
case file case builtin
set -l tmpdesc (whatis $token 2>/dev/null) set desc (__fish_print_help $token | awk "/./ {print; exit}")
and set desc $tmpdesc
end
printf "%s\n" $desc case file
set -l tmpdesc (whatis $token 2>/dev/null)
set -l line_count (count (fish_prompt)) and set desc $tmpdesc
# Ensure line_count is greater than one to accomodate different
# versions of the `seq` command, some of which print the sequence in
# reverse order when the second argument is smaller than the first
if test $line_count -gt 1
for x in (seq 2 $line_count)
printf "\n"
end
end
commandline -f repaint
end end
printf "%s\n" $desc
set -l line_count (count (fish_prompt))
# Ensure line_count is greater than one to accomodate different
# versions of the `seq` command, some of which print the sequence in
# reverse order when the second argument is smaller than the first
if test $line_count -gt 1
for x in (seq 2 $line_count)
printf "\n"
end
end
commandline -f repaint
end end