shitbox/pkg/usr/share/nu/completions/pwd.nu

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 *