feat(core): add clipboard writeText and readText APIs (#2035)

This commit is contained in:
Lucas Fernandes Nogueira
2021-06-21 13:32:22 -03:00
committed by GitHub
parent 3280c4aa91
commit 285bf64bf9
13 changed files with 265 additions and 35 deletions

View File

@@ -16,6 +16,7 @@
import Shortcuts from "./components/Shortcuts.svelte";
import Shell from "./components/Shell.svelte";
import Updater from "./components/Updater.svelte";
import Clipboard from "./components/Clipboard.svelte";
const MENU_TOGGLE_HOTKEY = 'ctrl+b';
@@ -69,7 +70,11 @@
{
label: "Updater",
component: Updater,
},
},
{
label: "Clipboard",
component: Clipboard,
}
];
let selected = views[0];