diff --git a/share/completions/cls.fish b/share/completions/cls.fish deleted file mode 100644 index 2e72c5130..000000000 --- a/share/completions/cls.fish +++ /dev/null @@ -1 +0,0 @@ -complete --command cls --no-files --arguments '/?\t"Show help"' \ No newline at end of file diff --git a/share/completions/copy.fish b/share/completions/copy.fish deleted file mode 100644 index 7e5fcc3cd..000000000 --- a/share/completions/copy.fish +++ /dev/null @@ -1,19 +0,0 @@ -function __copy_generate_args --description 'Function to generate args' - if not __fish_seen_argument --windows 'a' --windows 'b' - echo -e '/a\tIndicate an ASCII text file -/b\tIndicate a binary file' - end - - if not __fish_seen_argument --windows 'y' --windows '-y' - echo -e '/y=\tHide prompts to confirm that you want to overwrite an existing destination file -/-y\tShow prompts to confirm that you want to overwrite an existing destination file' - end - - echo -e '/d\tAllow the encrypted files being copied to be saved as decrypted files at the destination -/v\tVerify that new files are written correctly -/n\tUse a short file name, if available -/z\tCopy networked files in restartable mode -/?\tShow help' -end - -complete --command copy --no-files --arguments '(__copy_generate_args)' diff --git a/share/completions/md.fish b/share/completions/md.fish deleted file mode 100644 index fb14ab057..000000000 --- a/share/completions/md.fish +++ /dev/null @@ -1,11 +0,0 @@ -function __md_generate_args --description 'Function to generate args' - set --local current_token (commandline --current-token --cut-at-cursor) - switch $current_token - case '/*' - echo -e '/?\tShow help' - case '*' - __fish_list_windows_drives - end -end - -complete --command md --no-files --arguments '(__md_generate_args)' diff --git a/share/completions/pause.fish b/share/completions/pause.fish deleted file mode 100644 index baa9da3f1..000000000 --- a/share/completions/pause.fish +++ /dev/null @@ -1 +0,0 @@ -complete --command pause --no-files --arguments '/?\t"Show help"' \ No newline at end of file diff --git a/share/completions/ver.fish b/share/completions/ver.fish deleted file mode 100644 index d528d30e0..000000000 --- a/share/completions/ver.fish +++ /dev/null @@ -1 +0,0 @@ -complete --command ver --no-files --arguments '/?\tShow help' diff --git a/share/completions/vol.fish b/share/completions/vol.fish deleted file mode 100644 index 1f85b687d..000000000 --- a/share/completions/vol.fish +++ /dev/null @@ -1,12 +0,0 @@ -function __vol_generate_args --description 'Function to generate args' - set --local current_token (commandline --current-token --cut-at-cursor) - - switch $current_token - case '/*' - echo -e '/?\tShow help' - case '*' - __fish_list_windows_drives - end -end - -complete --command vol --no-files --arguments '(__vol_generate_args)' diff --git a/share/functions/rd.fish b/share/functions/rd.fish deleted file mode 100644 index a4e0dd92c..000000000 --- a/share/functions/rd.fish +++ /dev/null @@ -1,16 +0,0 @@ -function __rd_generate_args --description 'Function to generate args' - set --local current_token (commandline --current-token --cut-at-cursor) - switch $current_token - case '/*' - if __fish_seen_argument --windows 's' - echo -e '/q\tSpecify quiet mode' - end - - echo -e '/s\tDelete a directory tree -/?\tShow help' - case '*' - __fish_list_windows_drives - end -end - -complete --command rd --no-files --arguments '(__rd_generate_args)'