Feature Request: Minimal Line Editor Commands
Resolved 💬 4 comments Opened Sep 15, 2025 by jtele2 Closed Jan 14, 2026
What feature would you like to see?
I’d like to propose adding a minimal set of line editor commands to the codec CLI, similar to what Claude Code provides. I realize that some of these, but not all of them, are implemented already.
In my view, a basic but usable editing experience should include movement, deletion, undo, and a handful of history and yank commands. Below is the minimal set I’d suggest (though this is open to debate).
---
Movement
C-b→ move back one characterC-f→ move forward one characterM-b→ move back one wordM-f→ move forward one wordC-a→ move to beginning of lineC-e→ move to end of line
Killing / Deleting
C-d→ delete character under cursorDEL→ delete character before cursorM-d→ kill word forwardM-DEL→ kill word backwardC-k→ kill to end of lineC-u→ kill to beginning of line
Yanking
C-y→ yank (paste last killed text)M-y→ cycle kill ring (afterC-y)
History
C-p→ previous commandC-n→ next commandC-r→ reverse incremental searchC-s→ forward incremental search
Editing / Misc
C-t→ transpose charactersM-t→ transpose wordsM-u→ uppercase wordM-l→ lowercase wordM-c→ capitalize wordC-_→ undoC-l→ clear screen
Are you interested in implementing this feature?
_No response_
Additional information
_No response_
This issue has 4 comments on GitHub. Read the full discussion on GitHub ↗