Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelog.MD
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The changelog starts from version 0.1.4 as too much was added in each version be

- Fixed flycheck integration doesn't search for solc and solium in PATH.

- Add `constructor` as keyword.

## Version 0.1.9

- Integrated [company-solidity](https://github.com/ssmolkin1/company-solidity) into solidity-mode, providing autocompletion out of the box if the user has [company-mode](http://company-mode.github.io) installed.
Expand Down
23 changes: 12 additions & 11 deletions solidity-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -83,53 +83,54 @@ Possible values are:

(defconst solidity-keywords
'("after"
"anonymous"
"as"
"assembly"
"assert"
"break"
"constant"
"anonymous"
"constructor"
"continue"
"contract"
"default"
"delete"
"do"
"else"
"emit"
"enum"
"event"
"external"
"for"
"function"
"if"
"import"
"in"
"is"
"indexed"
"interface"
"internal"
"is"
"library"
"mapping"
"memory"
"modifier"
"new"
"pragma"
"private"
"public"
"internal"
"pure"
"view"
"require"
"return"
"returns"
"revert"
"storage"
"struct"
"switch"
"this"
"throw"
"using"
"var"
"view"
"while"
"enum"
"throw"
"assert"
"require"
"revert"
"storage"
"memory"
)
"Keywords of the solidity language.")

Expand Down