Minor comment update. - sam - An updated version of the sam text editor. | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 37992ed6004919cc7bef37233e4fc37f28e92fcb | |
parent 146981607ca4605103d262f2eb2a671cbd73eb31 | |
Author: Rob King <[email protected]> | |
Date: Fri, 12 Aug 2016 12:00:40 -0500 | |
Minor comment update. | |
Diffstat: | |
commands.h.def | 1 + | |
config.h.def | 3 ++- | |
2 files changed, 3 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/commands.h.def b/commands.h.def | |
@@ -38,6 +38,7 @@ | |
{COMMANDMASK, XK_u, Kcommand, Cdelbol}, | |
{COMMANDMASK, XK_w, Kcommand, Cdelword}, | |
{COMMANDMASK, XK_k, Kcommand, Cjump}, | |
+{COMMANDMASK, XK_BackSpace, Kcommand, Cdelword}, | |
/* Use COMMAND-Tab to insert a literal tab when tab expansion is enabled. */ | |
{COMMANDMASK, XK_Tab, Kcomposed, '\t'}, | |
diff --git a/config.h.def b/config.h.def | |
@@ -17,7 +17,8 @@ | |
/* The system shell to use. Must be Bourne-compatible. */ | |
#define SHPATH "/bin/sh" | |
-/* The key to use for keyboard commands. */ | |
+/* The key to use for keyboard commands. | |
+ * This should be chosen to avoid conflict with the compose key. */ | |
#define COMMANDMASK ControlMask | |
#endif |