mirror of
https://github.com/Hopiu/micro.git
synced 2026-03-17 06:20:28 +00:00
17 lines
269 B
Go
17 lines
269 B
Go
package action
|
|
|
|
import (
|
|
"github.com/zyedidia/micro/v2/internal/display"
|
|
)
|
|
|
|
// A Pane is a general interface for a window in the editor.
|
|
type Pane interface {
|
|
Handler
|
|
display.Window
|
|
ID() uint64
|
|
SetID(i uint64)
|
|
Name() string
|
|
Close()
|
|
SetTab(t *Tab)
|
|
Tab() *Tab
|
|
}
|