From 76648500b244f23e8bbf714f08e13bd6c3a6387a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 26 Feb 2021 15:34:53 -0500 Subject: [PATCH] remove what turned otu to be a bad useless idea --- terminalemulator.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminalemulator.d b/terminalemulator.d index 128b326..ed46b6a 100644 --- a/terminalemulator.d +++ b/terminalemulator.d @@ -660,7 +660,7 @@ class TerminalEmulator { } break; case Space: - if(shift || alt) { + if(alt) { // it used to be shift || alt here, but like shift+space is more trouble than it is worth in actual usage experience. too easily to accidentally type it in the middle of something else to be unambiguously useful. I wouldn't even set a hotkey on it so gonna just send it as plain space always. // ctrl+space sends 0 per normal translation char rules specialAscii(' '); return true;