diff --git a/completions/bash/mutn b/completions/bash/mutn index e57f60a..0e04b0d 100644 --- a/completions/bash/mutn +++ b/completions/bash/mutn @@ -28,7 +28,7 @@ _mutnCompletions() { while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "password note folder" -- "$cur" ) ;; copy ) - while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "password username totp url note" -- "$cur" ) + while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "password username totp url note menu" -- "$cur" ) ;; edit ) while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "password username totp url note rename" -- "$cur" ) diff --git a/completions/powershell7plus/mutn.ps1 b/completions/powershell7plus/mutn.ps1 index bdd5113..5f6d2fd 100644 --- a/completions/powershell7plus/mutn.ps1 +++ b/completions/powershell7plus/mutn.ps1 @@ -86,7 +86,7 @@ function cliMUTN-optionCompleter { $possibleValues = @{ add = @('password', 'note', 'folder') - copy = @('password', 'username', 'totp', 'url', 'note') + copy = @('password', 'username', 'totp', 'url', 'note', 'menu') edit = @('password', 'username', 'totp', 'url', 'note', 'rename') gen = @('update') } diff --git a/completions/zsh/_mutn b/completions/zsh/_mutn index 50ec02a..68b99d0 100644 --- a/completions/zsh/_mutn +++ b/completions/zsh/_mutn @@ -20,7 +20,7 @@ case ${words[-2]} in compadd {password,note,folder} ;; copy ) - compadd {password,username,totp,url,note} + compadd {password,username,totp,url,note,menu} ;; edit ) compadd {password,username,totp,url,note,rename}