Add page notes panel

This commit is contained in:
2026-05-08 06:53:31 -04:00
parent bae3c7789f
commit 7e68857eb8
15 changed files with 844 additions and 7 deletions
+2
View File
@@ -6,6 +6,7 @@ pub enum CommandScope {
Spaces,
Tabs,
Bookmarks,
Notes,
ReadingList,
History,
Settings,
@@ -50,6 +51,7 @@ fn parse_scope(value: &str) -> Option<(CommandScope, &str)> {
"@spaces" => CommandScope::Spaces,
"@tabs" => CommandScope::Tabs,
"@bookmarks" => CommandScope::Bookmarks,
"@notes" => CommandScope::Notes,
"@reading-list" | "@reading" => CommandScope::ReadingList,
"@history" => CommandScope::History,
"@settings" => CommandScope::Settings,