mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
feature: cloudcmd: add ability to hide dot files (#307)
This commit is contained in:
parent
9dbd812b3d
commit
ddf4542b75
11 changed files with 203 additions and 126 deletions
|
|
@ -86,6 +86,7 @@ const yargsOptions = {
|
|||
'confirm-copy',
|
||||
'confirm-move',
|
||||
'show-config',
|
||||
'show-dot-files',
|
||||
'show-file-name',
|
||||
'vim',
|
||||
'keys-panel',
|
||||
|
|
@ -124,6 +125,7 @@ const yargsOptions = {
|
|||
'export': choose(env.bool('export'), config('export')),
|
||||
|
||||
'prefix-socket': config('prefixSocket'),
|
||||
'show-dot-files': choose(env.bool('show_dot_files'), config('showDotFiles')),
|
||||
'show-file-name': choose(env.bool('show_file_name'), config('showFileName')),
|
||||
'sync-console-path': choose(env.bool('sync_console_path'), config('syncConsolePath')),
|
||||
'config-dialog': choose(env.bool('config_dialog'), config('configDialog')),
|
||||
|
|
@ -189,6 +191,7 @@ async function main() {
|
|||
config('username', args.username);
|
||||
config('console', args.console);
|
||||
config('syncConsolePath', args.syncConsolePath);
|
||||
config('showDotFiles', args.showDotFiles);
|
||||
config('showFileName', args.showFileName);
|
||||
config('contact', args.contact);
|
||||
config('terminal', args.terminal);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue