// '//#' is a start point for a simple text-replacement-type macro. See excmds_macros.py /** # Tridactyl help page Use `:help ` or scroll down to show [[help]] for a particular excmd. If you're still stuck, you might consider reading through the [:tutor](/static/clippy/tutor.html) again. The default keybinds can be found [here](/static/docs/modules/_src_config_.html#defaults) or all active binds can be seen with `:viewconfig nmaps`. You can also view them with [[bind]]. Try `bind j`. For more information, and FAQs, check out our [readme][4] on github. Tridactyl is in a pretty early stage of development. Please report any issues and make requests for missing features on the GitHub [project page][1]. You can also get in touch using Matrix, Gitter, or IRC chat clients: [![Matrix Chat][matrix-badge]][matrix-link] [![Gitter Chat][gitter-badge]][gitter-link] [![Freenode Chat][freenode-badge]][freenode-link] All three channels are mirrored together, so it doesn't matter which one you use. ## How to use this help page We've hackily re-purposed TypeDoc which is designed for internal documentation. Every function (excmd) on this page can be called via Tridactyl's command line which we call "ex". There is a slight change in syntax, however. Wherever you see: `function(arg1,arg2)` You should instead type `function arg1 arg2` into the Tridactyl command line (accessed via `:`) A "splat" operator (...) means that the excmd will accept any number of space-delimited arguments into that parameter. Above each function signature you will see any aliases or key sequences bound to it. The internal names for the various modes are used, which are listed here: - `nmaps`: normal mode binds - `imaps`: insert mode binds - `inputmaps`: input mode binds - `ignoremaps`: ignore mode binds - `exaliases`: aliases in the command mode You do not need to worry about types. Return values which are promises will turn into whatever they promise to when used in [[composite]]. At the bottom of each function's help page, you can click on a link that will take you straight to that function's definition in our code. This is especially recommended for browsing the [config](/static/docs/modules/_src_config_.html#defaults) which is nigh-on unreadable on these pages. ## Highlighted features: - Press `b` to bring up a list of open tabs in the current window; you can type the tab ID or part of the title or URL to choose a tab - Press `Shift` + `Insert` to enter "ignore mode". Press `Shift` + `Insert` again to return to "normal mode". `` also works both ways. - Press `f` to start "hint mode", `F` to open in background (note: hint characters should be typed in lowercase) - Press `o` to `:open` a different page - Press `s` if you want to search for something that looks like a domain name or URL - [[bind]] new commands with e.g. `:bind J tabnext` - Type `:help` to see a list of available excmds - Use `yy` to copy the current page URL to your clipboard - `[[`and `]]` to navigate through the pages of comics, paginated articles, etc - Pressing `ZZ` will close all tabs and windows, but it will only "save" them if your about:preferences are set to "show your tabs and windows from last time" - Press Ctrl-i in a text box to edit in an external editor (e.g. vim). Requires native messenger. - Change theme with `colours default|dark|greenmat|shydactyl` There are some caveats common to all webextension vimperator-alikes: - To make Tridactyl work on addons.mozilla.org and some other Mozilla domains, you need to open `about:config`, run [[fixamo]] or add a new boolean `privacy.resistFingerprinting.block_mozAddonManager` with the value `true`, and remove the above domains from `extensions.webextensions.restrictedDomains`. - Tridactyl can't run on about:\*, some file:\* URIs, view-source:\*, or data:\*, URIs. - To change/hide the GUI of Firefox from Tridactyl, you can use [[guiset]] with the native messenger installed (see [[native]] and [[installnative]]). Alternatively, you can edit your userChrome yourself. There is an [example file](2) available in our repository. If you want a more fully-featured vimperator-alike, your best option is [Firefox ESR][3] and Vimperator :) [1]: https://github.com/cmcaine/tridactyl/issues [2]: https://github.com/cmcaine/tridactyl/blob/master/src/static/userChrome-minimal.css [3]: https://www.mozilla.org/en-GB/firefox/organizations/all/#legacy [4]: https://github.com/cmcaine/tridactyl#readme [gitter-badge]: /static/badges/gitter-badge.svg [gitter-link]: https://gitter.im/tridactyl/Lobby [freenode-badge]: /static/badges/freenode-badge.svg [freenode-link]: ircs://chat.freenode.net/tridactyl [matrix-badge]: https://matrix.to/img/matrix-badge.svg [matrix-link]: https://riot.im/app/#/room/#tridactyl:matrix.org */ /** ignore this line */ // {{{ setup // Shared import * as Messaging from "./messaging" import { browserBg, activeTabId, activeTabContainerId, openInNewTab } from "./lib/webext" import * as Container from "./lib/containers" import state from "./state" import * as UrlUtil from "./url_util" import * as config from "./config" import * as aliases from "./aliases" import * as Logging from "./logging" /** @hidden */ const logger = new Logging.Logger("excmds") import Mark from "mark.js" import * as CSS from "css" //#content_helper // { import "./number.clamp" import * as SELF from "./.excmds_content.generated" Messaging.addListener("excmd_content", Messaging.attributeCaller(SELF)) import * as DOM from "./dom" import { executeWithoutCommandLine } from "./commandline_content" import * as scrolling from "./scrolling" // } //#background_helper // { /** Message excmds_content.ts in the active tab of the currentWindow */ import { messageTab, messageActiveTab } from "./messaging" import { flatten } from "./itertools" import "./number.mod" import { ModeName } from "./state" import * as keydown from "./keydown_background" import { activeTab, firefoxVersionAtLeast } from "./lib/webext" import * as CommandLineBackground from "./commandline_background" import * as rc from "./config_rc" import * as excmd_parser from "./parsers/exmode" import { mapstrToKeyseq } from "./keyseq" //#background_helper import * as Native from "./native_background" /** @hidden */ export const cmd_params = new Map>() // } // }}} // {{{ Native messenger stuff /** @hidden **/ //#background export async function getNativeVersion(): Promise { Native.getNativeMessengerVersion() } /** * Fills the element matched by `selector` with content and falls back to the last used input if the element can't be found. You probably don't want this; it's used internally for [[editor]]. * * That said, `bind gs fillinput null [Tridactyl](https://addons.mozilla.org/en-US/firefox/addon/tridactyl-vim/) is my favourite add-on` could probably come in handy. */ //#content export async function fillinput(selector: string, ...content: string[]) { let inputToFill = document.querySelector(selector) if (!inputToFill) inputToFill = DOM.getLastUsedInput() if ("value" in inputToFill) { ;(inputToFill as HTMLInputElement).value = content.join(" ") } else { inputToFill.textContent = content.join(" ") } } /** @hidden */ //#content export async function getinput() { // this should probably be subsumed by the focusinput code let input = DOM.getLastUsedInput() if ("value" in input) { return (input as HTMLInputElement).value } else { return input.textContent } } /** @hidden */ //#content export async function getInputSelector() { return DOM.getSelector(DOM.getLastUsedInput()) } /** * Opens your favourite editor (which is currently gVim) and fills the last used input with whatever you write into that file. * **Requires that the native messenger is installed, see [[native]] and [[installnative]]**. * * Uses the `editorcmd` config option, default = `auto` looks through a list defined in native_background.ts try find a sensible combination. If it's a bit slow, or chooses the wrong editor, or gives up completely, set editorcmd to something you want. The command must stay in the foreground until the editor exits. * * The editorcmd needs to accept a filename, stay in the foreground while it's edited, save the file and exit. * * You're probably better off using the default insert mode bind of `` (Ctrl-i) to access this. */ //#background export async function editor() { let tab = await activeTab() let selector = await Messaging.messageTab(tab.id, "excmd_content", "getInputSelector", []) let url = new URL(tab.url) if (!await Native.nativegate()) return const file = (await Native.temp(await getinput(), url.hostname)).content // We're using Messaging.messageTab instead of `fillinput()` because fillinput() will execute in the currently active tab, which might not be the tab the user spawned the editor in Messaging.messageTab(tab.id, "excmd_content", "fillinput", [selector, (await Native.editor(file)).content]) // TODO: add annoying "This message was written with [Tridactyl](https://addons.mozilla.org/en-US/firefox/addon/tridactyl-vim/)" // to everything written using editor } //#background_helper import * as css_util from "./css_util" /** * Like [[guiset]] but quieter. */ //#background export async function guiset_quiet(rule: string, option: string) { if (!rule || !option) throw new Error(":guiset requires two arguments. See `:help guiset` for more information.") // Could potentially fall back to sending minimal example to clipboard if native not installed // Check for native messenger and make sure we have a plausible profile directory if (!await Native.nativegate("0.1.1")) return let profile_dir = "" if (config.get("profiledir") === "auto" && ["linux", "openbsd", "mac"].includes((await browser.runtime.getPlatformInfo()).os)) { try { profile_dir = await Native.getProfileDir() } catch (e) {} } else { profile_dir = config.get("profiledir") } if (profile_dir == "") { fillcmdline("Please set your profile directory (found on about:support) via `set profiledir [profile directory]`") return } // Make backups await Native.mkdir(profile_dir + "/chrome", true) let cssstr = (await Native.read(profile_dir + "/chrome/userChrome.css")).content let cssstrOrig = (await Native.read(profile_dir + "/chrome/userChrome.orig.css")).content if (cssstrOrig === "") await Native.write(profile_dir + "/chrome/userChrome.orig.css", cssstr) await Native.write(profile_dir + "/chrome/userChrome.css.tri.bak", cssstr) // Modify and write new CSS if (cssstr === "") cssstr = `@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");` let stylesheet = CSS.parse(cssstr) // Trim due to https://github.com/reworkcss/css/issues/114 let stylesheetDone = CSS.stringify(css_util.changeCss(rule, option, stylesheet)).trim() return Native.write(profile_dir + "/chrome/userChrome.css", stylesheetDone) } /** * Change which parts of the Firefox user interface are shown. **NB: This feature is experimental and might break stuff.** * * Might mangle your userChrome. Requires native messenger, and you must restart Firefox each time to see any changes (this can be done using [[restart]]). * * View available rules and options [here](/static/docs/modules/_src_css_util_.html#potentialrules) and [here](/static/docs/modules/_src_css_util_.html#metarules). * * Example usage: `guiset gui none`, `guiset gui full`, `guiset tabs autohide`. * * Some of the available options: * * - gui * - full * - none * * - tabs * - always * - autohide * * - navbar * - always * - autohide * - none * * - hoverlink (the little link that appears when you hover over a link) * - none * - left * - right * - top-left * - top-right * * - titlebar * - hide * - show * * If you want to use guiset in your tridactylrc, you might want to use [[guiset_quiet]] instead. */ //#background export async function guiset(rule: string, option: string) { await guiset_quiet(rule, option) fillcmdline_tmp(3000, "userChrome.css written. Please restart Firefox to see the changes.") } /** @hidden */ //#background export function cssparse(...css: string[]) { console.log(CSS.parse(css.join(" "))) } /** * Like [[fixamo]] but quieter. */ //#background export async function fixamo_quiet() { await Native.writePref("privacy.resistFingerprinting.block_mozAddonManager", true) await Native.writePref("extensions.webextensions.restrictedDomains", "") } /** * * Simply sets * ```js * "privacy.resistFingerprinting.block_mozAddonManager":true * "extensions.webextensions.restrictedDomains":"" * ``` * in about:config via user.js so that Tridactyl (and other extensions!) can be used on addons.mozilla.org and other sites. * * Requires `native` and a `restart`. */ //#background export async function fixamo() { await fixamo_quiet() fillcmdline_tmp(3000, "Permissions added to user.js. Please restart Firefox to make them take affect.") } /** * Uses the native messenger to open URLs. * * **Be *seriously* careful with this: you can use it to open any URL you can open in the Firefox address bar.** * * You've been warned. */ //#background export async function nativeopen(url: string, ...firefoxArgs: string[]) { if (await Native.nativegate()) { // First compute where the tab should be let pos = await config.getAsync("tabopenpos") let index = (await activeTab()).index + 1 switch (pos) { case "last": index = 99999 break case "related": // How do we simulate that? break } // Then make sure the tab is made active and moved to the right place // when it is opened in the current window let selecttab = tab => { browser.tabs.onCreated.removeListener(selecttab) tabSetActive(tab.id) browser.tabs.move(tab.id, { index }) } browser.tabs.onCreated.addListener(selecttab) if ((await browser.runtime.getPlatformInfo()).os === "mac") { let osascriptArgs = ["-e 'on run argv'", "-e 'tell application \"Firefox\" to open location item 1 of argv'", "-e 'end run'"] await Native.run("osascript " + osascriptArgs.join(" ") + " " + url) } else { if (firefoxArgs.length === 0) firefoxArgs = ["--new-tab"] await Native.run(config.get("browser") + " " + firefoxArgs.join(" ") + " " + url) } setTimeout(() => browser.tabs.onCreated.removeListener(selecttab), 100) } } /** * Run command in /bin/sh (unless you're on Windows), and print the output in the command line. Non-zero exit codes and stderr are ignored, currently. * * Requires the native messenger, obviously. * * If you want to use a different shell, just prepend your command with whatever the invocation is and keep in mode that most shells require quotes around the command to be executed, e.g. `:exclaim xonsh -c "1+2"`. * * Aliased to `!` but the exclamation mark **must be followed with a space**. */ //#background export async function exclaim(...str: string[]) { fillcmdline((await Native.run(str.join(" "))).content) } // should consider how to give option to fillcmdline or not. We need flags. /** * Like exclaim, but without any output to the command line. */ //#background export async function exclaim_quiet(...str: string[]) { return (await Native.run(str.join(" "))).content } /** * Tells you if the native messenger is installed and its version. * */ //#background export async function native() { const version = await Native.getNativeMessengerVersion(true) if (version !== undefined) fillcmdline("# Native messenger is correctly installed, version " + version) else fillcmdline("# Native messenger not found. Please run `:installnative` and follow the instructions.") } /** * Simply copies "curl -fsSl https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/install.sh | bash" to the clipboard and tells the user to run it. */ //#background export async function installnative() { if ((await browser.runtime.getPlatformInfo()).os === "win") { const installstr = await config.get("win_nativeinstallcmd") await yank(installstr) fillcmdline("# Installation command copied to clipboard. Please paste and run it from cmd.exe, PowerShell, or MinTTY to install the native messenger.") } else { const installstr = await config.get("nativeinstallcmd") await yank(installstr) fillcmdline("# Installation command copied to clipboard. Please paste and run it in your shell to install the native messenger.") } } /** * Runs an RC file from disk. * * If no argument given, it will try to open ~/.tridactylrc, ~/.config/tridactylrc or $XDG_CONFIG_HOME/tridactyl/tridactylrc in reverse order. You may use a `_` in place of a leading `.` if you wish, e.g, if you use Windows. * * On Windows, the `~` expands to `%USERPROFILE%`. * * The RC file is just a bunch of Tridactyl excmds (i.e, the stuff on this help page). Settings persist in local storage; add `sanitise tridactyllocal tridactylsync` to make it more Vim like. There's an [example file](https://raw.githubusercontent.com/cmcaine/tridactyl/master/.tridactylrc) if you want it. * * @param fileArr the file to open. Must be an absolute path, but can contain environment variables and things like ~. */ //#background export async function source(...fileArr: string[]) { const file = fileArr.join(" ") || undefined if (await Native.nativegate("0.1.3")) if (!await rc.source(file)) logger.error("Could not find RC file") } /** * Same as [[source]] but suppresses all errors */ //#background export async function source_quiet(...fileArr: string[]) { try { const file = fileArr.join(" ") || undefined if (await Native.nativegate("0.1.3", false)) rc.source(file) } catch (e) { logger.info("Automatic loading of RC file failed.") } } /** * Updates the native messenger if it is installed, using our GitHub repo. This is run every time Tridactyl is updated. * * If you want to disable this, or point it to your own native messenger, edit the `nativeinstallcmd` setting. */ //#background export async function updatenative(interactive = true) { if (await Native.nativegate("0", interactive)) { if ((await browser.runtime.getPlatformInfo()).os === "mac") { if (interactive) logger.error("Updating the native messenger on OSX is broken. Please use `:installnative` instead.") return } if ((await browser.runtime.getPlatformInfo()).os === "win") { await Native.run(await config.get("win_nativeinstallcmd")) } else { await Native.run(await config.get("nativeinstallcmd")) } if (interactive) native() } } /** * Restarts firefox with the same commandline arguments. * * Warning: This can kill your tabs, especially if you :restart several times * in a row */ //#background export async function restart() { const profiledir = await Native.getProfileDir() const browsercmd = await config.get("browser") if ((await browser.runtime.getPlatformInfo()).os === "win") { let reply = await Native.winFirefoxRestart(profiledir, browsercmd) logger.info("[+] win_firefox_restart 'reply' = " + JSON.stringify(reply)) if (Number(reply["code"]) === 0) { fillcmdline("#" + reply["content"]) qall() } else { fillcmdline("#" + reply["error"]) } } else { const firefox = (await Native.ffargs()).join(" ") // Wait for the lock to disappear, then wait a bit more, then start firefox Native.run(`while readlink ${profiledir}/lock ; do sleep 1 ; done ; sleep 1 ; ${firefox}`) qall() } } // }}} /** @hidden */ function hasScheme(uri: string) { return uri.match(/^([\w-]+):/) } /** @hidden */ function searchURL(provider: string, query: string) { if (provider == "search") provider = config.get("searchengine") const searchurlprovider = config.get("searchurls", provider) if (searchurlprovider === undefined) { throw new TypeError(`Unknown provider: '${provider}'`) } return UrlUtil.interpolateSearchItem(new URL(searchurlprovider), query) } /** Take a string and find a way to interpret it as a URI or search query. */ /** @hidden */ export function forceURI(maybeURI: string): string { // Need undefined to be able to open about:newtab if (maybeURI == "") return undefined // If the uri looks like it might contain a schema and a domain, try url() // test for a non-whitespace, non-colon character after the colon to avoid // false positives like "error: can't reticulate spline" and "std::map". // // These heuristics mean that very unusual URIs will be coerced to // something else by this function. if (/^[a-zA-Z0-9+.-]+:[^\s:]/.test(maybeURI)) { try { return new URL(maybeURI).href } catch (e) { if (e.name !== "TypeError") throw e } } // Else if search keyword: try { const args = maybeURI.split(" ") return searchURL(args[0], args.slice(1).join(" ")).href } catch (e) { if (e.name !== "TypeError") throw e } // Else if it's a domain or something try { const url = new URL("http://" + maybeURI) // Ignore unlikely domains if (url.hostname.includes(".") || url.port || url.password) { return url.href } } catch (e) { if (e.name !== "TypeError") throw e } // Else search $searchengine return searchURL("search", maybeURI).href } /** @hidden */ //#background_helper function tabSetActive(id: number) { return browser.tabs.update(id, { active: true }) } // }}} // {{{ INTERNAL/DEBUG /** * Set the logging level for a given logging module. * * @param logModule the logging module to set the level on * @param level the level to log at: in increasing verbosity, one of * "never", "error", "warning", "info", "debug" */ //#background export function loggingsetlevel(logModule: string, level: string) { const map = { never: Logging.LEVEL.NEVER, error: Logging.LEVEL.ERROR, warning: Logging.LEVEL.WARNING, info: Logging.LEVEL.INFO, debug: Logging.LEVEL.DEBUG, } let newLevel = map[level.toLowerCase()] if (newLevel !== undefined) { config.set("logging", logModule, newLevel) } else { throw "Bad log level!" } } // }}} // {{{ PAGE CONTEXT /** @hidden */ //#content_helper let JUMPED: boolean /** This is used as an ID for the current page in the jumplist. It has a potentially confusing behavior: if you visit site A, then site B, then visit site A again, the jumplist that was created for your first visit on A will be re-used for your second visit. An ideal solution would be to have a counter that is incremented every time a new page is visited within the tab and use that as the return value for getJumpPageId but this doesn't seem to be trivial to implement. @hidden */ //#content_helper export function getJumpPageId() { return document.location.href } /** @hidden */ //#content_helper export async function saveJumps(jumps) { browserBg.sessions.setTabValue(await activeTabId(), "jumps", jumps) } /** Returns a promise for an object containing the jumplist of all pages accessed in the current tab. The keys of the object currently are the page's URL, however this might change some day. Use [[getJumpPageId]] to access the jumplist of a specific page. @hidden */ //#content_helper export async function curJumps() { let tabid = await activeTabId() let jumps = await browserBg.sessions.getTabValue(tabid, "jumps") if (!jumps) jumps = {} // This makes sure that `key` exists in `obj`, setting it to `def` if it doesn't let ensure = (obj, key, def) => { if (obj[key] === null || obj[key] === undefined) obj[key] = def } let page = getJumpPageId() ensure(jumps, page, {}) let dummy = new UIEvent("scroll") ensure(jumps[page], "list", [{ x: dummy.pageX, y: dummy.pageY }]) ensure(jumps[page], "cur", 0) saveJumps(jumps) return jumps } /** Calls [[jumpprev]](-n) */ //#content export function jumpnext(n = 1) { jumpprev(-n) } /** Similar to Pentadactyl or vim's jump list. */ //#content export function jumpprev(n = 1) { curJumps().then(alljumps => { let jumps = alljumps[getJumpPageId()] let current = jumps.cur - n if (current < 0) { jumps.cur = 0 saveJumps(alljumps) return back(-current) } else if (current >= jumps.list.length) { jumps.cur = jumps.list.length - 1 saveJumps(alljumps) return forward(current - jumps.list.length + 1) } jumps.cur = current let p = jumps.list[jumps.cur] saveJumps(alljumps) JUMPED = true window.scrollTo(p.x, p.y) }) } /** Called on 'scroll' events. If you want to have a function that moves within the page but doesn't add a location to the jumplist, make sure to set JUMPED to true before moving around. The setTimeout call is required because sometimes a user wants to move somewhere by pressing 'j' multiple times and we don't want to add the in-between locations to the jump list @hidden */ //#content_helper export function addJump(scrollEvent: UIEvent) { if (JUMPED) { JUMPED = false return } let pageX = scrollEvent.pageX let pageY = scrollEvent.pageY // Get config for current page curJumps().then(alljumps => { let jumps = alljumps[getJumpPageId()] // Prevent pending jump from being registered clearTimeout(jumps.timeoutid) // Schedule the registering of the current jump jumps.timeoutid = setTimeout(() => { let list = jumps.list // if the page hasn't moved, stop if (list[jumps.cur].x == pageX && list[jumps.cur].y == pageY) return // Store the new jump // Could removing all jumps from list[cur] to list[list.length] be // a better/more intuitive behavior? list.push({ x: pageX, y: pageY }) jumps.cur = jumps.list.length - 1 saveJumps(alljumps) }, config.get("jumpdelay")) }) } //#content_helper document.addEventListener("scroll", addJump) // Try to restore the previous jump position every time a page is loaded //#content_helper document.addEventListener("load", () => curJumps().then(() => jumpprev(0))) /** Blur (unfocus) the active element */ //#content export function unfocus() { ;(document.activeElement as HTMLInputElement).blur() state.mode = "normal" } /** Scrolls the window or any scrollable child element by a pixels on the horizontal axis and b pixels on the vertical axis. */ //#content export async function scrollpx(a: number, b: number) { if (!await scrolling.scroll(a, b, document.documentElement)) scrolling.recursiveScroll(a, b) } /** If two numbers are given, treat as x and y values to give to window.scrollTo If one number is given, scroll to that percentage along a chosen axis, defaulting to the y-axis Note that if `a` is 0 or 100 and if the document is not scrollable in the given direction, Tridactyl will attempt to scroll the first scrollable element until it reaches the very bottom of that element. */ //#content export function scrollto(a: number, b: number | "x" | "y" = "y") { a = Number(a) let elem = window.document.scrollingElement || window.document.documentElement let percentage = a.clamp(0, 100) if (b === "y") { let top = elem.getClientRects()[0].top window.scrollTo(window.scrollX, percentage * elem.scrollHeight / 100) if (top == elem.getClientRects()[0].top && (percentage == 0 || percentage == 100)) { // scrollTo failed, if the user wants to go to the top/bottom of // the page try scrolling.recursiveScroll instead scrolling.recursiveScroll(window.scrollX, 1073741824 * (percentage == 0 ? -1 : 1), [document.documentElement]) } } else if (b === "x") { let left = elem.getClientRects()[0].left window.scrollTo(percentage * elem.scrollWidth / 100, window.scrollY) if (left == elem.getClientRects()[0].left && (percentage == 0 || percentage == 100)) { scrolling.recursiveScroll(1073741824 * (percentage == 0 ? -1 : 1), window.scrollX, [document.documentElement]) } } else { window.scrollTo(a, Number(b)) // a,b numbers } } /** @hidden */ //#content_helper let lineHeight = null /** Scrolls the document of its first scrollable child element by n lines. * * The height of a line is defined by the site's CSS. If Tridactyl can't get it, it'll default to 22 pixels. */ //#content export function scrollline(n = 1) { if (lineHeight === null) { let getLineHeight = elem => { // Get line height const cssHeight = window.getComputedStyle(elem).getPropertyValue("line-height") // Remove the "px" at the end return parseInt(cssHeight.substr(0, cssHeight.length - 2)) } lineHeight = getLineHeight(document.documentElement) if (!lineHeight) lineHeight = getLineHeight(document.body) // Is there a better way to compute a fallback? Maybe fetch from about:preferences? if (!lineHeight) lineHeight = 22 } scrolling.recursiveScroll(0, lineHeight * n) } /** Scrolls the document by n pages. * * The height of a page is the current height of the window. */ //#content export function scrollpage(n = 1) { scrollpx(0, window.innerHeight * n) } //#background_helper import * as finding from "./finding_background" /** Start find mode. Work in progress. * * @param direction - the direction to search in: 1 is forwards, -1 is backwards. * */ //#background export function find(direction?: number) { if (direction === undefined) direction = 1 finding.findPage(direction) } /** Highlight the next occurence of the previously searched for word. * * @param number - number of words to advance down the page (use 1 for next word, -1 for previous) * */ //#background export function findnext(n: number) { finding.findPageNavigate(n) } /** @hidden */ //#content_helper function history(n: number) { window.history.go(n) } /** Navigate forward one page in history. */ //#content export function forward(n = 1) { history(n) } /** Navigate back one page in history. */ //#content export function back(n = 1) { history(n * -1) } /** Reload the next n tabs, starting with activeTab, possibly bypassingCache */ //#background export async function reload(n = 1, hard = false) { let tabstoreload = await getnexttabs(await activeTabId(), n) let reloadProperties = { bypassCache: hard } tabstoreload.map(n => browser.tabs.reload(n, reloadProperties)) } /** Reloads all tabs, bypassing the cache if hard is set to true */ //#background export async function reloadall(hard = false) { let tabs = await browser.tabs.query({ currentWindow: true }) let reloadprops = { bypassCache: hard } tabs.map(tab => browser.tabs.reload(tab.id, reloadprops)) } /** Reload the next n tabs, starting with activeTab. bypass cache for all */ //#background export async function reloadhard(n = 1) { reload(n, true) } // I went through the whole list https://developer.mozilla.org/en-US/Firefox/The_about_protocol // about:blank is even more special /** @hidden */ export const ABOUT_WHITELIST = ["about:home", "about:license", "about:logo", "about:rights"] /** Open a new page in the current tab. * * @param urlarr * - if first word looks like it has a schema, treat as a URI * - else if the first word contains a dot, treat as a domain name * - else if the first word is a key of [[SEARCH_URLS]], treat all following terms as search parameters for that provider * - else treat as search parameters for google * * Related settings: * - "searchengine": "google" or any of [[SEARCH_URLS]] * - "historyresults": the n-most-recent results to ask Firefox for before they are sorted by frequency. Reduce this number if you find your results are bad. * * Can only open about:* or file:* URLs if you have the native messenger installed, and on OSX you must set `browser` to something that will open Firefox from a terminal pass it commmand line options. * */ //#content export async function open(...urlarr: string[]) { let url = urlarr.join(" ") // Setting window.location to about:blank results in a page we can't access, tabs.update works. if (url === "about:blank") { browserBg.tabs.update(await activeTabId(), { url }) } else if (!ABOUT_WHITELIST.includes(url) && url.match(/^(about|file):.*/)) { // Open URLs that firefox won't let us by running `firefox ` on the command line Messaging.message("commandline_background", "recvExStr", ["nativeopen " + url]) } else if (url !== "") { window.location.href = forceURI(url) } } /** * Like [[open]] but doesn't make a new entry in history. */ //#content export async function open_quiet(...urlarr: string[]) { let url = urlarr.join(" ") // Setting window.location to about:blank results in a page we can't access, tabs.update works. if (["about:blank"].includes(url)) { url = url || undefined browserBg.tabs.update(await activeTabId(), { url }) // Open URLs that firefox won't let us by running `firefox ` on the command line } else if (!ABOUT_WHITELIST.includes(url) && url.match(/^(about|file):.*/)) { Messaging.message("commandline_background", "recvExStr", ["nativeopen " + url]) } else if (url !== "") { document.location.replace(forceURI(url)) } } /** * If the url of the current document matches one of your search engines, will convert it to a list of arguments that open/tabopen will understand. If the url doesn't match any search engine, returns the url without modifications. * * For example, if you have searchurls.gi set to "https://www.google.com/search?q=%s&tbm=isch", using this function on a page you opened using "gi butterflies" will return "gi butterflies". * * This is useful when combined with fillcmdline, for example like this: `bind O composite url2args | fillcmdline open`. * * Note that this might break with search engines that redirect you to other pages/add GET parameters that do not exist in your searchurl. */ //#content export async function url2args() { let url = document.location.href let searchurls = await config.getAsync("searchurls") let result = url for (let engine in searchurls) { let [beginning, end] = [...searchurls[engine].split("%s"), ""] if (url.startsWith(beginning) && url.endsWith(end)) { // Get the string matching %s let encodedArgs = url.substring(beginning.length) encodedArgs = encodedArgs.substring(0, encodedArgs.length - end.length) // Remove any get parameters that might have been added by the search engine // This works because if the user's query contains an "&", it will be encoded as %26 let amperpos = encodedArgs.search("&") if (amperpos > 0) encodedArgs = encodedArgs.substring(0, amperpos) // Do transformations depending on the search engine if (beginning.search("duckduckgo") > 0) encodedArgs = encodedArgs.replace(/\+/g, " ") else if (beginning.search("wikipedia") > 0) encodedArgs = encodedArgs.replace(/_/g, " ") let args = engine + " " + decodeURIComponent(encodedArgs) if (args.length < result.length) result = args } } return result } /** @hidden */ //#content_helper let sourceElement = undefined /** @hidden */ //#content_helper function removeSource() { if (sourceElement) { sourceElement.remove() sourceElement = undefined } } /** Display the (HTML) source of the current page. Behaviour can be changed by the 'viewsource' setting. If the 'viewsource' setting is set to 'default' rather than 'tridactyl', the url the source of which should be displayed can be given as argument. Otherwise, the source of the current document will be displayed. */ //#content export function viewsource(url = "") { if (url === "") url = window.location.href if (config.get("viewsource") === "default") { window.location.href = "view-source:" + url return } if (!sourceElement) { sourceElement = executeWithoutCommandLine(() => { let pre = document.createElement("pre") pre.id = "TridactylViewsourceElement" pre.className = "cleanslate " + config.get("theme") pre.innerText = document.documentElement.innerHTML document.documentElement.appendChild(pre) window.addEventListener("popstate", removeSource) return pre }) } else { sourceElement.parentNode.removeChild(sourceElement) sourceElement = undefined window.removeEventListener("popstate", removeSource) } } /** * Go to the homepages you have set with `set home [url1] [url2]`. * * @param all * - if "true", opens all homepages in new tabs * - if "false" or not given, opens the last homepage in the current tab * */ //#background export function home(all: "false" | "true" = "false") { let homepages = config.get("homepages") if (homepages.length > 0) { if (all === "false") open(homepages[homepages.length - 1]) else { homepages.map(t => tabopen(t)) } } } /** Show this page. `:help something` jumps to the entry for something. Something can be an excmd, an alias for an excmd or a binding. The "nmaps" list is a list of all the bindings for the command you're seeing and the "exaliases" list lists all its aliases. If there's a conflict (e.g. you have a "go" binding that does something and also a "go" excmd that does something else), the binding has higher priority. If the keyword you gave to `:help` is actually an alias for a composite command (see [[composite]]) , you will be taken to the help section for the first command of the pipeline. You will be able to see the whole pipeline by hovering your mouse over the alias in the "exaliases" list. Unfortunately there currently is now way to display these HTML tooltips from the keyboard. e.g. `:help bind` */ //#background export async function help(excmd?: string) { const docpage = browser.extension.getURL("static/docs/modules/_src_excmds_.html") if (excmd === undefined) excmd = "" else { let bindings = await config.getAsync("nmaps") // If 'excmd' matches a binding, replace 'excmd' with the command that would be executed when pressing the key sequence referenced by 'excmd' if (excmd in bindings) { excmd = bindings[excmd].split(" ") excmd = ["composite", "fillcmdline"].includes(excmd[0]) ? excmd[1] : excmd[0] } let aliases = await config.getAsync("exaliases") // As long as excmd is an alias, try to resolve this alias to a real excmd let resolved = [] while (aliases[excmd]) { resolved.push(excmd) excmd = aliases[excmd].split(" ") excmd = excmd[0] == "composite" ? excmd[1] : excmd[0] // Prevent infinite loops if (resolved.includes(excmd)) break } } if ((await activeTab()).url.startsWith(docpage)) { open(docpage + "#" + excmd) } else { tabopen(docpage + "#" + excmd) } } /** Start the tutorial * @param newtab - whether to start the tutorial in a newtab. Defaults to current tab. */ //#background export async function tutor(newtab?: string) { const tutor = browser.extension.getURL("static/clippy/tutor.html") if (newtab) tabopen(tutor) else open(tutor) } /** * Display Tridactyl's contributors in order of commits in a user-friendly fashion */ //#background export async function credits(excmd?: string) { const creditspage = browser.extension.getURL("static/authors.html") tabopen(creditspage) } /** @hidden */ // Find clickable next-page/previous-page links whose text matches the supplied pattern, // and return the last such link. // // If no matching link is found, return undefined. // // We return the last link that matches because next/prev buttons tend to be at the end of the page // whereas lots of blogs have "VIEW MORE" etc. plastered all over their pages. //#content_helper function findRelLink(pattern: RegExp): HTMLAnchorElement | null { // querySelectorAll returns a "non-live NodeList" which is just a shit array without working reverse() or find() calls, so convert it. const links = Array.from(>document.querySelectorAll("a[href]")) // Find the last link that matches the test return links.reverse().find(link => pattern.test(link.innerText)) // Note: // `innerText` gives better (i.e. less surprising) results than `textContent` // at the expense of being much slower, but that shouldn't be an issue here // as it's a one-off operation that's only performed when we're leaving a page } /** @hidden */ // Return the last element in the document matching the supplied selector, // or null if there are no matches. function selectLast(selector: string): HTMLElement | null { const nodes = >document.querySelectorAll(selector) return nodes.length ? nodes[nodes.length - 1] : null } /** Find a likely next/previous link and follow it If a link or anchor element with rel=rel exists, use that, otherwise fall back to: 1) find the last anchor on the page with innerText matching the appropriate `followpagepattern`. 2) call [[urlincrement]] with 1 or -1 If you want to support e.g. French: ``` set followpagepatterns.next ^(next|newer|prochain)\b|»|>> set followpagepatterns.prev ^(prev(ious)?|older|précédent)\b|»|>> ``` @param rel the relation of the target page to the current page: "next" or "prev" */ //#content export function followpage(rel: "next" | "prev" = "next") { const link = selectLast(`link[rel~=${rel}][href]`) if (link) { window.location.href = link.href return } const anchor = selectLast(`a[rel~=${rel}][href]`) || findRelLink(new RegExp(config.get("followpagepatterns", rel), "i")) if (anchor) { DOM.mouseEvent(anchor, "click") } else { urlincrement(rel === "next" ? 1 : -1) } } /** Increment the current tab URL * * @param count the increment step, can be positive or negative */ //#content export function urlincrement(count = 1) { let newUrl = UrlUtil.incrementUrl(window.location.href, count) if (newUrl !== null) { // This might throw an error when using incrementurl on a moz-extension:// page if the page we're trying to access doesn't exist try { window.location.href = newUrl } catch (e) { logger.info(`urlincrement: Impossible to navigate to ${newUrl}`) } } } /** Go to the root domain of the current URL */ //#content export function urlroot() { let rootUrl = UrlUtil.getUrlRoot(window.location) if (rootUrl !== null) { window.location.href = rootUrl.href } } /** Go to the parent URL of the current tab's URL */ //#content export function urlparent(count = 1) { let parentUrl = UrlUtil.getUrlParent(window.location, count) if (parentUrl !== null) { window.location.href = parentUrl.href } } /** * Open a URL made by modifying the current URL * * There are several modes: * * * Text replace mode: `urlmodify -t ` * * Replaces the first instance of the text `old` with `new`. * * `http://example.com` -> (`-t exa peta`) -> `http://petample.com` * * * Regex replacment mode: `urlmodify -r [flags]` * * Replaces the first match of the `regexp` with `new`. You can use * flags `i` and `g` to match case-insensitively and to match * all instances respectively * * `http://example.com` -> (`-r [ea] X g`) -> `http://XxXmplX.com` * * * Query replace mode: `urlmodify -q ` * * Replace the value of a query with a new one: * * `http://e.com?id=foo` -> (`-q id bar`) -> `http://e.com?id=bar * * * Query delete mode: `urlmodify -Q ` * * Deletes the given query (and the value if any): * * `http://e.com?id=foo&page=1` -> (`-Q id`) -> `http://e.com?page=1` * * * Graft mode: `urlmodify -g ` * * "Grafts" a new tail on the URL path, possibly removing some of the old * tail. Graft point indicates where the old URL is truncated before adding * the new path. * * * `graft_point` >= 0 counts path levels, starting from the left * (beginning). 0 will append from the "root", and no existing path will * remain, 1 will keep one path level, and so on. * * `graft_point` < 0 counts from the right (i.e. the end of the current * path). -1 will append to the existing path, -2 will remove the last path * level, and so on. * * ```text * http://website.com/this/is/the/path/component * Graft point: ^ ^ ^ ^ ^ ^ * From left: 0 1 2 3 4 5 * From right: -6 -5 -4 -3 -2 -1 * ``` * * Examples: * * * `http://e.com/issues/42` -> (`-g 0 foo`) -> `http://e.com/foo` * * `http://e.com/issues/42` -> (`-g 1 foo`) -> `http://e.com/issues/foo` * * `http://e.com/issues/42` -> (`-g -1 foo`) -> `http://e.com/issues/42/foo` * * `http://e.com/issues/42` -> (`-g -2 foo`) -> `http://e.com/issues/foo` * * @param mode The replace mode: * * -t text replace * * -r regexp replace * * -q replace the value of the given query * * -Q delete the given query * * -g graft a new path onto URL or parent path of it * @param replacement the replacement arguments (depends on mode): * * -t * * -r [flags] * * -q * * -Q * * -g */ //#content export function urlmodify(mode: "-t" | "-r" | "-q" | "-Q" | "-g", ...args: string[]) { let oldUrl = new URL(window.location.href) let newUrl = undefined switch (mode) { case "-t": if (args.length !== 2) { throw new Error("Text replacement needs 2 arguments:" + " ") } newUrl = oldUrl.href.replace(args[0], args[1]) break case "-r": if (args.length < 2 || args.length > 3) { throw new Error("RegExp replacement takes 2 or 3 arguments: " + " [flags]") } if (args[2] && args[2].search(/^[gi]+$/) === -1) { throw new Error("RegExp replacement flags can only include 'g', 'i'" + ", Got '" + args[2] + "'") } let regexp = new RegExp(args[0], args[2]) newUrl = oldUrl.href.replace(regexp, args[1]) break case "-q": if (args.length !== 2) { throw new Error("Query replacement needs 2 arguments:" + " ") } newUrl = UrlUtil.replaceQueryValue(oldUrl, args[0], args[1]) break case "-Q": if (args.length !== 1) { throw new Error("Query deletion needs 1 argument:" + "") } newUrl = UrlUtil.deleteQuery(oldUrl, args[0]) break case "-g": if (args.length !== 2) { throw new Error("URL path grafting needs 2 arguments:" + " ") } newUrl = UrlUtil.graftUrlPath(oldUrl, args[1], Number(args[0])) break } // TODO: once we have an arg parser, have a quiet flag that prevents the page from being added to history if (newUrl && newUrl !== oldUrl) { window.location.replace(newUrl) } } /** Returns the url of links that have a matching rel. Don't bind to this: it's an internal function. @hidden */ //#content export function geturlsforlinks(reltype = "rel", rel: string) { let elems = document.querySelectorAll("link[" + reltype + "='" + rel + "']") as NodeListOf if (elems) return Array.prototype.map.call(elems, x => x.href) return [] } //#background export async function zoom(level = 0, rel = "false") { level = level > 3 ? level / 100 : level if (rel == "true") level += await browser.tabs.getZoom() browser.tabs.setZoom(level) } /** Opens the current page in Firefox's reader mode. * You currently cannot use Tridactyl while in reader mode. */ //#background export async function reader() { if (await firefoxVersionAtLeast(58)) { let aTab = await activeTab() if (aTab.isArticle) { browser.tabs.toggleReaderMode() } // else { // // once a statusbar exists an error can be displayed there // } } } //@hidden //#content_helper // { loadaucmds("DocStart") window.addEventListener("pagehide", () => loadaucmds("DocEnd")) window.addEventListener("DOMContentLoaded", () => loadaucmds("DocLoad")) // } /** @hidden */ //#content export async function loadaucmds(cmdType: "DocStart" | "DocLoad" | "DocEnd" | "TabEnter" | "TabLeft") { let aucmds = await config.getAsync("autocmds", cmdType) const ausites = Object.keys(aucmds) const aukeyarr = ausites.filter(e => window.document.location.href.search(e) >= 0) for (let aukey of aukeyarr) { Messaging.message("commandline_background", "recvExStr", [aucmds[aukey]]) } } /** The kinds of input elements that we want to be included in the "focusinput" * command (gi) * @hidden */ export const INPUTTAGS_selectors = ` input:not([disabled]):not([readonly]):-moz-any( :not([type]), [type='text'], [type='search'], [type='password'], [type='datetime'], [type='datetime-local'], [type='date'], [type='month'], [type='time'], [type='week'], [type='number'], [type='range'], [type='email'], [type='url'], [type='tel'], [type='color'] ), textarea:not([disabled]):not([readonly]), object, [role='application'] ` /** Password field selectors * @hidden */ const INPUTPASSWORD_selectors = ` input[type='password'] ` /** Focus the last used input on the page * * @param nth focus the nth input on the page, or "special" inputs: * "-l": last focussed input * "-n": input after last focussed one * "-N": input before last focussed one * "-p": first password field * "-b": biggest input field */ //#content export function focusinput(nth: number | string) { let inputToFocus: HTMLElement = null // set to false to avoid falling back on the first available input // if a special finder fails let fallbackToNumeric = true // nth = "-l" -> use the last used input for this page if (nth === "-l") { // try to recover the last used input stored as a // DOM node, which should be exactly the one used before (or null) if (DOM.getLastUsedInput()) { inputToFocus = DOM.getLastUsedInput() } else { // Pick the first input in the DOM. inputToFocus = DOM.getElemsBySelector(INPUTTAGS_selectors, [DOM.isSubstantial])[0] as HTMLElement // We could try to save the last used element on page exit, but // that seems like a lot of faff for little gain. } } else if (nth === "-n" || nth === "-N") { // attempt to find next/previous input let inputs = DOM.getElemsBySelector(INPUTTAGS_selectors, [DOM.isSubstantial]) as HTMLElement[] if (inputs.length) { let index = inputs.indexOf(DOM.getLastUsedInput()) if (DOM.getLastUsedInput()) { if (nth === "-n") { index++ } else { index-- } index = index.mod(inputs.length) } else { index = 0 } inputToFocus = inputs[index] } } else if (nth === "-p") { // attempt to find a password input fallbackToNumeric = false let inputs = DOM.getElemsBySelector(INPUTPASSWORD_selectors, [DOM.isSubstantial]) if (inputs.length) { inputToFocus = inputs[0] } } else if (nth === "-b") { let inputs = DOM.getElemsBySelector(INPUTTAGS_selectors, [DOM.isSubstantial]) as HTMLElement[] inputToFocus = inputs.sort(DOM.compareElementArea).slice(-1)[0] } // either a number (not special) or we failed to find a special input when // asked and falling back is acceptable if ((!inputToFocus || !document.contains(inputToFocus)) && fallbackToNumeric) { let index = isNaN(nth) ? 0 : nth inputToFocus = DOM.getNthElement(INPUTTAGS_selectors, index, [DOM.isSubstantial]) } if (inputToFocus) { DOM.focus(inputToFocus) if (config.get("gimode") === "nextinput" && state.mode !== "input") { state.mode = "input" } } } /** * Focus the tab which contains the last focussed input element. If you're lucky, it will focus the right input, too. * * Currently just goes to the last focussed input; being able to jump forwards and backwards is planned. */ //#background export async function changelistjump(n?: number) { let tail = state.prevInputs[state.prevInputs.length - 1] let jumppos = tail.jumppos ? tail.jumppos : state.prevInputs.length - 1 const input = state.prevInputs[jumppos] await browser.tabs.update(input.tab, { active: true }) const id = input.inputId // Not all elements have an ID, so this will do for now. if (id) focusbyid(input.inputId) else focusinput("-l") // Really want to bin the input we just focussed ^ and edit the real last input to tell us where to jump to next. // It doesn't work in practice as the focus events get added after we try to delete them. // Even editing focusbyid/focusinput doesn't work to try to delete their own history doesn't work. // I'm bored of working on it for now, though. // Probable solution: add an event listener to state.prevInputs changing, delete the focussed element, then delete event listener. // // let arr = state.prevInputs // arr.splice(-2,2) // tail.jumppos = jumppos - 1 // arr = arr.concat(tail) // state.prevInputs = arr } /** @hidden */ //#content export function focusbyid(id: string) { document.getElementById(id).focus() } // }}} // {{{ TABS /** Switch to the tab by index (position on tab bar), wrapping round. @param index 1-based index of the tab to target. Wraps such that 0 = last tab, -1 = penultimate tab, etc. if undefined, return activeTabId() */ /** @hidden */ //#background_helper async function tabIndexSetActive(index: number | string) { return tabSetActive(await idFromIndex(index)) } /** Switch to the next tab, wrapping round. If increment is specified, move that many tabs forwards. */ //#background export async function tabnext(increment = 1) { tabIndexSetActive((await activeTab()).index + increment + 1) } /** Switch to the next tab, wrapping round. If an index is specified, go to the tab with that number (this mimics the behaviour of `{count}gt` in vim, except that this command will accept a count that is out of bounds (and will mod it so that it is within bounds as per [[tabmove]], etc)). */ //#background export async function tabnext_gt(index?: number) { if (index === undefined) { tabnext() } else { tabIndexSetActive(index) } } /** Switch to the previous tab, wrapping round. If increment is specified, move that many tabs backwards. */ //#background export async function tabprev(increment = 1) { return tabIndexSetActive((await activeTab()).index - increment + 1) } /** Switch to the first tab. */ //#background export async function tabfirst() { tabIndexSetActive(1) } /** Switch to the last tab. */ //#background export async function tablast() { tabIndexSetActive(0) } /** Like [[open]], but in a new tab. If no address is given, it will open the newtab page, which can be set with `set newtab [url]` Use the `-c` flag followed by a container name to open a tab in said container. Tridactyl will try to fuzzy match a name if an exact match is not found. Use the `-b` flag to open the tab in the background. These two can be combined in any order, but need to be placed as the first arguments. Unlike Firefox's Ctrl-t shortcut, this opens tabs immediately after the currently active tab rather than at the end of the tab list because that is the authors' preference. If you would rather the Firefox behaviour `set tabopenpos last`. This preference also affects the clipboard, quickmarks, home, help, etc. If you would rather the URL be opened as if you'd middle clicked it, `set tabopenpos related`. Hinting is controlled by `relatedopenpos` */ //#background export async function tabopen(...addressarr: string[]) { let active let container // Lets us pass both -b and -c in no particular order as long as they are up front. async function argParse(args): Promise { if (args[0] === "-b") { active = false args.shift() argParse(args) } else if (args[0] === "-c") { // Ignore the -c flag if incognito as containers are disabled. let win = await browser.windows.getCurrent() if (!win["incognito"]) container = await Container.fuzzyMatch(args[1]) else logger.error("[tabopen] can't open a container in a private browsing window.") args.shift() args.shift() argParse(args) } return args } let url: string let address = (await argParse(addressarr)).join(" ") if (!ABOUT_WHITELIST.includes(address) && address.match(/^(about|file):.*/)) { if ((await browser.runtime.getPlatformInfo()).os === "mac" && (await browser.windows.getCurrent()).incognito) { fillcmdline_notrail("# nativeopen isn't supported in private mode on OSX. Consider installing Linux or Windows :).") return } else { nativeopen(address) return } } else if (address != "") url = forceURI(address) else url = forceURI(config.get("newtab")) activeTabContainerId().then(containerId => { // Ensure -c has priority. if (container) openInNewTab(url, { active: active, cookieStoreId: container }) else if (containerId && config.get("tabopencontaineraware") === "true") openInNewTab(url, { active: active, cookieStoreId: containerId }) else openInNewTab(url, { active }) }) } /** Resolve a tab index to the tab id of the corresponding tab in this window. @param index 1-based index of the tab to target. Wraps such that 0 = last tab, -1 = penultimate tab, etc. also supports # for previous tab, % for current tab. if undefined, return activeTabId() @hidden */ //#background_helper async function idFromIndex(index?: number | "%" | "#" | string): Promise { if (index === "#") { // Support magic previous/current tab syntax everywhere return (await getSortedWinTabs())[1].id } else if (index !== undefined && index !== "%") { // Wrap index = Number(index) index = (index - 1).mod((await browser.tabs.query({ currentWindow: true })).length) + 1 // Return id of tab with that index. return (await browser.tabs.query({ currentWindow: true, index: index - 1, }))[0].id } else { return await activeTabId() } } /** Close all other tabs in this window */ //#background export async function tabonly() { const tabs = await browser.tabs.query({ pinned: false, active: false, currentWindow: true, }) const tabsIds = tabs.map(tab => tab.id) browser.tabs.remove(tabsIds) } /** Duplicate a tab. @param index The 1-based index of the tab to target. index < 1 wraps. If omitted, this tab. */ //#background export async function tabduplicate(index?: number) { browser.tabs.duplicate(await idFromIndex(index)) } /** Detach a tab, opening it in a new window. @param index The 1-based index of the tab to target. index < 1 wraps. If omitted, this tab. */ //#background export async function tabdetach(index?: number) { browser.windows.create({ tabId: await idFromIndex(index) }) } /** Get list of tabs sorted by most recent use @hidden */ //#background_helper async function getSortedWinTabs(): Promise { const tabs = await browser.tabs.query({ currentWindow: true }) tabs.sort((a, b) => (a.lastAccessed < b.lastAccessed ? 1 : -1)) return tabs } /** Toggle fullscreen state */ //#background export async function fullscreen() { // Could easily extend this to fullscreen / minimise any window but seems like that would be a tiny use-case. const currwin = await browser.windows.getCurrent() const wid = currwin.id // This might have odd behaviour on non-tiling window managers, but no-one uses those, right? const state = currwin.state == "fullscreen" ? "normal" : "fullscreen" browser.windows.update(wid, { state }) } /** Close a tab. Known bug: autocompletion will make it impossible to close more than one tab at once if the list of numbers looks enough like an open tab's title or URL. @param indexes The 1-based indexes of the tabs to target. indexes < 1 wrap. If omitted, this tab. */ //#background export async function tabclose(...indexes: string[]) { if (indexes.length > 0) { let ids: number[] ids = await Promise.all(indexes.map(index => idFromIndex(index))) browser.tabs.remove(ids) } else { // Close current tab browser.tabs.remove(await activeTabId()) } } /** Close all tabs to the right of the current one * */ //#background export async function tabclosealltoright() { const tabs = await browser.tabs.query({ pinned: false, currentWindow: true, }) const atab = await activeTab() let ids = tabs.filter(tab => tab.index > atab.index).map(tab => tab.id) browser.tabs.remove(ids) } /** Close all tabs to the left of the current one * */ //#background export async function tabclosealltoleft() { const tabs = await browser.tabs.query({ pinned: false, currentWindow: true, }) const atab = await activeTab() let ids = tabs.filter(tab => tab.index < atab.index).map(tab => tab.id) browser.tabs.remove(ids) } /** restore most recently closed tab in this window unless the most recently closed item was a window */ //#background export async function undo() { const current_win_id: number = (await browser.windows.getCurrent()).id const sessions = await browser.sessions.getRecentlyClosed() // The first session object that's a window or a tab from this window. Or undefined if sessions is empty. let closed = sessions.find(s => { return "window" in s || (s.tab && s.tab.windowId == current_win_id) }) if (closed) { if (closed.tab) { browser.sessions.restore(closed.tab.sessionId) } else if (closed.window) { browser.sessions.restore(closed.window.sessionId) } } } /** Move the current tab to be just in front of the index specified. Known bug: This supports relative movement with `tabmove +pos` and `tabmove -pos`, but autocomplete doesn't know that yet and will override positive and negative indexes. Put a space in front of tabmove if you want to disable completion and have the relative indexes at the command line. Binds are unaffected. @param index New index for the current tab. 1,start,^ are aliases for the first index. 0,end,$ are aliases for the last index. */ //#background export async function tabmove(index = "0") { const aTab = await activeTab() const windowTabs = await browser.tabs.query({ currentWindow: true }) const windowPinnedTabs = await browser.tabs.query({ currentWindow: true, pinned: true }) const maxPinnedIndex = windowPinnedTabs.length - 1 let minindex: number let maxindex: number if (aTab.pinned) { minindex = 0 maxindex = maxPinnedIndex } else { minindex = maxPinnedIndex + 1 maxindex = windowTabs.length - 1 } let newindex: number let relative = false if (index.startsWith("+")) { relative = true newindex = Number(index) + aTab.index } else if (index.startsWith("-")) { relative = true newindex = Number(index) + aTab.index } else if (["end", "$"].includes(index)) { newindex = maxindex } else if (["start", "^"].includes(index)) { newindex = 0 } else { newindex = Number(index) - 1 } if (newindex > maxindex) { if (relative) { while (newindex > maxindex) { newindex -= maxindex - minindex + 1 } } else newindex = maxindex } if (newindex < minindex) { if (relative) { while (newindex < minindex) { newindex += maxindex - minindex + 1 } } else newindex = minindex } browser.tabs.move(aTab.id, { index: newindex }) } /** Pin the current tab */ //#background export async function pin() { let aTab = await activeTab() browser.tabs.update(aTab.id, { pinned: !aTab.pinned }) } /** Mute current tab or all tabs. Passing "all" to the excmd will operate on the mute state of all tabs. Passing "unmute" to the excmd will unmute. Passing "toggle" to the excmd will toggle the state of `browser.tabs.tab.MutedInfo` @param string[] muteArgs */ //#background export async function mute(...muteArgs: string[]): Promise { let mute = true let toggle = false let all = false let argParse = (args: string[]) => { if (args == null) { return } if (args[0] === "all") { all = true args.shift() argParse(args) } if (args[0] === "unmute") { mute = false args.shift() argParse(args) } if (args[0] === "toggle") { toggle = true args.shift() argParse(args) } } argParse(muteArgs) let updateObj = { muted: false } if (mute) { updateObj.muted = true } if (all) { let tabs = await browser.tabs.query({ currentWindow: true }) for (let tab of tabs) { if (toggle) { updateObj.muted = !tab.mutedInfo.muted } browser.tabs.update(tab.id, updateObj) } } else { let tab = await activeTab() if (toggle) { updateObj.muted = !tab.mutedInfo.muted } browser.tabs.update(tab.id, updateObj) } } // }}} // {{{ WINDOWS /** Like [[tabopen]], but in a new window */ //#background export async function winopen(...args: string[]) { let address: string const createData = {} let firefoxArgs = "--new-window" if (args[0] === "-private") { createData["incognito"] = true address = args.slice(1, args.length).join(" ") firefoxArgs = "--private-window" } else address = args.join(" ") createData["url"] = address != "" ? forceURI(address) : forceURI(config.get("newtab")) if (!ABOUT_WHITELIST.includes(address) && address.match(/^(about|file):.*/)) { if ((await browser.runtime.getPlatformInfo()).os === "mac") { fillcmdline_notrail("# nativeopen isn't supported for winopen on OSX. Consider installing Linux or Windows :).") return } else { nativeopen(address, firefoxArgs) return } } browser.windows.create(createData) } //#background export async function winclose() { browser.windows.remove((await browser.windows.getCurrent()).id) } /** Close all windows */ // It's unclear if this will leave a session that can be restored. // We might have to do it ourselves. //#background export async function qall() { let windows = await browser.windows.getAll() windows.map(window => browser.windows.remove(window.id)) } // }}} // {{{ CONTAINERS /** Closes all tabs open in the same container across all windows. @param name The container name. */ //#background export async function containerclose(name: string) { let containerId = await Container.getId(name) browser.tabs.query({ cookieStoreId: containerId }).then(tabs => { browser.tabs.remove( tabs.map(tab => { return tab.id }), ) }) } /** Creates a new container. Note that container names must be unique and that the checks are case-insensitive. Further reading https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/contextualIdentities/ContextualIdentity Example usage: - `:containercreate tridactyl green dollar` @param name The container name. Must be unique. @param color The container color. Valid colors are: "blue", "turquoise", "green", "yellow", "orange", "red", "pink", "purple". If no color is chosen a random one will be selected from the list of valid colors. @param icon The container icon. Valid icons are: "fingerprint", "briefcase", "dollar", "cart", "circle", "gift", "vacation", "food", "fruit", "pet", "tree", "chill". If no icon is chosen, it defaults to "fingerprint". */ //#background export async function containercreate(name: string, color?: string, icon?: string) { await Container.create(name, color, icon) } /** Delete a container. Closes all tabs associated with that container beforehand. Note: container names are case-insensitive. @param name The container name. */ //#background export async function containerdelete(name: string) { await containerclose(name) await Container.remove(name) } /** Update a container's information. Note that none of the parameters are optional and that container names are case-insensitive. Example usage: - Changing the container name: `:containerupdate banking blockchain green dollar` - Changing the container icon: `:containerupdate banking banking green briefcase` - Changing the container color: `:containerupdate banking banking purple dollar` @param name The container name. @param uname The new container name. Must be unique. @param ucolor The new container color. Valid colors are: "blue", "turquoise", "green", "yellow", "orange", "red", "pink", "purple". If no color is chosen a random one will be selected from the list of valid colors. @param uicon The new container icon. Valid icons are: "fingerprint", "briefcase", "dollar", "cart", "circle", "gift", "vacation", "food", "fruit", "pet", "tree", "chill". */ //#background export async function containerupdate(name: string, uname: string, ucolor: string, uicon: string) { logger.debug("containerupdate parameters: " + name + ", " + uname + ", " + ucolor + ", " + uicon) try { let containerId = await Container.fuzzyMatch(name) let containerObj = Container.fromString(uname, ucolor, uicon) await Container.update(containerId, containerObj) } catch (e) { throw e } } /** Shows a list of the current containers in Firefox's native JSON viewer in the current tab. NB: Tridactyl cannot run on this page! */ //#content export async function viewcontainers() { // # and white space don't agree with FF's JSON viewer. // Probably other symbols too. let containers = await browserBg.contextualIdentities.query({}) // Can't access src/lib/containers.ts from a content script. window.location.href = "data:application/json," + JSON.stringify(containers) .replace(/#/g, "%23") .replace(/ /g, "%20") } // }}} // // {{{ MISC /** Deprecated * @hidden */ //#background export function suppress(preventDefault?: boolean, stopPropagation?: boolean) { mode("ignore") } //#background export function version() { fillcmdline_notrail("REPLACE_ME_WITH_THE_VERSION_USING_SED") } /** Example: - `mode ignore` to ignore all keys. */ //#background export function mode(mode: ModeName) { // TODO: event emition on mode change. if (mode === "hint") { hint() } else if (mode === "find") { find() } else { state.mode = mode } } /** @hidden */ //#background_helper async function getnexttabs(tabid: number, n?: number) { const curIndex: number = (await browser.tabs.get(tabid)).index const tabs: browser.tabs.Tab[] = await browser.tabs.query({ currentWindow: true, }) const indexFilter = ((tab: browser.tabs.Tab) => { return curIndex <= tab.index && (n ? tab.index < curIndex + Number(n) : true) }).bind(n) return tabs.filter(indexFilter).map((tab: browser.tabs.Tab) => { return tab.id }) } // Moderately slow; should load in results as they arrive, perhaps // Todo: allow jumping to buffers once they are found // Consider adding to buffers with incremental search // maybe only if no other results in URL etc? // Find out how to return context of each result //#background /* export async function findintabs(query: string) { */ /* const tabs = await browser.tabs.query({currentWindow: true}) */ /* console.log(query) */ /* const findintab = async tab => */ /* await browser.find.find(query, {tabId: tab.id}) */ /* let results = [] */ /* for (let tab of tabs) { */ /* let result = await findintab(tab) */ /* if (result.count > 0) { */ /* results.push({tab, result}) */ /* } */ /* } */ /* results.sort(r => r.result.count) */ /* console.log(results) */ /* return results */ /* } */ // }}} // {{{ CMDLINE //#background_helper import * as controller from "./controller" /** Repeats a `cmd` `n` times. Falls back to the last executed command if `cmd` doesn't exist. Executes the command once if `n` isn't defined either. */ //#background export function repeat(n = 1, ...exstr: string[]) { let cmd = controller.last_ex_str if (exstr.length > 0) cmd = exstr.join(" ") logger.debug("repeating " + cmd + " " + n + " times") for (let i = 0; i < n; i++) controller.acceptExCmd(cmd) } /** * Split `cmds` on pipes (|) and treat each as its own command. Return values are passed as the last argument of the next ex command, e.g, * * `composite echo yes | fillcmdline` becomes `fillcmdline yes`. A more complicated example is the ex alias, `command current_url composite get_current_url | fillcmdline_notrail `, which is used in, e.g. `bind T current_url tabopen`. * * Workaround: this should clearly be in the parser, but we haven't come up with a good way to deal with |s in URLs, search terms, etc. yet. * * `cmds` are also split with semicolons (;) and don't pass things along to each other. * * The behaviour of combining ; and | in the same composite command is left as an exercise for the reader. */ //#background export async function composite(...cmds: string[]) { try { return cmds .join(" ") .split(";") .reduce( async (_, cmd) => { await _ let cmds = cmd.split("|") let [fn, args] = excmd_parser.parser(cmds[0]) return cmds.slice(1).reduce(async (pipedValue, cmd) => { let [fn, args] = excmd_parser.parser(cmd) return fn.call({}, ...args, await pipedValue) }, fn.call({}, ...args)) }, null as any, ) } catch (e) { logger.error(e) } } /** Sleep time_ms milliseconds. * This is probably only useful for composite commands that need to wait until the previous asynchronous command has finished running. */ //#background export async function sleep(time_ms: number) { await new Promise(resolve => setTimeout(resolve, time_ms)) } /** @hidden */ //#background function showcmdline(focus = true) { CommandLineBackground.show(focus) } /** @hidden */ //#background export function hidecmdline() { CommandLineBackground.hide() } /** Set the current value of the commandline to string *with* a trailing space */ //#background export function fillcmdline(...strarr: string[]) { let str = strarr.join(" ") showcmdline() messageActiveTab("commandline_frame", "fillcmdline", [str]) } /** Set the current value of the commandline to string *without* a trailing space */ //#background export function fillcmdline_notrail(...strarr: string[]) { let str = strarr.join(" ") let trailspace = false showcmdline() messageActiveTab("commandline_frame", "fillcmdline", [str, trailspace]) } /** Show and fill the command line without focusing it */ //#background export function fillcmdline_nofocus(...strarr: string[]) { showcmdline(false) return messageActiveTab("commandline_frame", "fillcmdline", [strarr.join(" "), false, false]) } /** Shows str in the command line for ms milliseconds. Recommended duration: 3000ms. */ //#background export async function fillcmdline_tmp(ms: number, ...strarr: string[]) { let str = strarr.join(" ") let tabId = await activeTabId() showcmdline(false) messageTab(tabId, "commandline_frame", "fillcmdline", [strarr.join(" "), false, false]) return new Promise(resolve => setTimeout(async () => { if ((await messageTab(tabId, "commandline_frame", "getContent", [])) == str) { CommandLineBackground.hide(tabId) await messageTab(tabId, "commandline_frame", "clear", [true]) } resolve() }, ms), ) } /** * Returns the current URL. For use with [[composite]]. */ //#background export async function get_current_url() { return (await activeTab()).url } /** * Copy content to clipboard without feedback. Use `clipboard yank` for interactive use. */ //#background export async function yank(...content: string[]) { await setclip(content.join(" ")) } /** * Copies a string to the clipboard/selection buffer depending on the user's preferences * * @hidden */ //#background_helper async function setclip(str) { // Functions to avoid retyping everything everywhere let s = () => Native.clipboard("set", str) let c = async () => { await messageActiveTab("commandline_content", "focus") await messageActiveTab("commandline_frame", "setClipboard", [str]) } let promises = [] switch (await config.getAsync("yankto")) { case "selection": promises = [s()] break case "clipboard": promises = [c()] break case "both": promises = [s(), c()] break } return await Promise.all(promises) } /** * Fetches the content of the clipboard/selection buffer depending on user's preferences * * @hidden */ //#background_helper async function getclip() { if ((await config.getAsync("putfrom")) == "clipboard") { return messageActiveTab("commandline_frame", "getClipboard") } else { return Native.clipboard("get", "") } } /** Use the system clipboard. If `excmd == "open"`, call [[open]] with the contents of the clipboard. Similarly for [[tabopen]]. If `excmd == "yank"`, copy the current URL, or if given, the value of toYank, into the system clipboard. If `excmd == "yankcanon"`, copy the canonical URL of the current page if it exists, otherwise copy the current URL. If `excmd == "yankshort"`, copy the shortlink version of the current URL, and fall back to the canonical then actual URL. Known to work on https://yankshort.neocities.org/. If `excmd == "yanktitle"`, copy the title of the open page. If `excmd == "yankmd"`, copy the title and url of the open page formatted in Markdown for easy use on sites such as reddit. If you're on Linux and the native messenger is installed, Tridactyl will call an external binary (either xclip or xsel) to read or write to your X selection buffer. If you want another program to be used, set "externalclipboardcmd" to its name and make sure it has the same interface as xsel/xclip ("-i"/"-o" and reading from stdin). When doing a read operation (i.e. open or tabopen), if "putfrom" is set to "selection", the X selection buffer will be read instead of the clipboard. Set "putfrom" to "clipboard" to use the clipboard. When doing a write operation, if "yankto" is set to "selection", only the X selection buffer will be written to. If "yankto" is set to "both", both the X selection and the clipboard will be written to. If "yankto" is set to "clipboard", only the clipboard will be written to. */ //#background export async function clipboard(excmd: "open" | "yank" | "yankshort" | "yankcanon" | "yanktitle" | "yankmd" | "tabopen" = "open", ...toYank: string[]) { let content = toYank.join(" ") let url = "" let urls = [] try { switch (excmd) { case "yankshort": urls = await geturlsforlinks("rel", "shortlink") if (urls.length == 0) { urls = await geturlsforlinks("rev", "canonical") } if (urls.length > 0) { await yank(urls[0]) fillcmdline_tmp(3000, "# " + urls[0] + " copied to clipboard.") break } // Trying yankcanon if yankshort failed... case "yankcanon": urls = await geturlsforlinks("rel", "canonical") if (urls.length > 0) { await yank(urls[0]) fillcmdline_tmp(3000, "# " + urls[0] + " copied to clipboard.") break } // Trying yank if yankcanon failed... case "yank": content = content == "" ? (await activeTab()).url : content await yank(content) fillcmdline_tmp(3000, "# " + content + " copied to clipboard.") break case "yanktitle": content = (await activeTab()).title await yank(content) fillcmdline_tmp(3000, "# " + content + " copied to clipboard.") break case "yankmd": content = "[" + (await activeTab()).title + "](" + (await activeTab()).url + ")" await yank(content) fillcmdline_tmp(3000, "# " + content + " copied to clipboard.") break case "open": url = await getclip() url && open(url) break case "tabopen": url = await getclip() url && tabopen(url) break default: // todo: maybe we should have some common error and error handler throw new Error(`[clipboard] unknown excmd: ${excmd}`) } } catch (e) { logger.error(e) } } /** Change active tab. @param index Starts at 1. 0 refers to last tab of the current window, -1 to penultimate tab, etc. "#" means the tab that was last accessed in this window This is different from [[bufferall]] because `index` is the position of the tab in the window. */ //#background export async function buffer(index: number | "#") { tabIndexSetActive(index) } /** Change active tab. @param id A string following the following format: "[0-9]+.[0-9]+", the first number being the index of the window that should be selected and the second one being the index of the tab within that window. */ //#background export async function bufferall(id: string) { let windows = (await browser.windows.getAll()).map(w => w.id).sort((a, b) => a - b) if (id === null || id === undefined || !id.match(/\d+\.\d+/)) { const tab = await activeTab() let prevId = id id = windows.indexOf(tab.windowId) + "." + (tab.index + 1) logger.info(`bufferall: Bad tab id: ${prevId}, defaulting to ${id}`) } let [winindex, tabindex] = id.split(".") await browser.windows.update(windows[parseInt(winindex) - 1], { focused: true }) return browser.tabs.update(await idFromIndex(tabindex), { active: true }) } // }}} // }}} // {{{ SETTINGS /** * Similar to vim's `:command`. Maps one ex-mode command to another. * If command already exists, this will override it, and any new commands * added in a future release will be SILENTLY overridden. Aliases are * expanded recursively. * * Examples: * - `command t tabopen` * - `command tn tabnext_gt` * = `command hello t` This will expand recursively into 'hello'->'tabopen' * * Note that this is only for excmd->excmd mappings. To map a normal-mode * command to an excommand, see [[bind]]. * * See also: * - [[comclear]] */ //#background export function command(name: string, ...definition: string[]) { // Test if alias creates an alias loop. try { const def = definition.join(" ") // Set alias config.set("exaliases", name, def) aliases.expandExstr(name) } catch (e) { // Warn user about infinite loops fillcmdline_notrail(e, " Alias unset.") config.unset("exaliases", name) } } /** * Similar to vim's `comclear` command. Clears an excmd alias defined by * `command`. * * For example: `comclear helloworld` will reverse any changes caused * by `command helloworld xxx` * * See also: * - [[command]] */ //#background export function comclear(name: string) { config.unset("exaliases", name) } //#background_helper type bind_args = { mode: string; configName: string; key: string; excmd: string } //#background_helper function parse_bind_args(...args: string[]): bind_args { if (args.length == 0) throw new Error("Invalid bind/unbind arguments.") let result = {} as bind_args result.mode = "normal" let mode2maps = new Map([["normal", "nmaps"], ["ignore", "ignoremaps"], ["insert", "imaps"], ["input", "inputmaps"]]) if (args[0].startsWith("--mode=")) { result.mode = args.shift().replace("--mode=", "") } if (!mode2maps.has(result.mode)) throw new Error("Mode " + result.mode + " does not yet have user-configurable binds.") result.configName = mode2maps.get(result.mode) let key = args.shift() // Convert key to internal representation result.key = mapstrToKeyseq(key) .map(k => k.toMapstr()) .join("") result.excmd = args.join(" ") return result } /** Bind a sequence of keys to an excmd or view bound sequence. This is an easier-to-implement bodge while we work on vim-style maps. Examples: - `bind G fillcmdline tabopen google` - `bind D composite tabclose | buffer #` - `bind j scrollline 20` - `bind F hint -b` You can view binds by omitting the command line: - `bind j` - `bind k` You can bind to modifiers and special keys by enclosing them with angle brackets, for example `bind z fullscreen`, `unbind ` (a favourite of people who use TreeStyleTabs :) ), or `bind forward`. Modifiers are truncated to a single character, so Ctrl -> C, Alt -> A, and Shift -> S. Shift is a bit special as it is only required if Shift does not change the key inputted, e.g. `` is OK, but `` should just be `A`. You can view all special key names here: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key/Key_Values Use [[composite]] if you want to execute multiple excmds. Use [[fillcmdline]] to put a string in the cmdline and focus the cmdline (otherwise the string is executed immediately). You can bind to other modes with `bind --mode={insert|ignore|normal|input} ...`, e.g, `bind --mode=insert emacs qall` (NB: unlike vim, all preceeding characters will not be input). See also: - [[unbind]] - [[reset]] */ //#background export function bind(...args: string[]) { let args_obj = parse_bind_args(...args) if (args_obj.excmd != "") { config.set(args_obj.configName, args_obj.key, args_obj.excmd) } else if (args_obj.key.length) { // Display the existing bind fillcmdline_notrail("#", args_obj.key, "=", config.get(args_obj.configName, args_obj.key)) } } /** * Set a search engine keyword for use with *open or `set searchengine` * * @deprecated use `set searchurls.KEYWORD URL` instead * * @param keyword the keyword to use for this search (e.g. 'esa') * @param url the URL to interpolate the query into. If %s is found in * the URL, the query is inserted there, else it is appended. * If the insertion point is in the "query string" of the URL, * the query is percent-encoded, else it is verbatim. **/ //#background export function searchsetkeyword(keyword: string, url: string) { config.set("searchurls", keyword, forceURI(url)) } /** Set a key value pair in config. Use to set any string values found [here](/static/docs/modules/_src_config_.html#defaults) e.g. set searchurls.google https://www.google.com/search?q= set logging.messaging info If no value is given, the value of the of the key will be displayed */ //#background export function set(key: string, ...values: string[]) { if (!key) { throw "Key must be provided!" } else if (!values[0]) { get(key) return } const target = key.split(".") // Special case conversions // TODO: Should we do any special case shit here? switch (target[0]) { case "logging": const map = { never: Logging.LEVEL.NEVER, error: Logging.LEVEL.ERROR, warning: Logging.LEVEL.WARNING, info: Logging.LEVEL.INFO, debug: Logging.LEVEL.DEBUG, } let level = map[values[0].toLowerCase()] if (level === undefined) throw "Bad log level!" else config.set(...target, level) return } const currentValue = config.get(...target) if (Array.isArray(currentValue)) { config.set(...target, values) } else if (currentValue === undefined || typeof currentValue === "string") { config.set(...target, values.join(" ")) } else { throw "Unsupported setting type!" } } /** @hidden */ //#background_helper let AUCMDS = ["DocStart", "DocLoad", "DocEnd", "TriStart", "TabEnter", "TabLeft"] /** Set autocmds to run when certain events happen. @param event Curently, 'TriStart', 'DocStart', 'DocLoad', 'DocEnd', 'TabEnter' and 'TabLeft' are supported. @param url For DocStart, DocEnd, TabEnter, and TabLeft: a fragment of the URL on which the events will trigger, or a JavaScript regex (e.g, `/www\.amazon\.co.*\/`) We just use [URL.search](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/search). For TriStart: A regular expression that matches the hostname of the computer the autocmd should be run on. This requires the native messenger to be installed, except for the ".*" regular expression which will always be triggered, even without the native messenger. @param excmd The excmd to run (use [[composite]] to run multiple commands) */ //#background export function autocmd(event: string, url: string, ...excmd: string[]) { // rudimentary run time type checking // TODO: Decide on autocmd event names if (!AUCMDS.includes(event)) throw event + " is not a supported event." config.set("autocmds", event, url, excmd.join(" ")) } /** Automatically open a domain and all its subdomains in a specified container. * * For declaring containers that do not yet exist, consider using `auconscreatecontainer true` in your tridactylrc. * This allows tridactyl to automatically create containers from your autocontain directives. Note that they will be random icons and colors. * * ** NB: This is an experimental feature, if you encounter issues please create an issue on github. ** * * The domain is passed through as a regular expression so there are a few gotchas to be aware of: * * Unescaped periods will match *anything*. `autocontain google.co.uk work` will match `google!co$uk`. Escape your periods or accept that you might get some false positives. * * You can use regex in your domain pattern. `autocontain google\,(co\.uk|com) work` will match either `google.co.uk` or `google.com`. * * @param domain The domain which will trigger the autoContain directive. Includes all subdomains. * @param container The container to open the url in. */ //#background export function autocontain(domain: string, container: string) { config.set("autocontain", domain, container) } /** Remove autocmds @param event Curently, 'TriStart', 'DocStart', 'DocLoad', 'DocEnd', 'TabEnter' and 'TabLeft' are supported. @param url For DocStart, DocEnd, TabEnter, and TabLeft: a fragment of the URL on which the events will trigger, or a JavaScript regex (e.g, `/www\.amazon\.co.*\/`) */ //#background export function autocmddelete(event: string, url: string) { if (!AUCMDS.includes(event)) throw event + " is not a supported event." config.unset("autocmds", event, url) } /** * Helper function to put Tridactyl into ignore mode on the provided URL. * * Simply creates a DocStart and TabEnter [[autocmd]] that runs `mode ignore`. * * Due to a Tridactyl bug, the only way to remove these rules once they are set is to delete all of your autocmds with `unset autocmds`. * * * */ //#background export function blacklistadd(url: string) { ;["DocStart", "TabEnter"].map(e => autocmd(e, url, "mode ignore")) } /** Unbind a sequence of keys so that they do nothing at all. See also: - [[bind]] - [[reset]] */ //#background export async function unbind(...args: string[]) { let args_obj = parse_bind_args(...args) if (args_obj.excmd != "") throw new Error("unbind syntax: `unbind key`") config.set(args_obj.configName, args_obj.key, "") } /** Restores a sequence of keys to their default value. See also: - [[bind]] - [[unbind]] */ //#background export async function reset(key: string) { config.unset("nmaps", key) // Code for dealing with legacy binds let nmaps = (await browser.storage.sync.get("nmaps"))["nmaps"] nmaps = nmaps == undefined ? {} : nmaps delete nmaps[key] browser.storage.sync.set({ nmaps }) } /** Deletes various privacy-related items. The list of possible arguments can be found here: https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/browsingData/DataTypeSet Additional, tridactyl-specific arguments are: - commandline: Removes the in-memory commandline history. - tridactyllocal: Removes all tridactyl storage local to this machine. Use it with commandline if you want to delete your commandline history. - tridactylsync: Removes all tridactyl storage associated with your Firefox Account (i.e, all user configuration, by default). These arguments aren't affected by the timespan parameter. Timespan parameter: -t [0-9]+(m|h|d|w) Examples: - `sanitise all` -> Deletes everything - `sanitise history` -> Deletes all history - `sanitise commandline tridactyllocal tridactylsync` -> Deletes every bit of data Tridactyl holds - `sanitise cookies -t 3d` -> Deletes cookies that were set during the last three days. */ //#background export async function sanitise(...args: string[]) { let flagpos = args.indexOf("-t") let since = {} // If the -t flag has been given and there is an arg after it if (flagpos > -1) { if (flagpos < args.length - 1) { let match = args[flagpos + 1].match("^([0-9])+(m|h|d|w)$") // If the arg of the flag matches Pentadactyl's sanitisetimespan format if (match !== null && match.length == 3) { // Compute the timespan in milliseconds and get a Date object let millis = parseInt(match[1]) * 1000 switch (match[2]) { case "w": millis *= 7 case "d": millis *= 24 case "h": millis *= 60 case "m": millis *= 60 } since = { since: new Date().getTime() - millis } } else { throw new Error(":sanitise error: expected time format: ^([0-9])+(m|h|d|w)$, given format:" + args[flagpos + 1]) } } else { throw new Error(":sanitise error: -t given but no following arguments") } } let dts = { cache: false, cookies: false, downloads: false, formData: false, history: false, localStorage: false, passwords: false, serviceWorkers: false, // These are Tridactyl-specific commandline: false, tridactyllocal: false, tridactylsync: false, /* When this one is activated, a lot of errors seem to pop up in the console. Keeping it disabled is probably a good idea. "pluginData": false, */ /* These 3 are supported by Chrome and Opera but not by Firefox yet. "fileSystems": false, "indexedDB": false, "serverBoundCertificates": false, */ } if (args.find(x => x == "all") !== undefined) { for (let attr in dts) dts[attr] = true } else { // We bother checking if dts[x] is false because // browser.browsingData.remove() is very strict on the format of the // object it expects args.map(x => { if (dts[x] === false) dts[x] = true }) } // Tridactyl-specific items if (dts.commandline === true) state.cmdHistory = [] delete dts.commandline if (dts.tridactyllocal === true) await browser.storage.local.clear() delete dts.tridactyllocal if (dts.tridactylsync === true) await browser.storage.sync.clear() delete dts.tridactylsync // Global items browser.browsingData.remove(since, dts) } /** Bind a quickmark for the current URL or space-separated list of URLs to a key on the keyboard. Afterwards use go[key], gn[key], or gw[key] to [[open]], [[tabopen]], or [[winopen]] the URL respectively. */ //#background export async function quickmark(key: string, ...addressarr: string[]) { // ensure we're binding to a single key if (key.length !== 1) { return } if (addressarr.length <= 1) { let address = addressarr.length == 0 ? (await activeTab()).url : addressarr[0] // Have to await these or they race! await bind("gn" + key, "tabopen", address) await bind("go" + key, "open", address) await bind("gw" + key, "winopen", address) } else { let compstring = addressarr.join(" | tabopen ") let compstringwin = addressarr.join(" | winopen ") await bind("gn" + key, "composite tabopen", compstring) await bind("go" + key, "composite open", compstring) await bind("gw" + key, "composite winopen", compstringwin) } } /** Puts the contents of config value with keys `keys` into the commandline and the background page console It's a bit rubbish, but we don't have a good way to provide feedback to the commandline yet. You can view the log entry in the browser console (Ctrl-Shift-j). For example, you might try `get nmaps` to see all of your current binds. */ //#background export function get(...keys: string[]) { const target = keys.join(".").split(".") const value = config.get(...target) console.log(value) if (typeof value === "object") { fillcmdline_notrail(`# ${keys.join(".")} = ${JSON.stringify(value)}`) } else { fillcmdline_notrail(`# ${keys.join(".")} = ${value}`) } } /** Opens the current configuration in Firefox's native JSON viewer in the current tab. * * NB: Tridactyl cannot run on this page! * * @param key - The specific key you wish to view (e.g, nmaps). * */ //#content export function viewconfig(key?: string) { // # and white space don't agree with FF's JSON viewer. // Probably other symbols too. if (!key) window.location.href = "data:application/json," + JSON.stringify(config.get()) .replace(/#/g, "%23") .replace(/ /g, "%20") // I think JS casts key to the string "undefined" if it isn't given. else window.location.href = "data:application/json," + JSON.stringify(config.get(key)) .replace(/#/g, "%23") .replace(/ /g, "%20") // base 64 encoding is a cleverer way of doing this, but it doesn't seem to work for the whole config. //window.location.href = "data:application/json;base64," + btoa(JSON.stringify(config.get())) } //#background export function unset(...keys: string[]) { const target = keys.join(".").split(".") if (target === undefined) throw "You must define a target!" config.unset(...target) } // not required as we automatically save all config ////#background //export function saveconfig(){ // config.save(config.get("storageloc")) //} ////#background //export function mktridactylrc(){ // saveconfig() //} // }}} // {{{ HINTMODE //#content_helper import * as hinting from "./hinting" /** Hint a page. @param option - -b open in background - -br repeatedly open in background - -y copy (yank) link's target to clipboard - -p copy an element's text to the clipboard - -P copy an element's title/alt text to the clipboard - -r read an element's text with text-to-speech - -i view an image - -I view an image in a new tab - -k delete an element from the page - -s save (download) the linked resource - -S save the linked image - -a save-as the linked resource - -A save-as the linked image - -; focus an element - -# yank an element's anchor URL to clipboard - -c [selector] hint links that match the css selector - `bind ;c hint -c [class*="expand"],[class="togg"]` works particularly well on reddit and HN - -w open in new window -wp open in new private window - `-pipe selector key` e.g, `-pipe * href` returns the key. Only makes sense with `composite`, e.g, `composite hint -pipe * textContent | yank`. - **DEPRECATED** `-W excmd...` append hint href to excmd and execute, e.g, `hint -W exclaim mpv` to open YouTube videos. Use `composite hint -pipe | [excmd]` instead. Excepting the custom selector mode and background hint mode, each of these hint modes is available by default as `;