Gabriel Wanzek

Results 44 comments of Gabriel Wanzek
trafficstars

`~/.codeintel/` was created, so maybe it was installed? However here is my errorlog: ``` (10:02:03) ~ ➜ pip3 install -U CodeIntel Collecting CodeIntel Using cached https://files.pythonhosted.org/packages/0a/24/141db0d6c64453e6848849979b9c527d3547ad1552674763000e9da2a648/CodeIntel-2.0.0.tar.gz Collecting 3to2 (from CodeIntel)...

bower itself recommends using yarn instead. But a package.json would neat. Creating a package is pretty easy: https://yarnpkg.com/lang/en/docs/creating-a-package/

I made a snippet for that: ```js $('body').on('keyup', (e) => { var currentIndex = $('#anims :selected')[0].index; if (e.key == 'ArrowLeft') { $('#anims option').eq(currentIndex - 1).prop('selected', true); $('#anims').trigger('change'); } else if...

Sadly didn't found any option to accomplish this.

Same here... (Meteor 1.2.0.2) ``` TypeError: Cannot read property 'getName' of undefined at getCurrentRouteName (manuelschoebel_ms-seo.js:247) at manuelschoebel_ms-seo.js:253 at Tracker.Computation._compute (tracker.js:323) at Tracker.Computation._recompute (tracker.js:342) at Object.Tracker._runFlush (tracker.js:481) at onGlobalMessage (setimmediate.js:102) ```...

:+1: - would be awesome to provide a config for setting a custom php path.

@tokayer Since there are no updates I just hardcoded my custom PHP path in this [line](https://github.com/naomichi-y/php_syntax_checker/blob/master/phpSyntaxChecker.py#L6) So the line looks like this: ```py EXECUTE_COMMAND = "/usr/local/bin/php -l" ``` You can...

@tokayer Which OS & Sublime build are you using? - The path I've suggested is default for macOS and Sublime 3

@tokayer Hm, maybe you could do it this way: 1. Install [PackageResourceViewer](https://packagecontrol.io/packages/PackageResourceViewer) by `Package Control: Install Package` 2. Press CMD+Shift+P 3. Type `prvor` for `PackageResourceViewer: Open Resource` 4. Search for...

You can edit `PhpSyntaxChecker.py` to change `EXECUTE_COMMAND` to your `php.exe` path