mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 14:43:55 +08:00
Basic umask completion, and minor change to ulimit completion
This commit is contained in:
parent
9cfb1394bf
commit
46db332be5
|
@ -2,7 +2,7 @@
|
|||
complete -c ulimit -s S -l soft -d "Set or get soft limit"
|
||||
complete -c ulimit -s H -l hard -d "Set or get hard limit"
|
||||
|
||||
complete -c ulimit -s a -l all -d "Set or get all current limits"
|
||||
complete -c ulimit -s a -l all -d "Get all current limits"
|
||||
complete -c ulimit -s c -l core-size -d "Maximum size of core files created"
|
||||
complete -c ulimit -s d -l data-size -d "Maximum size of a process's data segment"
|
||||
complete -c ulimit -s f -l file-size -d "Maximum size of files created by the shell"
|
||||
|
|
3
share/completions/umask.fish
Normal file
3
share/completions/umask.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
complete -c umask -s S -l symbolic -x -d 'Gets the umask in symbolic format instead of octal'
|
||||
complete -c umask -s p -l as-command -x -d 'Gets the umask in a format that can be used as a command'
|
||||
complete -c umask -s h -l help -x -d 'Display help and exit'
|
Loading…
Reference in New Issue
Block a user