Johan Rong 17 時間 前
コミット
ee7ae30cd3
1 ファイル変更4 行追加4 行削除
  1. 4 4
      internal/extension/highlight/registry.go

+ 4 - 4
internal/extension/highlight/registry.go

@@ -14,11 +14,11 @@ import "C"
 
 import (
 	"fmt"
-	"sync"
-	"unsafe"
+	"path/filepath"
 	"strings"
+	"sync"
 	"unicode"
-	"path/filepath"
+	"unsafe"
 
 	sitter "github.com/smacker/go-tree-sitter"
 )
@@ -106,4 +106,4 @@ func (r *Registry) GetLanguage(langName string) (*LanguageSpec, bool) {
 	defer r.mu.RUnlock()
 	spec, ok := r.languages[langName]
 	return spec, ok
-}
+}