Changed . token to _dot

This change allows the dotfiles to work with chezmoi (e.g: on windows)
and improves grepability with neovim/telescope
This commit is contained in:
2024-11-07 13:52:17 +00:00
parent 83b02bd753
commit 896af887ca
2351 changed files with 0 additions and 0 deletions
@@ -0,0 +1,17 @@
use ../../nu-complete "nu-complete pass-files"
# Interactively update a set of passwords.
export extern "pass update" [
...paths: string@"nu-complete pass-files" # The passwords and/or directories to update.
--clip(-c) # Write the password to the clipboard.
--no-symbols(-n) # Do not use any non-alphanumeric characters.
--length(-l): int = 25 # Provide a password length.
--provide(-p) # Let the user specify a password by hand.
--multiline(-m) # Update multiline passwords. If not set, only the first line of a password file is updated.
--include(-i): string # Only update the passwords that match a regex.
--exclude(-e): string # Do not update the passwords that match a regex.
--edit(-E) # Edit the passwords using the default editor.
--force(-f) # Force update.
--version(-V) # Show version information.
--help(-h) # Print a help message.
]