diff options
| author | Robert Günzler <r@gnzler.io> | 2020-04-23 13:30:46 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-04-23 13:30:46 +0200 |
| commit | 3964118287eff0c644469dda1783e9f21b83013f (patch) | |
| tree | bb9f04e38beea3ac9f988348f8952e831fc10f56 | |
| parent | 3952f85268b22f05d160ffbf830b264cef54764a (diff) | |
tridactyl: fix changelog css, make history binds match vim
| -rw-r--r-- | .config/tridactyl/themes/r.css | 6 | ||||
| -rw-r--r-- | .config/tridactyl/tridactylrc | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/.config/tridactyl/themes/r.css b/.config/tridactyl/themes/r.css index 9017468..c7a0992 100644 --- a/.config/tridactyl/themes/r.css +++ b/.config/tridactyl/themes/r.css @@ -54,6 +54,6 @@ /* opacity: 0.9; */ } -/* :root.TridactylThemeR #changelog { */ -/* background: var(--tridactyl-bg-second); */ -/* } */ +:root.TridactylThemeR #changelog { + background: var(--tridactyl-bg-second); +} diff --git a/.config/tridactyl/tridactylrc b/.config/tridactyl/tridactylrc index 5ea41a0..ecbf515 100644 --- a/.config/tridactyl/tridactylrc +++ b/.config/tridactyl/tridactylrc @@ -26,6 +26,9 @@ bind <Space>ts fillcmdline tabopen -c shop bind <space>s fillcmdline tabopen search bind <space>n fillcmdline nativeopen +bind <C-o> back +bind <C-i> forward + bind / fillcmdline find bind n findnext 1 bind N findnext -1 |