deathaxe

Results 817 comments of deathaxe

``` self.window.run_command( "show_panel", {"panel": "find_in_files", "where": ", ".join(valid_paths)} ) ``` It's from FileManager plugin. It doesn't add the filter.

A dedicated `hangingIndentPattern` may be the most flexible solution to specify language specific rules for hanging indentions. The pattern could be matched against the beginning of a line to determine...

Maybe a timer can be used to update status bar messages with an interval of 1 second, so not each saved file is printed individually.

Typing has been fixed in ST 4135/4137

I don't see any issues with regards to recent projects or files on Windows. May this issue be related with ST continuing to run in background without any window open...

> The part that was not working in ST4 was the case of manually pressing ctrl+space which did not insert the completion automatically anymore. Don't think this statement is very...

Yes, `html` is the tab trigger for the html.sublime-snippet. ST3 seems to hide the `html` completion as there is a snippet with exectly the same tab trigger. Not sure, whether...

The issue is caused by LSP-json https://github.com/sublimelsp/LSP-json/blob/12f3548217f64c33f9196c38c8dc972571f6463e/plugin.py#L82-L87 which invokes `auto_complete` when typing `""`. So I'd close this one as "invalid".

ST 4139 extends the `auto_complete` command by an `"commit_single": true` argument to control, whether the command should auto commit a single completion candidate. This should fix this issue and maintain...