14 lines
266 B
Plaintext
14 lines
266 B
Plaintext
|
module completions {
|
||
|
|
||
|
# return resolved physical path
|
||
|
export extern realpath [
|
||
|
--quiet(-q) # ignore warnings
|
||
|
...path: string
|
||
|
--help(-h) # Print help
|
||
|
--version(-V) # Print version
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
use completions *
|