tomlion / vim-solidity

Vim syntax file for solidity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

constructor keyword not colored

wjmelements opened this issue · comments

A recent version of solidity added the constructor keyword.

contract OwnedToken {
    address owner;
    bytes32 name;

    constructor(bytes32 _name) public {
        owner = msg.sender;
        name = _name;
    }
}

Another word that is not colored is is, which is the inheritance keyword.

Pull request has been created for constructor. #31