feat: implemented select all notes feature.

This commit is contained in:
Xiaohan-Tian
2025-08-28 19:23:21 -07:00
parent 131b99aeb5
commit 6445325f3a
4 changed files with 68 additions and 0 deletions
+2
View File
@@ -41,6 +41,7 @@ interface AppConfig {
play: string;
undo: string;
redo: string;
select_all: string;
copy: string;
cut: string;
paste: string;
@@ -195,6 +196,7 @@ export class ConfigManager {
play: 'space',
undo: 'ctrl+z',
redo: 'ctrl+shift+z',
select_all: 'ctrl+a',
copy: 'ctrl+c',
cut: 'ctrl+x',
paste: 'ctrl+v',