Skip to content

Commit

Permalink
Remove insane default keys for web
Browse files Browse the repository at this point in the history
Turns out that every single modkey not working is an issue with my
particular browser and not everyone's.
  • Loading branch information
ZatFinn committed Sep 16, 2023
1 parent 5ef47c1 commit 427d8fa
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions web-default.keys.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
# delete this file to regenerate defaults
#
# helper keys
alt: 3
ctrl: 2
shift: 1
gui: 4
alt: ralt | lalt
ctrl: rctrl | lctrl
shift: rshift | lshift
gui: rgui | lgui
p8ctrl: ctrl | gui
#
# generic
#
fullscreen: alt; return
full_quit: ctrl; q
full_reload: ctrl; r
copy: p8ctrl; c
cut: p8ctrl; x
paste: p8ctrl; v
fullscreen: alt + return
full_quit: ctrl + q
full_reload: ctrl + r
copy: p8ctrl + c
cut: p8ctrl + x
paste: p8ctrl + v
#
# pico-8 keys
#
Expand All @@ -29,39 +29,39 @@ k_dash: x | v | m | 8 | kp2 | delete
k_pause: return | escape
k_seven: 7
# held
hold_left: shift; k_left
hold_right: shift; k_right
hold_up: shift; k_up
hold_down: shift; k_down
hold_jump: shift; k_jump
hold_dash: shift; k_dash
hold_pause: shift; k_pause
hold_seven: shift; k_seven
hold_left: shift + k_left
hold_right: shift + k_right
hold_up: shift + k_up
hold_down: shift + k_down
hold_jump: shift + k_jump
hold_dash: shift + k_dash
hold_pause: shift + k_pause
hold_seven: shift + k_seven
# toggle all (visual mode)
all_left: alt; k_left
all_right: alt; k_right
all_up: alt; k_up
all_down: alt; k_down
all_jump: alt; k_jump
all_dash: alt; k_dash
all_pause: alt; k_pause
all_seven: alt; k_seven
all_left: a + k_left
all_right: a + k_right
all_up: a + k_up
all_down: a + k_down
all_jump: a + k_jump
all_dash: a + k_dash
all_pause: a + k_pause
all_seven: a + k_seven
#
# pico-8 tas
#
prev_frame: k
next_frame: l
full_rewind: d
playback: p
reset_tas: shift; r
reset_tas: shift + r
save_tas: m
open_tas: shift; w
open_tas: shift + w
insert_blank: insert
duplicate: p8ctrl; insert
duplicate: p8ctrl + insert
delete: delete
visual: shift; l
undo: p8ctrl; z
redo: shift; undo
visual: shift + l
undo: p8ctrl + z
redo: shift + undo
screenshot: f1 | f6
gif_rec_start: f3 | f8 | p8ctrl+8
gif_rec_stop: f4 | f9 | p8ctrl+9
Expand All @@ -70,11 +70,11 @@ gif_rec_stop: f4 | f9 | p8ctrl+9
#
prev_level: s
next_level: f
rewind: shift; d
level_gif: shift; g
rewind: shift + d
level_gif: shift + g
clean_save: u
full_playback: shift; n
inc_djump: shift; =
full_playback: shift + n
inc_djump: shift + =
dec_djump: -
reset_djump: =
print_pos: y
Expand All @@ -99,16 +99,16 @@ exit_visual: escape
#
# console
#
console: p8ctrl; t
console: ctrl + ~
del_backward: backspace
prev_char: left
next_char: right
prev_word: alt; left
next_word: alt; right
cmd_go_to_end: ctrl; right
cmd_go_to_start: ctrl; left
prev_word: ctrl + left
next_word: ctrl + right
cmd_go_to_end: ctrl + e
cmd_go_to_start: ctrl + a
next_command: down
prev_command: up
clear_line: ctrl; c
clear_line: ctrl + c
complete_command: tab
send_line: return

0 comments on commit 427d8fa

Please sign in to comment.