summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--chat.h4
-rw-r--r--edit.c4
-rw-r--r--ui.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/chat.h b/chat.h
index 6b68eae..ac56f51 100644
--- a/chat.h
+++ b/chat.h
@@ -151,8 +151,8 @@ enum Edit {
 	EditNext,
 	EditPrevWord,
 	EditNextWord,
-	EditKillPrev,
-	EditKillNext,
+	EditDeleteHead,
+	EditDeleteTail,
 	EditDeletePrev,
 	EditDeleteNext,
 	EditInsert,
diff --git a/edit.c b/edit.c
index 38b2dea..7b20079 100644
--- a/edit.c
+++ b/edit.c
@@ -148,8 +148,8 @@ void edit(size_t id, enum Edit op, wchar_t ch) {
 
 		break; case EditDeletePrev: if (pos) delete(--pos, 1);
 		break; case EditDeleteNext: delete(pos, 1);
-		break; case EditKillPrev: delete(0, pos); pos = 0;
-		break; case EditKillNext: delete(pos, len - pos);
+		break; case EditDeleteHead: delete(0, pos); pos = 0;
+		break; case EditDeleteTail: delete(pos, len - pos);
 
 		break; case EditInsert: {
 			reserve(pos, 1);
diff --git a/ui.c b/ui.c
index 7811e88..e3b9cb5 100644
--- a/ui.c
+++ b/ui.c
@@ -656,9 +656,9 @@ static void keyCtrl(wchar_t ch) {
 		break; case L'H': edit(id, EditDeletePrev, 0);
 		break; case L'I': edit(id, EditComplete, 0);
 		break; case L'J': edit(id, EditEnter, 0);
-		break; case L'K': edit(id, EditKillNext, 0);
+		break; case L'K': edit(id, EditDeleteTail, 0);
 		break; case L'L': clearok(curscr, true);
-		break; case L'U': edit(id, EditKillPrev, 0);
+		break; case L'U': edit(id, EditDeleteHead, 0);
 	}
 }
 
0400'>2022-07-26Update Care with time-to-ID and piercingsJune McEnroe 2022-07-26Add -w to upJune McEnroe 2022-07-13Set push.autoSetupRemoteJune McEnroe 2022-07-08Remove TOURJune McEnroe 2022-07-03Add The Bone Shard EmperorJune McEnroe 2022-06-25Bump xterm font size to 12June McEnroe 2022-06-10Handle subshells (and functions) inside substitutionsJune McEnroe 2022-06-10Switch to jorts Install scriptJune McEnroe 2022-06-08Indicate if still reading or no resultsJune McEnroe 2022-06-08Add Maiden, Mother, CroneJune McEnroe 2022-06-05FIRST SHOW IN 2.5 YEARS BABEY!!!June McEnroe 2022-06-03Set line number on File linesJune McEnroe 2022-06-03Stop polling stdin after EOFJune McEnroe 2022-06-02Set TABSIZE=4June McEnroe 2022-06-02Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe