Jack Cherng

Results 289 comments of Jack Cherng

Interesting... from [line 168](https://github.com/aziz/SublimeANSI/blob/master/ansi.py#L168), so `view` is valid but `view.window()` returns `None`. Kind of wtf to me :grinning: > window() Window Returns a reference to the window containing the view....

@matt1003 Sorry for my bad memory. An event listener class has no `self.view` indeed.

I can see ![image](https://user-images.githubusercontent.com/6594915/214601273-8792ba89-ae0a-45cb-8e26-f67806b21b47.png) when I trigger code action manually. But honestly, I would recommend DoxyDoxyGen plugin (LSP-intelepense handles `Exception` better though).

Not related to LSP-intelephense anyway. Should be a LSP question. I would guess this is as designed in https://github.com/sublimelsp/LSP/pull/2081

Maybe @raffeyang can test this.

I think it can be done by modifying - (background) `color` in https://github.com/aziz/SublimeANSI/blob/645bd39406b9c1be393d750b3911beb6951658fc/ansi.sublime-settings#L30 - `background` and `foreground` in https://github.com/aziz/SublimeANSI/blob/645bd39406b9c1be393d750b3911beb6951658fc/ansi.sublime-settings#L49-L58 ## Example ```js { "ANSI_BG": [ {"scope": "", "code": "(?

> I have not been able to get a light theme to work. The issue is that the dark default foreground color is being ignored. I would recommend the Terminius...

I am not a Zig guy. It requires a `build.zig` file in your project root. https://github.com/ziglang/sublime-zig-language/blob/1a4a38445fec495817625bafbeb01e79c44abcba/Build%20Systems/Zig.sublime-build#L5

The general [CSI sequences](https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_sequences) is unsupported. Only 3/4-bit color are supported from what I can guess from the codes.

> Not supported? then 1. why not? Fact: To color a region, you have to provide its scope for ST. There is no other way to do it currently. For...