diff --git a/src/excmds.ts b/src/excmds.ts index d264fe5c..3dc25da9 100644 --- a/src/excmds.ts +++ b/src/excmds.ts @@ -842,6 +842,12 @@ export async function gobble(nChars: number, endCmd: string) { // // unsupported on android +/** Add or remove a bookmark. +* +* Optionally, you may give the bookmark a title. If no URL is given, a bookmark is added for the current page. +* +* If a bookmark already exists for the URL, it is removed. +*/ //#background export async function bmark(url?: string, title = ""){ url = url === undefined ? (await activeTab()).url : url