Variable: go-ts-mode--builtin-functions

go-ts-mode--builtin-functions is a variable defined in go-ts-mode.el.gz.

Value

("append"
 "cap"
 "clear"
 "close"
 "complex"
 "copy"
 "delete"
 "imag"
 "len"
 "make"
 "max"
 "min"
 "new"
 "panic"
 "print"
 "println"
 "real"
 "recover")

Documentation

Go built-in functions for tree-sitter font-locking.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/go-ts-mode.el.gz
(defvar go-ts-mode--builtin-functions
  '("append" "cap" "clear" "close" "complex" "copy" "delete" "imag" "len" "make"
    "max" "min" "new" "panic" "print" "println" "real" "recover")
  "Go built-in functions for tree-sitter font-locking.")