mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-10 22:23:32 +08:00
Change secrets panel shortcut to ss
This commit is contained in:
parent
2557bd0a26
commit
59a01cbc70
2 changed files with 2 additions and 2 deletions
|
|
@ -375,7 +375,7 @@ const Session = {
|
||||||
this.queueFocusedSectionEvaluation();
|
this.queueFocusedSectionEvaluation();
|
||||||
} else if (keyBuffer.tryMatch(["s", "o"])) {
|
} else if (keyBuffer.tryMatch(["s", "o"])) {
|
||||||
this.toggleOutline();
|
this.toggleOutline();
|
||||||
} else if (keyBuffer.tryMatch(["s", "e"])) {
|
} else if (keyBuffer.tryMatch(["s", "s"])) {
|
||||||
this.toggleSecretsList();
|
this.toggleSecretsList();
|
||||||
} else if (keyBuffer.tryMatch(["s", "a"])) {
|
} else if (keyBuffer.tryMatch(["s", "a"])) {
|
||||||
this.toggleAppInfo();
|
this.toggleAppInfo();
|
||||||
|
|
|
||||||
|
|
@ -362,7 +362,7 @@ defmodule LivebookWeb.SessionLive.Render do
|
||||||
|
|
||||||
<.button_item
|
<.button_item
|
||||||
icon="lock-password-line"
|
icon="lock-password-line"
|
||||||
label="Secrets (se)"
|
label="Secrets (ss)"
|
||||||
button_attrs={["data-el-secrets-list-toggle": true]}
|
button_attrs={["data-el-secrets-list-toggle": true]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue