vim

sheluchin 2023-06-26T13:08:55.336439Z

Anyone have a fennel linter setup I can look at? I'm making the jump to fennel and after setting up the linter I'm getting many false positives for undefined identifier:

(lsp.fennel_language_server.setup
    {
     :default_config
     {;:cmd {"/PATH/TO/BINFILE"}
      :filetypes ["fennel"]
      :single_file_support true
      :root_dir (lsp.util.root_pattern "fnl")
      :settings
      {:fennel
       {:workspace
        {:library (vim.api.nvim_list_runtime_paths)}
        :diagnostics
        {:globals ["vim" "nvim" "lsp"]}}}}})

frankitox 2023-06-28T17:16:49.424069Z

There was a little chat about https://clojurians.slack.com/archives/C01A2GVG346/p1686145615490769, basically it's very limited right now

sheluchin 2023-06-28T21:37:38.499869Z

Thanks for the pointer, @franquito. Looks like there's an open issue https://github.com/rydesun/fennel-language-server/issues/2

👍 1