-
Seems that search function is not working.
After i hit / and type the search ( Wu Tang Clan ) it shows *Search on the left and the search under.
After that the client crashes.
Terminal freezes totalt…
-
Is this possible ATM with multiple windows with the same demolitions?
-
```
$ go get github.com/davidlazar/vuvuzela/...
# github.com/davidlazar/go-crypto/encoding/base32
ar: `u' modifier ignored since `D' is the default (see `U')
# golang.org/x/crypto/poly1305
ar: `u' mod…
-
```
$ images ui
```
should open a ncurses style command line UI. This should make things such as selecting an item to delete images (instead of passing ids) or modifying attributes much more easier
…
fatih updated
9 years ago
-
When defining my keybindings, I use this helper function:
``` go
func setkey(g *gocui.Gui, key gocui.Key, fn gocui.KeybindingHandler) {
if err := g.SetKeybinding("", key, gocui.ModNone, f…
-
Then you could transform this kind of code:
```
if err := g.SetKeybinding("side", gocui.KeyCtrlSpace, 0, nextView); err != nil {
return err
}
if err := g.SetKeybinding("main", gocui.KeyCtrlSpace,…
-
Then you could transform this code:
```
if err := g.SetKeybinding("main", '0', 0, key0); err != nil {
return err
}
if err := g.SetKeybinding("main", '1', 0, key1); err != nil {
return err
}
/…
-
Hello.
I made some roughing (but working well) code to close issue [#3](https://github.com/jroimartin/gocui/issues/3).
But with an independent View'ers redraw, I have a some troubles with the windo…
iu0v1 updated
9 years ago
-
I want to create an autocomplete widget, so I want a callback any time the user types a letter. I obviously don't want to override CtrlC (globally bound), but everything else.
-
Hi Roi, i think this is an awesome tool. I have a question for you in demo2.go the layout function. When I take setCurrentView() (line 165) out of the if/else, the nextView no longer works.
nextView …