Chinmay Dalal

Results 249 comments of Chinmay Dalal

> cxxstd=17 don't you need 20 for this `names_as_array` and friends? > toolset=clang-19 my distro only has llvm 18 regardless, i'll try and see if this works

can you make it so that it crashes neovim when it sees `;;; -*- lexical-binding: nil -*-`

by forcing lexical binding we can finally get rid of legacy code which uses dynamic binding

The client name doesn't have to be `clangd` for clangd, see `:h vim.lsp.ClientConfig` - it is user defined. Why does csspell_ls advertise support for `textDocument/switchSourceHeader`?

this line https://github.com/p00f/clangd_extensions.nvim/blob/b67cc417d9020fb4b83d46662351b4d16894905e/lua/clangd_extensions/utils.lua#L4 filters clients which are attached to the same buffer and support the requested method (the `method = method` part, see `:h vim.lsp.get_clients()`), so if csspell_ls is advertising...

> My current workaround to achieve this is to store the current selection inside a global in a custom action, and read that global after the Picker:find() call terminates. @smackesey...

@fdschmidt93 I want to avoid callbacks because there is a lot of other context from nested calls for what I'm trying to do. Is there another solution like blocking until...

Actually can we try to use the actual types from https://clangd.llvm.org/extensions#ast This page details the types so we can use that instead of just `table` (for all the features, not...