From c281a627ed975ab586e0d742ffeaf85ba4ae745a Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sun, 21 Jul 2024 03:21:57 +0000 Subject: [PATCH] add pin/unpin/togglepin documents --- docs/console_commands.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/docs/console_commands.md b/docs/console_commands.md index 5888324a..8d1a27fd 100644 --- a/docs/console_commands.md +++ b/docs/console_commands.md @@ -98,3 +98,30 @@ the current page. The `:set` command can be used to temporarily override properties in the console. See the [properties](./properties) section for more details on the available properties. + +## `:pin` + +The `:pin` command pins the current tab or specific tab by URL or title keywords. + +``` +:pin " pin the current tab +:pin foobar " pin the tab with "foobar" in the title or URL +``` + +## `:unpin` + +The `:unpin` command unpins the current tab or specific tab by URL or title keywords. + +``` +:unpin " unpin the current tab +:unpin foobar " unpin the tab with "foobar" in the title or URL +``` + +## `:togglepin` + +The `:togglepin` command toggles pinning of the current tab or specific tab by URL or title keywords. + +``` +:togglepin " toggle pinning of the current tab +:togglepin foobar " toggle pinning of the tab with "foobar" in the title or URL +```