14 lines
331 B
Plaintext
14 lines
331 B
Plaintext
module completions {
|
|
|
|
# return working directory name
|
|
export extern pwd [
|
|
--logical(-L) # use PWD from environment, even if it contains symlinks
|
|
--physical(-P) # avoid all symlinks
|
|
--help(-h) # Print help
|
|
--version(-V) # Print version
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|