Skip to content

A Language Server Protocol Implementation for Circom

License

Notifications You must be signed in to change notification settings

akfork/circom-lsp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

circom-lsp

A language server protocol implementation for Circom

Installation

Installation through Cargo:

cargo install circom-lsp

There is also an accommodating VSCode extension under the name: circom-lsp

Code for neovim + https://github.com/VonHeikemen/lsp-zero.nvim setup:

local lsp = require('lsp-zero').preset('recommended')

lsp.new_server({
    name = 'circom-lsp',
    cmd = { 'circom-lsp' },
    filetypes = { 'circom' },
    root_dir = function()
        return lsp.dir.find_first({ 'package.json' }) or vim.api.nvim_buf_get_name(0)
    end,
})

Features

  • Diagnostics
  • Hover
  • Go To Definition

About

A Language Server Protocol Implementation for Circom

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 97.7%
  • TypeScript 2.2%
  • Shell 0.1%