Hong Xu

Results 374 comments of Hong Xu

I don't doubt about the technical excellence of Bun, I like a lot of their features -- I think its negative sides are mostly non-technical and coming from historical burdens...

Are you developing an editor plugin? The core library is used by editor plugins. To see the proper output, run editorconfig /path/to/the/file/of/interest The command line program will read relevant `.editorconfig`...

@SunsetTechuila Absolutely! Having one LSP server is better than lingering on considering which language to use :)

@GuillaumeDua Could you take a look? It's been a few days :)

You can do this: ``` [*{CMakeLists.txt,.cmake}] ``` It's not ideal, but a decent workaround that is unlikely to encounter the erroneous corner cases. The VSCode plugin didn't work correctly with...

``` [somefile.py] indent_style = tab tab_width = 4 indent_size = 2 ``` This style is used by many projects. For example, gcc uses tab_width=8 and indent_size=2. I randomly picked a...

The gcc file has a `tab_width` of 8 and `indent_size` of 2. It's just one style that gcc picks, and we support this style. (Maybe it's easier to understand if...

It's not a guideline. If indent_style = space, the file need to be indented by spaces. The tabs in the example above needs to be replaced by space in this...