From f3b5afb8cd13200197c508a906c8b51e5d6c5747 Mon Sep 17 00:00:00 2001 From: Marcel Schramm Date: Wed, 13 Feb 2019 20:23:52 +0100 Subject: [PATCH] Move TabSize comment in texview.go back to where it belongs. --- textview.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textview.go b/textview.go index 29faa21..8950c5f 100644 --- a/textview.go +++ b/textview.go @@ -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 )