Per the title, doing any kind of editing on large source files in the Zig compiler is very slow. On these files, every keystroke takes anywhere from half a second to several seconds to be fully processed.
src/codegen/x86_64/CodeGen.zig is the worst offender, but src/Sema.zig is also quite bad.
This happens even with LSP disabled, so it doesn't appear to be an issue in ZLS.
Per the title, doing any kind of editing on large source files in the Zig compiler is very slow. On these files, every keystroke takes anywhere from half a second to several seconds to be fully processed.
src/codegen/x86_64/CodeGen.zigis the worst offender, butsrc/Sema.zigis also quite bad.This happens even with LSP disabled, so it doesn't appear to be an issue in ZLS.