diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2022-04-11 00:18:04 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2022-04-11 00:18:04 +0200 |
commit | 31bcc5c263aea983e967426e2b94269e7605dcd4 (patch) | |
tree | 7b48ad9d7799afe09b7d7d8adc980bd5db935bdf /Completion/Linux/Command/_sshfs | |
parent | 5086b5356abcef8849dc8a09902b7c55f01db3c0 (diff) | |
parent | b09f4483416c54c1782824633dfabaf2ec0265b6 (diff) | |
download | zsh-31bcc5c263aea983e967426e2b94269e7605dcd4.tar.gz zsh-31bcc5c263aea983e967426e2b94269e7605dcd4.zip |
Update upstream source from tag 'upstream/5.8.1.2-test'
Update to upstream version '5.8.1.2-test'
with Debian dir b380d582bf51cd93149e4dea28fffa1ad85db4f5
Diffstat (limited to 'Completion/Linux/Command/_sshfs')
-rw-r--r-- | Completion/Linux/Command/_sshfs | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Completion/Linux/Command/_sshfs b/Completion/Linux/Command/_sshfs index 3363ecdc0..3467fbd8a 100644 --- a/Completion/Linux/Command/_sshfs +++ b/Completion/Linux/Command/_sshfs @@ -19,8 +19,14 @@ _arguments -C -S : \ ':mountpoint:_files -/' && ret=0 if [[ $state == options ]]; then - _values -s , "sshfs or fuse or mount options" \ + # TODO complete ssh(1) options + _values -s , "options to ssh, sshfs, mount, or FUSE" \ + 'port:number' \ + 'compression: :(yes no)' \ reconnect delay_connect sshfs_sync no_readahead sync_readdir \ + sshfs_debug \ + 'cache: :(yes no)' \ + 'cache_timeout:timeout (seconds)' \ 'dir_cache:cache setting:(yes no)' \ 'dcache_max_size:size [10000]' \ 'dcache_timeout:timeout (seconds) [20]' \ @@ -37,12 +43,13 @@ if [[ $state == options ]]; then sftp_server:path:_files \ directport:port:_ports \ slave disable_hardlink transform_symlinks follow_symlinks no_check_root password_stdin \ + debug \ allow_other allow_root auto_unmount nonempty default_permissions \ fsname:filesystem\ name \ subtype:filesystem\ type \ large_read \ max_read:max\ size \ - hard_remove use_ino readdir_ino direct_io kernel_cache auto_cache \ + hard_remove use_ino readdir_ino direct_io kernel_cache auto_cache noauto_cache \ 'umask:permissions' \ 'uid:owner' 'gid:group' \ 'entry_timeout:timeout (seconds) [1]' \ @@ -60,7 +67,7 @@ if [[ $state == options ]]; then congestion_threshold:threshold \ async_read sync_read atomic_o_trunc big_writes no_remote_lock no_remote_flock \ no_remote_posix_lock splice_write splice_move splice_read \ - from_code:charset to_code:charset subdir:_directories rellinks && ret=0 + from_code:charset to_code:charset subdir:_directories rellinks norellinks && ret=0 fi return ret |