From 78b206e06b59cae8eccefa978637b9d080498a1d Mon Sep 17 00:00:00 2001 From: coderiaser Date: Mon, 15 Jun 2026 14:47:09 +0300 Subject: [PATCH] feature: client: key: Ctrl + L -> Ctrl + Shift + L: Log out (#466) --- HELP.md | 2 +- client/key/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HELP.md b/HELP.md index 0b32ca8d..561a7a7f 100644 --- a/HELP.md +++ b/HELP.md @@ -190,12 +190,12 @@ Then, start the server again with `cloudcmd` and reload the page. | `Ctrl + R` | refresh | `Ctrl + D` | clear local storage | `Ctrl + A` | select all files in a panel -| `Ctrl + L` | logout | `Ctrl + M` | [rename selected files](https://github.com/coderaiser/cloudcmd/releases/tag/v12.1.0) in editor | `Ctrl + U` | swap panels | `Ctrl + F3` | sort by name | `Ctrl + F5` | sort by date | `Ctrl + F6` | sort by size +| `Ctrl + Shift + L` | logout | `Ctrl + Command + .` | show/hide dot files | `Up` | move cursor up | `Down` | move cursor down diff --git a/client/key/index.js b/client/key/index.js index 6f55746c..283a7f11 100644 --- a/client/key/index.js +++ b/client/key/index.js @@ -443,7 +443,7 @@ async function _switchKey(event) { break; case KEY.L: - if (ctrlMeta) { + if (ctrlMeta && shift) { CloudCmd.logOut(); event.preventDefault(); }