DEV Community

Discussion on: Builtin Solidity Language Server

Collapse
 
skurob profile image
roberto montalti • Edited

Nice guide, i've followed the steps needed to set this up on vim with coc, i've noticed that my language server only reports possible compile errors but auto-suggestions doesn't seem to work, it this intended to be happening, am i missing something?

my coc config looks like this

    "languageserver": {
        "solidity": {
            "command": "solc-linux64",
            "args": [ "--lsp" ],
            "trace.server": "verbose",
            "rootPatterns": [".git/"],
            "filetypes": ["solidity", "sol"]
        },
        ...other configs
Enter fullscreen mode Exit fullscreen mode


`

Collapse
 
christianparpart profile image
Christian Parpart

Hey. Many thanks for your interest. Yes, that is intended as it is - for now - just a PoC (proof of concept). I definitely want to continue working on this and we have it in our high priority item list, so it will come. I will by then also keep posting updates. I am really happy about all the positive Feedback have have gotten so far. Many thanks.

p.s. auto complete is a non-trivial task, given the way the compiler currently works. So expect other features before that will come.

Many thanks!