Sublime Forum

CodeIntel ported from Open Komodo Editor

#172

That’s pitty that it doesn’t work on Ubuntu finally. It was the most important plugin for me to rapid coding with SublimeText :frowning:

0 Likes

#173

+1

0 Likes

#174

Is any work being done on fixing this on Ubuntu ?

0 Likes

#175

soooo. anyone willing to take up the reigns on this project and getting it up to date for all os’ and latest dev releases of st2? :smiley: do we need a bounty?

0 Likes

#176

php 5.3 namespace autocomplete would also be pretty sweet…

0 Likes

#177

[quote=“xavi”]

+1[/quote]

+1

0 Likes

#178

Still doesn’t work at all on Windows. Sure wish someone would take over this plugin or it would become core. I could really use some Django autocompletion. Would pay for this plugin…

0 Likes

#179

This plugin does, in fact work on Windows, I can confirm that.

0 Likes

#180

Can you explain if you’ve done anything to make it work? I had previously tried it without success as well.

0 Likes

#181

In summary, it’s not perfect, but it’s better than not having it.

For instance, it chokes pretty hard on SQL Alchemy scoped_sessiosn and declarative_base(), and doesn’t seem to resepect the sqlalchemy package.

That said, it works pretty well for just about everything else.

As background, I’m running 32 python 2.7 (64 bit wasn’t playing nice with pyodbc)

Because of the inherent ‘gotchas’ with the plugin, it can seem as if it’s not functioning.

A quick way to check and see if it’s working is to create a new file with ‘python’ selected as the syntax.
Then, in the file, type “from” and hit space.
In the bottom gutter, if working, you should see modules being scanned.
After the modules finish scanning you should see a list of modules in a popup, you can import from.

As python’s a dynamic language, there will exists cases where the parser won’t be able to determine what type the object you’re working with is – in these cases you will not get autocomplete suggestions.

Finally, one additional sanity check I can recommend that gave me peace of mind was to cross-validate the auto-suggest in KomodoEdit. If the snippet you’re working with also fails in Komodo, there’s not much to be done from the plugin-side, as it references the Komodo library.

0 Likes

#182

Not working on Ubuntu with kernel 3.0.0-16 x64. Updating indexes process never ends =(

0 Likes

#183

Same here - the Ubuntu plus updating indexes thing, I mean. Sadcakes.

0 Likes

#184

FWIW, I was actually able to get it working using Ubuntu 11.10. A co-worker and I decided to beat our heads against it.

The issue, it seems, in my case, is that I had nothing in the config file. Dunno why it was blank, but there you go.

0 Likes

#185

First of all: great plugin! I’m looking for a replacement for Eclipse(which is way too bulky and buggy) and this plugin made Sublime a great candidate.

There is however one thing I’m missing: support for phpdoc tags. For example:

<?php
class Foo {
    /*
      * @return Bar a bar class
      */
     public function getBar() {
         $bar = new Bar();
         return $bar;
     }
}

class Bar {
     public function getHello() {
         return 'hello';
     }
}

$foo = new Foo();
echo $foo->getBar()->getHello(); // getHello doesn't easily autocomplete or jump to definition here, it does show eventually, but first all default PHP functions show
?>

Is there some way to fix this?

0 Likes

#186

I use the DocBlokr plugin for that, works great!

0 Likes

#187

Thanks for the tip, seems to do the trick at first sight. Will do a test soon with a bigger project to see if it works there :smile:

0 Likes

#188

[quote=“mpedrummer”]FWIW, I was actually able to get it working using Ubuntu 11.10. A co-worker and I decided to beat our heads against it.

The issue, it seems, in my case, is that I had nothing in the config file. Dunno why it was blank, but there you go.[/quote]

Can you be more specific? Which configuration file was empty? I can not get anything but the message of “Updating indexes for PHP… The first time this can take a while” and a 100% CPU (T_T)

0 Likes

#189

It’s the file referred to in the “Configuring” section here - github.com/Kronuz/SublimeCodeIntel

For me, it was ~/.codeintel/config - that file was empty. I just pasted the example from github in there, and it started working for me.

0 Likes

#190

[quote=“mpedrummer”]It’s the file referred to in the “Configuring” section here - github.com/Kronuz/SublimeCodeIntel

For me, it was ~/.codeintel/config - that file was empty. I just pasted the example from github in there, and it started working for me.[/quote]

You are a lucky man. I tried with the configuration file at ~/.codeintel/config, adde a config file at project .codeintel directory, to recompile plugin libraries … and nothing … just CPU at 100% and “Updating indexes for PHP…” message = (

0 Likes

#191

I’m waiting for it to break :smile:

My co-worker, who had initially gotten it to work in Ubuntu, has subsequently had it stop working. We haven’t been able to figure out why.

Oh, computers. You suck, and I love you.

0 Likes