@@ -89,18 +89,20 @@ Cloud Commander supports command line parameters:
8989| ` --console ` | enable console
9090| ` --terminal ` | enable terminal
9191| ` --terminal-path ` | set terminal path
92+ | ` --vim ` | enable vim hot keys
9293| ` --no-server ` | do not start server
9394| ` --no-auth ` | disable authorization
9495| ` --no-online ` | load scripts from local server
9596| ` --no-open ` | do not open web browser when server started
97+ | ` --no-name ` | set empty tab name in web browser
98+ | ` --no-one-panel-mode ` | unset one panel mode
9699| ` --no-progress ` | do not show progress of file operations
97100| ` --no-html-dialogs ` | do not use html dialogs
98- | ` --no-one-panel-mode ` | unset one panel mode
99101| ` --no-contact ` | disable contact
100102| ` --no-config-dialog ` | disable config dialog
101103| ` --no-console ` | disable console
102104| ` --no-terminal ` | disable terminal
103- | ` --no-name ` | set empty tab name in web browser
105+ | ` --no-vim ` | disable vim hot keys
104106
105107
106108If no parameters given Cloud Commander reads information from ` ~/.cloudcmd.json ` and use
@@ -174,6 +176,27 @@ Hot keys
174176| ` ~ ` | console
175177| ` Ctrl + Click ` | open file on new tab
176178
179+ ### Vim
180+
181+ When ` --vim ` option provided, or configuration parameter ` vim ` set, next hot keys become available:
182+
183+ |Key |Operation
184+ |:----------------------|:--------------------------------------------
185+ | ` j ` | navigate to next file
186+ | ` k ` | navigate to previous file
187+ | ` dd ` | remove current file
188+ | ` G ` | navigate to bottom file
189+ | ` gg ` | navigate to top file
190+ | ` v ` | visual mode
191+ | ` y ` | copy (selected in visual mode files)
192+ | ` p ` | paste files
193+ | ` Esc ` | unselect all
194+
195+ Commands can be joined, for example:
196+ - ` 5j ` will navigate ` 5 ` files below current;
197+ - ` d5j ` will remove next ` 5 ` files;
198+ - ` dG ` will remove all files from current to bottom;
199+
177200View
178201---------------
179202![ View] ( /img/screen/view.png " View ")
@@ -333,6 +356,7 @@ Here is description of options:
333356 " console" : true , /* enable console */
334357 " terminal" : false , /* disable terminal */
335358 " terminalPath" : ' ' , /* path of a terminal */
359+ " vim" : false , /* disable vim hot keys */
336360}
337361```
338362
0 commit comments