Redraw and adjust upon terminal resize

This commit is contained in:
Junegunn Choi
2015-01-23 20:30:50 +09:00
parent c35d98dc42
commit 48e16edb47
2 changed files with 17 additions and 0 deletions

View File

@@ -421,6 +421,10 @@ func Clear() {
C.clear()
}
func Endwin() {
C.endwin()
}
func Refresh() {
C.refresh()
}