1
0
mirror of https://github.com/rivo/tview.git synced 2025-04-24 13:48:56 +08:00

Move TabSize comment in texview.go back to where it belongs.

This commit is contained in:
Marcel Schramm 2019-02-13 20:23:52 +01:00
parent f4690e43a0
commit f3b5afb8cd
No known key found for this signature in database
GPG Key ID: 05971054C70EEDC7

View File

@ -12,12 +12,12 @@ import (
runewidth "github.com/mattn/go-runewidth"
)
// TabSize is the number of spaces with which a tab character will be replaced.
var (
openColorRegex = regexp.MustCompile(`\[([a-zA-Z]*|#[0-9a-zA-Z]*)$`)
openRegionRegex = regexp.MustCompile(`\["[a-zA-Z0-9_,;: \-\.]*"?$`)
newLineRegex = regexp.MustCompile(`\r?\n`)
// TabSize is the number of spaces with which a tab character will be replaced.
TabSize = 4
)