Jongwook Choi

Results 530 comments of Jongwook Choi

Why not just `:CocCommand explorer %:p:h`? Isn't it consistent with `:e %:p:h`, etc.? The ` syntax seems surprising and not standard.

Environment variables might be fine; it's the feature we can define, but in my humble opinion, vim functions are exactly for this in general. UPDATE: Actually I didn't know the...

It is not implemented, as you can see if you read the discussion carefully.

ALE supports some diagnostics level mapping as follows (this is quite generic and not specific to linter source). Why don't null-ls.nvim allow a similar feature of remapping diagnostics level? May...

Of course, I didn't mean the use of global variables but some source-specific configs (using `.with`) -- just like in your proposed snippet. Overriding `on_output` is most powerful method to...

Can anybody share the detailed stacktrace? I suspect this is a python2 related issue as in #3.

This is a python2 problem. An easiest workaround is to fix the script filter as ```diff -python papers3.py "{query}" +python3 papers3.py "{query}" ``` where `python3` should be in your normal...

Hello @adiprs-metropolis, thanks for posting the issue. You are pointing that there are two conflicting ` +` keybindings: ``` bind-key + select-layout main-horizontal bind-key + resize-pane -D 5 ``` Yes,...

Do you use `c-a =` (or select-layout main-horizontal) often? I was actually thinking about bind-key `M-=` (Alt =) for main-horizontal and `=` for main-vertical. FYI the following are built-in keymaps...

To make (some) treesitter modules work properly with up-to-date parse tree as text change, either playground-highlight module needs to be enabled or some workaround like ec2f252 is needed, when one...