?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
#compdef vim-addons
local state line cmds ret=1
typeset -A opt_args
_arguments -C \
{-q,--query}'[be quiet and make the output more parseable]' \
{-r,--registry-dir}'[set the registry directory]' \
{-s,--source-dir}'[set addon source directory]' \
{-t,--target-dir}'[set addon target directory]' \
{-v,--verbose}'[increase verbosity]' \
{-y,--system-dir}'[set system-wide target directory]' \
{-h,--help}'[help]' \
{-w,--system-wide}'[set target directory to the system-wide one (overrides -t)]' \
'1: :->cmds' \
'*: :->args' && ret=0
case $state in
cmds)
cmds=(
'install:install the specified addon'
'remove:remove the specified addon'
'list:list available addons in registry'
'status:list the status of addons'
'disable:disable the specified addons'
'amend:under the effects of the previous disable'
'files:list the files composing the specified addon'
'show:display detailed information about the specified addon'
)
_describe -t commands 'vim-addons command' cmds && ret=0
;;
args)
case $line[1] in
install)
_wanted addon expl 'addon' compadd $(command vim-addons -q | awk '$2 == "removed" { print $1 }') && ret=0
;;
amend)
_wanted addon expl 'addon' compadd $(command vim-addons -q | awk '$2 == "disabled" { print $1 }') && ret=0
;;
remove)
_wanted addon expl 'addon' compadd $(command vim-addons -q | awk '$2 ~ /disabled|installed/ { print $1 }') && ret=0
;;
files|status|disable|show)
_wanted addon expl 'addon' compadd $(command vim-addons list) && ret=0
;;
esac
;;
esac
return ret