mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Add basic aliases (mostly copied from pentadactyl and vim) to config
This commit is contained in:
parent
d5b95c587f
commit
e1106181ae
1 changed files with 22 additions and 0 deletions
|
@ -87,6 +87,28 @@ const DEFAULTS = o({
|
|||
"zz": "zoom 1",
|
||||
".": "repeat",
|
||||
}),
|
||||
"exaliases": o({
|
||||
"b": "buffer",
|
||||
"o": "open",
|
||||
"w": "winopen",
|
||||
"t": "tabopen",
|
||||
"tn": "tabnext_gt",
|
||||
"bn": "tabnext_gt",
|
||||
"tnext": "tabnext_gt",
|
||||
"bnext": "tabnext_gt",
|
||||
"tp": "tabprev",
|
||||
"tN": "tabprev",
|
||||
"bp": "tabprev",
|
||||
"bN": "tabprev",
|
||||
"tprev": "tabprev",
|
||||
"bprev": "tabprev",
|
||||
"bfirst": "tabfirst",
|
||||
"blast": "tablast",
|
||||
"tfirst": "tabfirst",
|
||||
"tlast": "tablast",
|
||||
"bd": "tabclose",
|
||||
"bdelete": "tabclose",
|
||||
}),
|
||||
"searchengine": "google",
|
||||
"searchurls": o({
|
||||
"google":"https://www.google.com/search?q=",
|
||||
|
|
Loading…
Add table
Reference in a new issue