|
Server IP : 161.35.85.9 / Your IP : 216.73.217.138 Web Server : nginx/1.30.4 System : Linux cheapdeb-ams3 7.1.13+deb14-amd64 #1 SMP PREEMPT_DYNAMIC Debian 7.1.13-1 (2026-09-03) x86_64 User : root ( 0) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/share/fish/functions/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
# localization: tier1
# This function is typically bound to Alt-W, it is used to list man page entries
# for the command 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)
test -n "$token"
or return
set -l desc "$token: nothing appropriate."
set -l tokentype (type --type $token 2>/dev/null)
switch "$tokentype"
case function
set -l funcinfo (functions $token --details --verbose)
test $funcinfo[5] != n/a
and set desc "$token - $funcinfo[5]"
case builtin
# Since man pages can be localized, we can't look for "NAME".
set desc (__fish_print_help $token | sed -n 4p | string trim)
case file
set -l tmpdesc (whatis $token 2>/dev/null)
and set desc $tmpdesc
end
__fish_echo string join \n -- $desc
end