Gerard Roche

Results 255 comments of Gerard Roche

Removing logger handlers in the `plugin_unloaded()` hook doesn't work for me when a root module is reloaded. It looks like root modules get reloaded twice, once by ST and once...

The color scheme doesn't do anything with the font, just colors the text. You can configure your font in ST, this might help e.g. ``` "font_options": [ "gray_antialias", "no_italic", "no_bold"...

`"tab_completion": true,` should make it work, maybe you have auto complete with fields enabled? ``` // Controls if auto complete is shown when snippet fields are active. // Only relevant...

Use the `auto_complete_commit_on_tab` setting to avoid commit of completions on Enter. // By default, auto complete will commit the current completion on enter. // This setting can be used to...

The default for the `phpunit.composer` setting should be true. It's hard to know why the default is not being loaded. I can't reproduce the issue. I'd need a lot more...

Hmm. I can't reproduce the issue. I've added extra logging in the latest release (it will be available from Package Control soon). If it's possible try post some logging and...

Yes please remove the fix and paste the log. The above log looks good I can see that the composer setting is set to true: `config phpunit.composer=True` and everything else...

Aswell as debug information, to see the state of of the `phpunit.composer` setting on the various objects try: ``` >>> sublime.active_window().settings().get('phpunit.composer') >>> sublime.active_window().active_view().settings().get('phpunit.composer') >>> sublime.load_settings('Preferences.sublime-settings').get('phpunit.composer') ```

Can you show the settings for `phpunit.options`? Here is my own: ``` "phpunit.options": { "no-coverage": true, }, ``` Here is the default: ``` // Command-line options to pass to PHPUnit....

Sounds related to https://github.com/gerardroche/sublime-phpunit/issues/95.