Stephan Seitz

Results 462 comments of Stephan Seitz

I've also added `glslc` and `dxc` to https://github.com/mfussenegger/nvim-lint my setup is ```lua use { "mfussenegger/nvim-lint", config = function() local function select_executables(executables) return vim.tbl_filter(function(c) return c ~= vim.NIL and vim.fn.executable(c) ==...

Having the same problem. Additionally when I want to use nanogui as a dependency in a own project I have in addition to linking to libnanogui.so also to manually build...

I added the respective file to this list: https://github.com/mitsuba-renderer/nanogui/blob/0146a88b2214cd5c5c29e6dfa8d3d3d0e9ab6d9d/CMakeLists.txt#L378 or I added them to my project (don't remember). Probably the are supposed to be added by ` ${NANOGUI_EXTRA}`

The inlay hints are requested by a custom request (`rust-analyzer/inlayHints`) https://github.com/rust-analyzer/rust-analyzer/blob/17dda0972a68dd88a766c223390317dc2cb3ea00/editors/code/src/inlay_hints.ts#L135-L148 I think conceal can only hide text. I think we need to wait until virtual text gets extended in...

@kristijanhusak Have you tried `:TSInstallFromGrammar` ? `parser.c` is generate for ABI 13. ABI 14 brings optimizations for loading speed of queries. `:TSInstalLFromGrammar` will regenerate for the best ABI (=the runtime...

It's a lot better for me with `:TSInstallFromGrammar`. We can change the parser to `requires_generate_from_grammer = true`

ABI 14 (parsing an almost empty file) ``` ❯ hyperfine "tree-sitter query /home/stephan/.local/share/nvim/site/pack/packer/start/neorg/queries/norg/highlights.scm /home/stephan/projects/norg/bugs.norg" Benchmark 1: tree-sitter query /home/stephan/.local/share/nvim/site/pack/packer/start/neorg/queries/norg/highlights.scm /home/stephan/projects/norg/bugs.norg Time (mean ± σ): 153.9 ms ± 1.8 ms [User:...

@kristijanhusak feel free to report. Have you investigated what the actual issue is? In which function is it hanging: parsing, querying? You can confirm with a profiler attached (`perf`, `perf...

Strange, it seems to be working fine for me for filetype tsx. ![grafik](https://user-images.githubusercontent.com/7189118/180620207-74ae1e8c-2731-469e-be99-b03d96caace4.png) Your configuration seems to be ok with all the parsers installed. What is the highlight in the...