mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Merge pull request #494 from glacambre/turn_functions_into_aliases
Turn functions into aliases
This commit is contained in:
commit
dbdbfb0322
2 changed files with 2 additions and 12 deletions
|
@ -160,6 +160,8 @@ const DEFAULTS = o({
|
|||
tlast: "tablast",
|
||||
bd: "tabclose",
|
||||
bdelete: "tabclose",
|
||||
quit: "tabclose",
|
||||
q: "tabclose",
|
||||
sanitize: "sanitise",
|
||||
tutorial: "tutor",
|
||||
h: "help",
|
||||
|
|
|
@ -1405,18 +1405,6 @@ export async function undo() {
|
|||
}
|
||||
}
|
||||
|
||||
/** Synonym for [[tabclose]]. */
|
||||
//#background
|
||||
export async function quit() {
|
||||
tabclose()
|
||||
}
|
||||
|
||||
/** Convenience shortcut for [[quit]]. */
|
||||
//#background
|
||||
export async function q() {
|
||||
tabclose()
|
||||
}
|
||||
|
||||
/** Move the current tab to be just in front of the index specified.
|
||||
|
||||
Known bug: This supports relative movement, but autocomple doesn't know
|
||||
|
|
Loading…
Add table
Reference in a new issue