mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Minor tweaks
darcs-hash:20050920235718-ac50b-a6e0fc1960a8172415fb8a5ebcce81f921d87b10.gz
This commit is contained in:
parent
e3ce01d685
commit
4c9903cd66
2 changed files with 14 additions and 10 deletions
|
@ -16,7 +16,7 @@ is entered. The function
|
|||
function hi
|
||||
echo hello
|
||||
end
|
||||
BB</pre>
|
||||
</pre>
|
||||
|
||||
will write <tt>hello</tt> whenever the user enters \c hi.
|
||||
|
||||
|
@ -30,7 +30,7 @@ are inserted into the environment variable <a href="index.html#variables-arrays"
|
|||
</pre>
|
||||
|
||||
will run the \c ls command, using the \c -l option, while passing on any additional files and switches to \c ls.
|
||||
A
|
||||
|
||||
<pre>
|
||||
function mkdir -d "Create a directory and set CWD"
|
||||
mkdir $argv
|
||||
|
|
|
@ -658,6 +658,9 @@ function type -d "Print the type of a command"
|
|||
return $status
|
||||
end
|
||||
|
||||
|
||||
if status --is-interactive
|
||||
|
||||
function prevd-or-backward-word --key-binding
|
||||
if test -z (commandline)
|
||||
prevd
|
||||
|
@ -681,7 +684,7 @@ end
|
|||
# fish-users.
|
||||
#
|
||||
|
||||
function delete-or-exit --key-binding -d "Exit the shell if the commandline is empty, delete a character otherwise"
|
||||
function delete-or-exit --key-binding
|
||||
if test (commandline)
|
||||
commandline -f delete-char
|
||||
else
|
||||
|
@ -689,3 +692,4 @@ function delete-or-exit --key-binding -d "Exit the shell if the commandline is e
|
|||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue