Skip to content

Commit

Permalink
Updated sample config
Browse files Browse the repository at this point in the history
  • Loading branch information
houmain committed Jan 20, 2021
1 parent 74b86b1 commit c8adf82
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions keymapper.conf
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Boss = Virtual1
ScrollLock >> Boss

# define and additional modifier "Ext" (the angular bracket key on a german keyboard)
# define an additional modifier "Ext" (the angular bracket key on a german keyboard)
Ext = IntlBackslash

# define some more aliases
Expand All @@ -26,7 +26,13 @@
!Boss Ext{A} >> AltLeft
!Boss Ext{D} >> ShiftLeft
!Boss Ext{F} >> ControlLeft


# Ext-W and the navigation keys should step in/out/over during debugging
!Boss Ext{W{L}} >> debug_step_into
!Boss Ext{W{J}} >> debug_step_out
!Boss Ext{W{K}} >> debug_step_over
!Boss Ext{W{Any}} >>

# map Ext-I/J/K/L to cursor keys...
!Boss Ext{I} >> ArrowUp
!Boss Ext{K} >> ArrowDown
Expand Down Expand Up @@ -72,12 +78,6 @@
!Boss Ext{Minus} >> F11
!Boss Ext{Equal} >> F12

# Ext-W and the navigation keys should step in/out/over during debugging
!Boss Ext{W{L}} >> debug_step_into
!Boss Ext{W{J}} >> debug_step_out
!Boss Ext{W{K}} >> debug_step_over
!Boss Ext{W{Any}} >>

# the Ext modifier together with other keys should have no effect
!Boss Ext{Any} >>

Expand Down
2 changes: 1 addition & 1 deletion src/linux/client/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void print_help_message(const char* argv0) {
#endif

std::printf(
"keymapper %s(c) 2019-2020 by Albert Kalchmair\n"
"keymapper %s(c) 2019-2021 by Albert Kalchmair\n"
"\n"
"Usage: %s [-options]\n"
" -c, --config <path> configuration file.\n"
Expand Down
2 changes: 1 addition & 1 deletion src/win32/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void print_help_message(const wchar_t* argv0) {
const auto version = std::string(
#include "../_version.h"
);
print(("keymapper " + version + " (c) 2019-2020 by Albert Kalchmair\n"
print(("keymapper " + version + " (c) 2019-2021 by Albert Kalchmair\n"
"\n"
"Usage: keymapper [-options]\n"
" -c, --config <path> configuration file.\n"
Expand Down

0 comments on commit c8adf82

Please sign in to comment.