Reputation: 3077
Just installed SublimeCodeIntel via PackageControll plugin on my Windows 7 x64 PC for the latest (v 2.0.1) SublimeText 2, and there has no effect when I try autocomplete simple class method 'foo':
<?php
class Foo {
public function foo($a) { echo $a; }
}
$f = new Foo();
$f->
?>
Any suggestions? P.S. Also .codeintel directory doesn't contain any log files and yes, I'd restarted SublimeText 2 after plugin install.
Upvotes: 1
Views: 3267
Reputation: 31
Here's what got CodeIntel to work for PHP for me:
Upvotes: 0
Reputation: 4632
This issue appears to have been solved.
Manually Downloading the latest version of SublimeCodeIntel solved this issue for me. I basically deleted the "SublimeCodeIntel" folder from the Sublime\Data\Packages dir and cloned the entire repo directly from github into that folder and worked as expected! :)
https://github.com/Kronuz/SublimeCodeIntel
Upvotes: 1
Reputation: 11
yep there is issue with Sublime 2.0.1 You need wait for CodeIntel update
Upvotes: 1