mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-15 13:27:13 +09:00
13 lines
243 B
Go
13 lines
243 B
Go
package action
|
|
|
|
type KeyAction func(Pane) bool
|
|
type MouseAction func(Pane, *MouseEvent) bool
|
|
type KeyAnyAction func(Pane, keys []KeyEvent)
|
|
|
|
type KeyTreeNode struct {
|
|
children map[Event]KeyTreeNode
|
|
|
|
// action KeyAction
|
|
// any KeyAnyAction
|
|
}
|