From ebcf3a75879360ee64c5ea9ce3dafcc766f16e88 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 25 Dec 2018 20:46:55 +0100 Subject: termui: use a forked gocui to fix large character handling --- vendor/github.com/jroimartin/gocui/attribute.go | 32 ------------------------- 1 file changed, 32 deletions(-) delete mode 100644 vendor/github.com/jroimartin/gocui/attribute.go (limited to 'vendor/github.com/jroimartin/gocui/attribute.go') diff --git a/vendor/github.com/jroimartin/gocui/attribute.go b/vendor/github.com/jroimartin/gocui/attribute.go deleted file mode 100644 index bad758a1..00000000 --- a/vendor/github.com/jroimartin/gocui/attribute.go +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright 2014 The gocui Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package gocui - -import "github.com/nsf/termbox-go" - -// Attribute represents a terminal attribute, like color, font style, etc. They -// can be combined using bitwise OR (|). Note that it is not possible to -// combine multiple color attributes. -type Attribute termbox.Attribute - -// Color attributes. -const ( - ColorDefault Attribute = Attribute(termbox.ColorDefault) - ColorBlack = Attribute(termbox.ColorBlack) - ColorRed = Attribute(termbox.ColorRed) - ColorGreen = Attribute(termbox.ColorGreen) - ColorYellow = Attribute(termbox.ColorYellow) - ColorBlue = Attribute(termbox.ColorBlue) - ColorMagenta = Attribute(termbox.ColorMagenta) - ColorCyan = Attribute(termbox.ColorCyan) - ColorWhite = Attribute(termbox.ColorWhite) -) - -// Text style attributes. -const ( - AttrBold Attribute = Attribute(termbox.AttrBold) - AttrUnderline = Attribute(termbox.AttrUnderline) - AttrReverse = Attribute(termbox.AttrReverse) -) -- cgit