summaryrefslogtreecommitdiffstats
path: root/up_test.go
AgeCommit message (Collapse)Author
2021-04-27keys: Implement unix-word-rubout (Ctrl-W)HEADmasterGhislain Rodrigues
unix-word-rubout erases all the characters before the cursor until finding either a space or a BOL.
2020-04-12tests: tiny tweak to namingMateusz Czapliński
2018-12-04replace yank with better insertMateusz Czapliński
Previous prototype of yank was O(n*m). The new code is more effective O(n+m), and also removes the need for yank function, by extending the insert function to accept more than 1 rune at once.