Add reading list internal page

This commit is contained in:
2026-05-08 00:57:59 -04:00
parent e225fac222
commit b8d2b291b2
15 changed files with 486 additions and 4 deletions
+2
View File
@@ -6,6 +6,7 @@ pub enum CommandScope {
Spaces,
Tabs,
Bookmarks,
ReadingList,
History,
Settings,
Plugins,
@@ -49,6 +50,7 @@ fn parse_scope(value: &str) -> Option<(CommandScope, &str)> {
"@spaces" => CommandScope::Spaces,
"@tabs" => CommandScope::Tabs,
"@bookmarks" => CommandScope::Bookmarks,
"@reading-list" | "@reading" => CommandScope::ReadingList,
"@history" => CommandScope::History,
"@settings" => CommandScope::Settings,
"@plugins" => CommandScope::Plugins,