removed broken emacs keybindings

This commit is contained in:
Jonathan Lamothe 2024-08-13 15:24:49 -04:00
parent 6426057571
commit 289499fd0d

View File

@ -138,25 +138,21 @@ bindingsFor m = coreBindings ++ case m of
) )
, ( UpEvent , ( UpEvent
, [ bind KUp , [ bind KUp
, ctrl 'p'
, bind 'k' , bind 'k'
] ]
) )
, ( DownEvent , ( DownEvent
, [ bind KDown , [ bind KDown
, ctrl 'n'
, bind 'j' , bind 'j'
] ]
) )
, ( LeftEvent , ( LeftEvent
, [ bind KLeft , [ bind KLeft
, ctrl 'p'
, bind 'h' , bind 'h'
] ]
) )
, ( RightEvent , ( RightEvent
, [ bind KRight , [ bind KRight
, ctrl 'f'
, bind 'l' , bind 'l'
] ]
) )