diff options
| author | BossCode45 <human.cyborg42@gmail.com> | 2025-03-06 21:26:04 +1300 |
|---|---|---|
| committer | BossCode45 <human.cyborg42@gmail.com> | 2025-03-06 21:30:38 +1300 |
| commit | 74c58cdf74c4921071da93c4cbfaf22f672242a5 (patch) | |
| tree | 3f53f51df1a6098b0d9600114b06fc6ae957a195 /src/config.cpp | |
| parent | 63005f5fc81e9b641f07eadb5f07bc7c532d40c7 (diff) | |
| download | YATwm-74c58cdf74c4921071da93c4cbfaf22f672242a5.tar.gz YATwm-74c58cdf74c4921071da93c4cbfaf22f672242a5.zip | |
feat: Added the "S" modifier to the emacs bind mode
You can now use S as a modifier for shift when binding with emacs mode
if you're unable to capatilise the key to be bound.
Diffstat (limited to 'src/config.cpp')
| -rw-r--r-- | src/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp index 925e6ea..df8a43d 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -57,7 +57,7 @@ Config::Config(CommandsModule& commandsModule) commandsModule.addCommand("gaps", &Config::gapsCmd, 1, {NUM}, this); commandsModule.addCommand("outergaps", &Config::outerGapsCmd, 1, {NUM}, this); commandsModule.addCommand("logfile", &Config::logFileCmd, 1, {STR_REST}, this); - commandsModule.addCommand("addworkspace", &Config::addWorkspaceCmd, 2, {STR, NUM_ARR_REST}, this); + commandsModule.addCommand("addWorkspace", &Config::addWorkspaceCmd, 2, {STR, NUM_ARR_REST}, this); commandsModule.addCommand("swapmods", &Config::swapSuperAltCmd, 0, {}, this); } |
