98b7c99e74
* fix: various edge cases
test: add tea unit test
* chore: lint
* chore: 🤷
* test: fail after 1 minute
* test: print buffer
* test: fuck windows
9 lines
132 B
Go
9 lines
132 B
Go
package keys
|
|
|
|
const (
|
|
KeyControlC = "ctrl+c"
|
|
KeyEnter = "enter"
|
|
KeyEscape = "esc"
|
|
KeyTab = "tab"
|
|
KeyQ = "q"
|
|
)
|