mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Add some binds with modifiers
This commit is contained in:
parent
e30b766794
commit
4858432401
1 changed files with 10 additions and 0 deletions
|
@ -52,14 +52,22 @@ const DEFAULTS = o({
|
||||||
p: "clipboard open",
|
p: "clipboard open",
|
||||||
P: "clipboard tabopen",
|
P: "clipboard tabopen",
|
||||||
j: "scrollline 10",
|
j: "scrollline 10",
|
||||||
|
"<c-e>": "scrollline 10",
|
||||||
k: "scrollline -10",
|
k: "scrollline -10",
|
||||||
|
"<c-y>": "scrollline 10",
|
||||||
h: "scrollpx -50",
|
h: "scrollpx -50",
|
||||||
l: "scrollpx 50",
|
l: "scrollpx 50",
|
||||||
G: "scrollto 100",
|
G: "scrollto 100",
|
||||||
gg: "scrollto 0",
|
gg: "scrollto 0",
|
||||||
|
"<c-u>": "scrollpage -0.5",
|
||||||
|
"<c-d>": "scrollpage 0.5",
|
||||||
|
"<c-b>": "scrollpage -1",
|
||||||
|
// Disabled while our find mode is bad
|
||||||
|
/* "<c-f>": "scrollpage -1", */
|
||||||
$: "scrollto 100 x",
|
$: "scrollto 100 x",
|
||||||
// "0": "scrollto 0 x", // will get interpreted as a count
|
// "0": "scrollto 0 x", // will get interpreted as a count
|
||||||
"^": "buffer #",
|
"^": "buffer #",
|
||||||
|
"<c-^>": "buffer #",
|
||||||
H: "back",
|
H: "back",
|
||||||
L: "forward",
|
L: "forward",
|
||||||
d: "tabclose",
|
d: "tabclose",
|
||||||
|
@ -107,6 +115,8 @@ const DEFAULTS = o({
|
||||||
zo: "zoom -0.1 true",
|
zo: "zoom -0.1 true",
|
||||||
zz: "zoom 1",
|
zz: "zoom 1",
|
||||||
".": "repeat",
|
".": "repeat",
|
||||||
|
"<SA-ArrowUp><SA-ArrowUp><SA-ArrowDown><SA-ArrowDown><SA-ArrowLeft><SA-ArrowRight><SA-ArrowLeft><SA-ArrowRight>ba":
|
||||||
|
"open https://www.youtube.com/watch?v=M3iOROuTuMA",
|
||||||
}),
|
}),
|
||||||
autocmds: o({
|
autocmds: o({
|
||||||
DocStart: o({
|
DocStart: o({
|
||||||
|
|
Loading…
Add table
Reference in a new issue