branch: externals/company
commit a96295c055a6938458588b9933e5c0a3fcfae1e5
Merge: 09bb128cc0 5b14107d60
Author: Dmitry Gutov <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #1341 from tsloughter/erlang-keywords
add erlang-mode keywords
---
company-keywords.el | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/company-keywords.el b/company-keywords.el
index df5402451c..04feb8e6a3 100644
--- a/company-keywords.el
+++ b/company-keywords.el
@@ -105,6 +105,11 @@
"super" "switch" "synchronized" "template" "this" "throw" "true" "try"
"typedef" "typeid" "typeof" "ubyte" "ucent" "uint" "ulong" "union"
"unittest" "ushort" "version" "void" "volatile" "wchar" "while" "with")
+ (erlang-mode
+ ;; from
https://www.erlang.org/docs/20/reference_manual/introduction.html#id63536
+ "after" "and" "andalso" "band" "begin" "bnot" "bor" "bsl" "bsr" "bxor"
+ "case" "catch" "cond" "div" "end" "fun" "if" "let" "not" "of" "or"
"orelse"
+ "receive" "rem" "try" "when" "xor")
(f90-mode .
;; from f90.el
;; ".AND." ".GE." ".GT." ".LT." ".LE." ".NE." ".OR." ".TRUE." ".FALSE."