aboutsummaryrefslogtreecommitdiffstats
path: root/c_hardflip.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2023-12-20 20:20:20 +0100
committerJoe <rbo@gmx.us>2023-12-20 20:20:20 +0100
commitff175485ded07205da5b52919e8be04f89643a28 (patch)
treead7c4904e90165981c2e4470f3bb7ad915fecf70 /c_hardflip.go
parentdelete (diff)
downloadhardflip-ff175485ded07205da5b52919e8be04f89643a28.tar.gz
hardflip-ff175485ded07205da5b52919e8be04f89643a28.tar.bz2
hardflip-ff175485ded07205da5b52919e8be04f89643a28.tar.xz
hardflip-ff175485ded07205da5b52919e8be04f89643a28.tar.zst
hardflip-ff175485ded07205da5b52919e8be04f89643a28.zip
paging in progress
Diffstat (limited to 'c_hardflip.go')
-rw-r--r--c_hardflip.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/c_hardflip.go b/c_hardflip.go
index 5ad9e8e..ca231f7 100644
--- a/c_hardflip.go
+++ b/c_hardflip.go
@@ -47,7 +47,11 @@
package main
-import "github.com/gdamore/tcell/v2"
+import (
+ // "os"
+
+ "github.com/gdamore/tcell/v2"
+)
type Data struct {
lhost *HostList
@@ -55,6 +59,7 @@ type Data struct {
opts Opts
s tcell.Screen
data_dir string
+ list_start int
}
func main() {
@@ -64,6 +69,7 @@ func main() {
Opts{true, true},
nil,
data_dir,
+ 0,
}
i_ui(&data)
}