rusproject

Results 24 comments of rusproject

There should be a way for unused variables to be rendered as warnings, not just as faded-out text. Although it can sometimes be a little annoying to write code like...

@str Thank you! Never thought about it this way. Probably need to update a couple of hundred places in the codebase 😀 However, this solves the problem for the foreach...

> This is completely valid Omg, you're gorgeous! Who would have known that one simple message in the issue comments would teach me two new things in PHP 😁 Thanks...

I wouldn't mind seeing `` in Sublime Merge if it were the same as it is in `git diff`, i.e. only for changed parts: ![image](https://github.com/sublimehq/sublime_merge/assets/62891105/93e6d10d-2db3-40de-b046-1744602a6c34) However, Sublime Merge has now...

@voltaek I agree, kind of in the same boat. > Also, in the meantime, where can I download the previous build? One way I know is to modify the build...

Thanks for the clarification, I will look for some codestyle plugin, thought intelephense has this feature built-in. About your last sentence, what do you mean by "... Intelephense doesn't format...

Oh I'm sorry, now I can see that LSP-intelephense has "Format file" command, which is really fixes some issues. Yeah it isn't perfect, and doesn't actually solve the problem: I...

@jfcherng Thank you, phpcs + sublimeLinter seems to work. ![image](https://user-images.githubusercontent.com/62891105/210831498-c0673e81-ec30-45fb-8acc-02368bc1e77b.png) Now trying to figure out how to control rules, because I don't actually need "tabs instead of spaces" error and...

It was already `tab-width=4` in my ruleset: ```xml ``` I've tried to set `tab-width=0` or delete it, and then highlights were in right places. But it's leading us to another...

> looks like phpcs reports columns with tabs expanded I don't think this is the problem, LSP reports same `line:column` but highlights correctly: ![image](https://user-images.githubusercontent.com/62891105/211169360-ede8d7c5-d467-4d5c-b145-41ce6deb952e.png)