KITAGAWA Yasutaka

Results 23 comments of KITAGAWA Yasutaka

I have no specific case. It is easier to read if the columns are in the same order as the query.

In my case, `xcodebuild clean` with same options to build works. ```sh xcodebuild -workspace WORKSPACE.xcworkspace -scheme SCHEME clean xcodebuild -workspace WORKSPACE.xcworkspace -scheme SCHEME | xcpretty -r json-compilation-database --output compile_commands.json ```

> I simply have to manually print a newline before running my cmd so the output is below current prompt I think it is better to print a newline manually....

The panic occurs here. https://github.com/nushell/nushell/blob/e083b75aefc484f091d05cdd2a239afc3cb042b3/crates/nu-command/src/generators/seq_date.rs#L318 `std::panic::catch_unwind()` can capture the panic.

This bug is caused by [this](https://github.com/nvim-treesitter/nvim-treesitter-context/commit/53102ec44bd5f692f29dbaa17650b5d74d55ccef#diff-4a5e2a3d78d50001f3a4ff86193e38a402518156a1abf39f9d7d8e3b405f0984) change.

This problem appears to arise with specific terminal applications. I can not reproduce with Windows Terminal. With wsltty, I can reproduce the problem even when the prompt spans multiple lines.

When I tried omisharp-roslyn v1.37.6, the duplication is 2, not 4. I also tried below, and got the same result. ```json { "languageserver": { "csharp": { "command": "/opt/omnisharp-1.37.7/run", "args": ["-lsp"],...

This may be a problem of coc.nvim. I tried with coc.nvim v0.0.78, then this issue did not happen. But with coc.nvim v0.0.80, this issue happened. I tried [omnisharp-vim](https://github.com/OmniSharp/omnisharp-vim) (this also...

This change of coc.nvim is related. https://github.com/neoclide/coc.nvim/commit/190ebfcef93bad77407225ca17072339570f2ddb It seems like omnisharp-roslyn send multiple [client/registerCapability](https://microsoft.github.io/language-server-protocol/specification#client_registerCapability) requests, and multiple sources are added. Before the change of coc.nvim, multiple sources are created but...