tomlion / vim-solidity

Vim syntax file for solidity
MIT License
490 stars 321 forks source link

Block comments unindent by one space each line #3

Open patcon opened 8 years ago

patcon commented 8 years ago

Seems like multiline comments might confuse vim-solidity. Having said that, I am using editorconfig, so if you can't reproduce, that might be where we diverge :)

contract SimpleStorage {
    uint storedData;

    /** 
    *
   *
  *
 *
    */
    function set(uint x) {
        storedData = x;
    }  
sebastien-kr commented 6 years ago

Maybe this issue should be closed ? It seems to be fixed.

lexansoft commented 4 years ago

No. Still funny behaviour when moving cursor through the commented paragraph ;(