summaryrefslogtreecommitdiffstats
path: root/src/ansi.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2022-08-12 22:11:15 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2022-08-12 22:11:15 +0900
commitf4fd53211a9e3964818c2069aeff5464a679079f (patch)
tree3674d22dd64a6930840db899cf7f6f5a22c816e2 /src/ansi.go
parent4993d19466d5f3ac127de5c0c461cde7ef1894d7 (diff)
Reformat comments adhere to gofmt
Diffstat (limited to 'src/ansi.go')
-rw-r--r--src/ansi.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ansi.go b/src/ansi.go
index 698bf89e..543dabf3 100644
--- a/src/ansi.go
+++ b/src/ansi.go
@@ -126,7 +126,6 @@ func isCtrlSeqStart(c uint8) bool {
// calling FindStringIndex() on the below regex (which was originally used):
//
// "(?:\x1b[\\[()][0-9;?]*[a-zA-Z@]|\x1b][0-9];[[:print:]]+(?:\x1b\\\\|\x07)|\x1b.|[\x0e\x0f]|.\x08)"
-//
func nextAnsiEscapeSequence(s string) (int, int) {
// fast check for ANSI escape sequences
i := 0