mirror of
https://github.com/gdamore/tcell.git
synced 2025-04-24 13:48:51 +08:00
Go fmt for the project.
This commit is contained in:
parent
3f5bfde5ba
commit
d25117a2e5
@ -1,3 +1,4 @@
|
||||
//go:build plan9 || nacl
|
||||
// +build plan9 nacl
|
||||
|
||||
// Copyright 2015 The TCell Authors
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !windows && !nacl && !plan9
|
||||
// +build !windows,!nacl,!plan9
|
||||
|
||||
// Copyright 2016 The TCell Authors
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build windows
|
||||
// +build windows
|
||||
|
||||
// Copyright 2015 The TCell Authors
|
||||
|
@ -90,11 +90,11 @@ func TestColorNameLookup(t *testing.T) {
|
||||
t.Errorf("Wrong color for %v: %v", v.name, c.Hex())
|
||||
}
|
||||
if v.rgb {
|
||||
if c & ColorIsRGB == 0 {
|
||||
if c&ColorIsRGB == 0 {
|
||||
t.Errorf("Color should have RGB")
|
||||
}
|
||||
} else {
|
||||
if c & ColorIsRGB != 0 {
|
||||
if c&ColorIsRGB != 0 {
|
||||
t.Errorf("Named color should not be RGB")
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
// Copyright 2015 The TCell Authors
|
||||
|
1
doc.go
1
doc.go
@ -44,5 +44,4 @@
|
||||
//
|
||||
// A rich set of keycodes is supported, with support for up to 65 function
|
||||
// keys, and various other special keys.
|
||||
//
|
||||
package tcell
|
||||
|
@ -67,7 +67,6 @@ var encodingFallback EncodingFallback = EncodingFallbackFail
|
||||
// superset of Unicode) and so the application size can be expected ot
|
||||
// increase quite a bit as each encoding is added. The East Asian encodings
|
||||
// have been seen to add 100-200K per encoding to the application size.
|
||||
//
|
||||
func RegisterEncoding(charset string, enc encoding.Encoding) {
|
||||
encodingLk.Lock()
|
||||
charset = strings.ToLower(charset)
|
||||
|
@ -12,6 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
|
||||
// +build darwin dragonfly freebsd netbsd openbsd
|
||||
|
||||
package tcell
|
||||
|
@ -12,6 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build linux || aix || zos || solaris
|
||||
// +build linux aix zos solaris
|
||||
|
||||
package tcell
|
||||
|
@ -12,6 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
|
||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
|
||||
|
||||
package tcell
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build ignore
|
||||
// +build ignore
|
||||
|
||||
// Copyright 2021 The TCell Authors
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !tcell_minimal
|
||||
// +build !tcell_minimal
|
||||
|
||||
// Copyright 2019 The TCell Authors
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !tcell_minimal && !nacl && !js && !zos && !plan9 && !windows && !android
|
||||
// +build !tcell_minimal,!nacl,!js,!zos,!plan9,!windows,!android
|
||||
|
||||
// Copyright 2019 The TCell Authors
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build tcell_minimal || nacl || js || zos || plan9 || windows || android
|
||||
// +build tcell_minimal nacl js zos plan9 windows android
|
||||
|
||||
// Copyright 2019 The TCell Authors
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build js || plan9 || windows
|
||||
// +build js plan9 windows
|
||||
|
||||
// Copyright 2021 The TCell Authors
|
||||
|
@ -12,6 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
|
||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
|
||||
|
||||
package tcell
|
||||
|
@ -12,6 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
|
||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
|
||||
|
||||
package tcell
|
||||
|
@ -90,7 +90,7 @@ func (m *linesModel) GetCursor() (int, int, bool, bool) {
|
||||
func (ta *TextArea) SetLines(lines []string) {
|
||||
ta.Init()
|
||||
m := ta.model
|
||||
m.width =0
|
||||
m.width = 0
|
||||
|
||||
// extend slice before using m.runes[row] to avoid panic
|
||||
slice := make([][]rune, len(lines))
|
||||
|
Loading…
x
Reference in New Issue
Block a user