diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2017-03-27 22:58:38 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2017-04-03 21:28:11 +0200 |
commit | ee18cd43d873bc814ca40faabd29cc486061969f (patch) | |
tree | c54c8522db340ff5984483a7530011a7bb23c079 /etc | |
parent | d28cf55743a5acadd0fa650a5559083c210449b8 (diff) | |
download | nx-libs-ee18cd43d873bc814ca40faabd29cc486061969f.tar.gz nx-libs-ee18cd43d873bc814ca40faabd29cc486061969f.tar.bz2 nx-libs-ee18cd43d873bc814ca40faabd29cc486061969f.zip |
Keystrokes: rename left/up/right/down keystrokes to descriptive names
The are now called reflecting their purpose:
viewport_scroll_left/up/right/down. This also regroups all the
keystrokes referring to viewport stuff.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/keystrokes.cfg | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/etc/keystrokes.cfg b/etc/keystrokes.cfg index 1620e04d0..b482119ad 100644 --- a/etc/keystrokes.cfg +++ b/etc/keystrokes.cfg @@ -4,10 +4,10 @@ <keystroke action="switch_all_screens" Control="1" AltMeta="1" key="f" /> <keystroke action="fullscreen" Control="1" Shift="1" AltMeta="1" key="f" /> <keystroke action="minimize" Control="1" AltMeta="1" key="m" /> -<keystroke action="resize" Control="1" AltMeta="1" key="r" /> <keystroke action="defer" Control="1" AltMeta="1" key="e" /> <keystroke action="ignore" Control="1" AltMeta="1" key="BackSpace" /> <keystroke action="force_synchronization" Control="1" AltMeta="1" key="j" /> +<keystroke action="resize" Control="1" AltMeta="1" key="r" /> <keystroke action="viewport_move_left" Control="1" Shift="1" AltMeta="1" key="Left" /> <keystroke action="viewport_move_left" Control="1" Shift="1" AltMeta="1" key="KP_Left" /> <keystroke action="viewport_move_up" Control="1" AltMeta="1" key="Up" /> @@ -16,13 +16,13 @@ <keystroke action="viewport_move_right" Control="1" AltMeta="1" key="KP_Right" /> <keystroke action="viewport_move_down" Control="1" AltMeta="1" key="Down" /> <keystroke action="viewport_move_down" Control="1" AltMeta="1" key="KP_Down" /> -<keystroke action="left" Control="1" AltMeta="1" key="Left" /> -<keystroke action="left" Control="1" AltMeta="1" key="KP_Left" /> -<keystroke action="up" Control="1" AltMeta="1" key="Up" /> -<keystroke action="up" Control="1" AltMeta="1" key="KP_Up" /> -<keystroke action="right" Control="1" AltMeta="1" key="Right" /> -<keystroke action="right" Control="1" AltMeta="1" key="KP_Right" /> -<keystroke action="down" Control="1" AltMeta="1" key="Down" /> -<keystroke action="down" Control="1" AltMeta="1" key="KP_Down" /> +<keystroke action="viewport_scroll_left" Control="1" AltMeta="1" key="Left" /> +<keystroke action="viewport_scroll_left" Control="1" AltMeta="1" key="KP_Left" /> +<keystroke action="viewport_scroll_up" Control="1" AltMeta="1" key="Up" /> +<keystroke action="viewport_scroll_up" Control="1" AltMeta="1" key="KP_Up" /> +<keystroke action="viewport_scroll_right" Control="1" AltMeta="1" key="Right" /> +<keystroke action="viewport_scroll_right" Control="1" AltMeta="1" key="KP_Right" /> +<keystroke action="viewport_scroll_down" Control="1" AltMeta="1" key="Down" /> +<keystroke action="viewport_scroll_down" Control="1" AltMeta="1" key="KP_Down" /> <keystroke action="reread_keystrokes" Control="1" AltMeta="1" key="k" /> </keystrokes> |