Modified alias.fish to show help message when executed with 0 arguments

This commit is contained in:
Siteshwar Vashisht 2012-06-13 00:29:05 +05:30
parent 25f9105a97
commit 9b781c4c06

View file

@ -13,6 +13,9 @@ function alias --description "Legacy function for creating shellscript functions
set -l body
switch (count $argv)
case 0
echo "Fish implements aliases using functions. Use 'functions' builtin to see list of functions and 'functions function_name' to see function definition, type 'help alias' for more information."
return 1
case 1
set -l tmp (echo $argv|sed -e "s/\([^=]\)=/\1\n/")
set name $tmp[1]