branch: master
commit e14cd4f9fc242d3bc9b24cce9d1d864d32cbf86a
Author: chunzhouyu <[email protected]>
Commit: chunzhouyu <[email protected]>
add some comments for adding go-mode's fake keywords
---
company-keywords.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/company-keywords.el b/company-keywords.el
index 57486c9..9283057 100644
--- a/company-keywords.el
+++ b/company-keywords.el
@@ -143,6 +143,7 @@
"use" "value" "verify" "volatile" "wait" "where" "while" "with" "write"))
(go-mode
;; from https://golang.org/ref/spec#Keywords
+ ;; also, i add some fake keywords for a better programming experience,
all of them are basic type in golang
"bool" "break" "case" "chan" "complex128" "complex64" "const" "continue"
"default" "defer" "else" "fallthrough" "float32" "float64"
"for" "func" "go" "goto" "if" "import" "int" "int16" "int32" "int64"
"int8" "interface" "map" "package" "range"
"return" "select" "string" "struct" "switch" "type" "uint" "uint16"
"uint32" "uint64" "uint8" "uintptr" "var")