mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-28 16:02:01 +03:00
Made the ui even smaller
This commit is contained in:
@ -303,7 +303,7 @@ func (gui *Gui) layout(g *gocui.Gui) error {
|
|||||||
information = donate + " " + information
|
information = donate + " " + information
|
||||||
}
|
}
|
||||||
|
|
||||||
minimumHeight := 16
|
minimumHeight := 9
|
||||||
minimumWidth := 10
|
minimumWidth := 10
|
||||||
if height < minimumHeight || width < minimumWidth {
|
if height < minimumHeight || width < minimumWidth {
|
||||||
v, err := g.SetView("limit", 0, 0, max(width-1, 2), max(height-1, 2), 0)
|
v, err := g.SetView("limit", 0, 0, max(width-1, 2), max(height-1, 2), 0)
|
||||||
@ -345,23 +345,23 @@ func (gui *Gui) layout(g *gocui.Gui) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if height < 21 {
|
if height < 21 {
|
||||||
statusFilesBoundary = optionsTop - 8
|
statusFilesBoundary = optionsTop - 4
|
||||||
filesBranchesBoundary = optionsTop - 6
|
filesBranchesBoundary = optionsTop - 3
|
||||||
commitsBranchesBoundary = optionsTop - 4
|
commitsBranchesBoundary = optionsTop - 2
|
||||||
commitsStashBoundary = optionsTop - 2
|
commitsStashBoundary = optionsTop - 1
|
||||||
|
|
||||||
switch currentCyclebleView {
|
switch currentCyclebleView {
|
||||||
case "stash":
|
case "stash":
|
||||||
commitsStashBoundary = 7
|
commitsStashBoundary = 3
|
||||||
fallthrough
|
fallthrough
|
||||||
case "commits":
|
case "commits":
|
||||||
commitsBranchesBoundary = 5
|
commitsBranchesBoundary = 2
|
||||||
fallthrough
|
fallthrough
|
||||||
case "branches":
|
case "branches":
|
||||||
filesBranchesBoundary = 3
|
filesBranchesBoundary = 1
|
||||||
fallthrough
|
fallthrough
|
||||||
case "files":
|
case "files":
|
||||||
statusFilesBoundary = 1
|
statusFilesBoundary = 0
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
statusFilesBoundary = optionsTop - 12
|
statusFilesBoundary = optionsTop - 12
|
||||||
|
110
vendor/github.com/jesseduffield/gocui/README.md
generated
vendored
Normal file
110
vendor/github.com/jesseduffield/gocui/README.md
generated
vendored
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
# GOCUI - Go Console User Interface
|
||||||
|
|
||||||
|
[](https://godoc.org/github.com/jroimartin/gocui)
|
||||||
|
|
||||||
|
Minimalist Go package aimed at creating Console User Interfaces.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
* Minimalist API.
|
||||||
|
* Views (the "windows" in the GUI) implement the interface io.ReadWriter.
|
||||||
|
* Support for overlapping views.
|
||||||
|
* The GUI can be modified at runtime (concurrent-safe).
|
||||||
|
* Global and view-level keybindings.
|
||||||
|
* Mouse support.
|
||||||
|
* Colored text.
|
||||||
|
* Customizable edition mode.
|
||||||
|
* Easy to build reusable widgets, complex layouts...
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Execute:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ go get github.com/jroimartin/gocui
|
||||||
|
```
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
Execute:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ go doc github.com/jroimartin/gocui
|
||||||
|
```
|
||||||
|
|
||||||
|
Or visit [godoc.org](https://godoc.org/github.com/jroimartin/gocui) to read it
|
||||||
|
online.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
```go
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"github.com/jroimartin/gocui"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
g, err := gocui.NewGui(gocui.OutputNormal)
|
||||||
|
if err != nil {
|
||||||
|
log.Panicln(err)
|
||||||
|
}
|
||||||
|
defer g.Close()
|
||||||
|
|
||||||
|
g.SetManagerFunc(layout)
|
||||||
|
|
||||||
|
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
|
||||||
|
log.Panicln(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := g.MainLoop(); err != nil && err != gocui.ErrQuit {
|
||||||
|
log.Panicln(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func layout(g *gocui.Gui) error {
|
||||||
|
maxX, maxY := g.Size()
|
||||||
|
if v, err := g.SetView("hello", maxX/2-7, maxY/2, maxX/2+7, maxY/2+2); err != nil {
|
||||||
|
if err != gocui.ErrUnknownView {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
fmt.Fprintln(v, "Hello world!")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func quit(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
return gocui.ErrQuit
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Screenshots
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Projects using gocui
|
||||||
|
|
||||||
|
* [komanda-cli](https://github.com/mephux/komanda-cli): IRC Client For Developers.
|
||||||
|
* [vuls](https://github.com/future-architect/vuls): Agentless vulnerability scanner for Linux/FreeBSD.
|
||||||
|
* [wuzz](https://github.com/asciimoo/wuzz): Interactive cli tool for HTTP inspection.
|
||||||
|
* [httplab](https://github.com/gchaincl/httplab): Interactive web server.
|
||||||
|
* [domainr](https://github.com/MichaelThessel/domainr): Tool that checks the availability of domains based on keywords.
|
||||||
|
* [gotime](https://github.com/nanohard/gotime): Time tracker for projects and tasks.
|
||||||
|
* [claws](https://github.com/thehowl/claws): Interactive command line client for testing websockets.
|
||||||
|
* [terminews](http://github.com/antavelos/terminews): Terminal based RSS reader.
|
||||||
|
* [diagram](https://github.com/esimov/diagram): Tool to convert ascii arts into hand drawn diagrams.
|
||||||
|
* [pody](https://github.com/JulienBreux/pody): CLI app to manage Pods in a Kubernetes cluster.
|
||||||
|
* [kubexp](https://github.com/alitari/kubexp): Kubernetes client.
|
||||||
|
* [kcli](https://github.com/cswank/kcli): Tool for inspecting kafka topics/partitions/messages.
|
||||||
|
* [fac](https://github.com/mkchoi212/fac): git merge conflict resolver
|
||||||
|
* [jsonui](https://github.com/gulyasm/jsonui): Interactive JSON explorer for your terminal.
|
||||||
|
* [cointop](https://github.com/miguelmota/cointop): Interactive terminal based UI application for tracking cryptocurrencies.
|
||||||
|
|
||||||
|
Note: if your project is not listed here, let us know! :)
|
9
vendor/github.com/jesseduffield/gocui/gui.go
generated
vendored
9
vendor/github.com/jesseduffield/gocui/gui.go
generated
vendored
@ -151,7 +151,7 @@ func (g *Gui) Rune(x, y int) (rune, error) {
|
|||||||
// ErrUnknownView is returned, which allows to assert if the View must
|
// ErrUnknownView is returned, which allows to assert if the View must
|
||||||
// be initialized. It checks if the position is valid.
|
// be initialized. It checks if the position is valid.
|
||||||
func (g *Gui) SetView(name string, x0, y0, x1, y1 int, overlaps byte) (*View, error) {
|
func (g *Gui) SetView(name string, x0, y0, x1, y1 int, overlaps byte) (*View, error) {
|
||||||
if x0 >= x1 || y0 >= y1 {
|
if x0 >= x1 {
|
||||||
return nil, errors.New("invalid dimensions")
|
return nil, errors.New("invalid dimensions")
|
||||||
}
|
}
|
||||||
if name == "" {
|
if name == "" {
|
||||||
@ -471,6 +471,9 @@ func (g *Gui) flush() error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
for _, v := range g.views {
|
for _, v := range g.views {
|
||||||
|
if v.y1 < v.y0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
if v.Frame {
|
if v.Frame {
|
||||||
var fgColor, bgColor Attribute
|
var fgColor, bgColor Attribute
|
||||||
if g.Highlight && v == g.currentView {
|
if g.Highlight && v == g.currentView {
|
||||||
@ -557,6 +560,10 @@ func corner(v *View, directions byte) rune {
|
|||||||
|
|
||||||
// drawFrameCorners draws the corners of the view.
|
// drawFrameCorners draws the corners of the view.
|
||||||
func (g *Gui) drawFrameCorners(v *View, fgColor, bgColor Attribute) error {
|
func (g *Gui) drawFrameCorners(v *View, fgColor, bgColor Attribute) error {
|
||||||
|
if v.y0 == v.y1 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
runeTL, runeTR, runeBL, runeBR := '┌', '┐', '└', '┘'
|
runeTL, runeTR, runeBL, runeBR := '┌', '┐', '└', '┘'
|
||||||
if g.SupportOverlaps {
|
if g.SupportOverlaps {
|
||||||
runeTL = corner(v, BOTTOM|RIGHT)
|
runeTL = corner(v, BOTTOM|RIGHT)
|
||||||
|
14
vendor/vendor.json
vendored
Normal file
14
vendor/vendor.json
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"comment": "",
|
||||||
|
"ignore": "",
|
||||||
|
"package": [
|
||||||
|
{
|
||||||
|
"checksumSHA1": "dCLAQjvVss19hSDdcLATFHKiqFI=",
|
||||||
|
"origin": "github.com/jesseduffield/lazygit/vendor/github.com/jesseduffield/gocui",
|
||||||
|
"path": "github.com/jesseduffield/gocui",
|
||||||
|
"revision": "af5a758d6c8637e4f2fdad4c0aed1c5362fc4d99",
|
||||||
|
"revisionTime": "2019-04-26T03:40:05Z"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rootPath": "github.com/jesseduffield/lazygit"
|
||||||
|
}
|
Reference in New Issue
Block a user