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
1 changed files with 1 additions and 1 deletions

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
)