You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some people expect the arrow keys to work for selecting items in the menu or moving the text cursor (point). Thus the arrow keys should be bound in the following manner:
UP shall be equivalent to C-p, moving the cursor upwards
DOWN shall be equivalent to C-n, moving the cursor downwards
LEFT shall be equivalent to C-b, moving point left by one character
RIGHT shall be equivalent to C-f, moving point right by one character
Additionally, the HOME and END keys should be bound:
HOME shall be equivalent to C-a, moving point to the beginning of the line
END shall be equivalent to C-e, moving point to the end of the line
The text was updated successfully, but these errors were encountered:
can bindings be moved to config.h or like that?
because some other people prefer hjkl
I can imagine configurable bindings in the future. Supporting hjkl
however is a bit more problematic, because it requires reimplementing
modes as found in vi. Otherwise users can go through the search results
using hjkl but won't be able to input these characters.
Some people expect the arrow keys to work for selecting items in the menu or moving the text cursor (point). Thus the arrow keys should be bound in the following manner:
UP
shall be equivalent toC-p
, moving the cursor upwardsDOWN
shall be equivalent toC-n
, moving the cursor downwardsLEFT
shall be equivalent toC-b
, moving point left by one characterRIGHT
shall be equivalent toC-f
, moving point right by one characterAdditionally, the
HOME
andEND
keys should be bound:HOME
shall be equivalent toC-a
, moving point to the beginning of the lineEND
shall be equivalent toC-e
, moving point to the end of the lineThe text was updated successfully, but these errors were encountered: