code-assistance

PHP and Aptana, unset keyword gets underlined like there is an syntax error

i have this simple loop: for($i=$_POST['position'];$i<count($myFiles);$i++) { $withoutNumber = explode("_",$myFiles[$i]); $noNr = unset($withoutNumber[0]); } my code editor is Aptana, and the problem is that when i write this code i get the unset keyword underlined like is an syntax error and i have no idea why that hap...

How do I enabling jQuery code assist in Notepad++

Hello I have recently downloaded Notepad++ and am at loss on how to enable code assist for JQuery/JQueryUI on it. Any tips and directions? ...

Eclipse-PDT code assist tooltip window size / font size

It's only a minor gripe but I have to resize the window to see the whole code assist tooltip and Eclipse doesn't remember the window size. Reducing the font size would do the trick but I can't figure that out either. I don't think it's platform specific but I'm on Eclipse 3.5 for Mac OS X. This Dupe implies that it works with Java but n...

eclipse editor, ex: xml editor, code assistance. how it works?

Hello, I wonder how eclipse editor works to enable code assistance? For example: XML editor for hibernate property file. Within the editor, if I ctrl-space within a tag, a list of possible value relevant to hibernate will show up. I understand that the xml editor is pre-configured to understand xml tag, but how about tag specific t...

Auto generate header files for a C source file in an IDE

I am trying to use Eclipse and NetBeans for programming in C (not C++). Is there a feature/plugin for them which automatically keeps the source and header files in sync? As in, when I implement a function in the source file, does it automatically insert the correct lines in the header file? I did look at solutions like lzz, but they ar...

C++: Code assistance in Netbeans on Linux

Hi, My IDE (NetBeans) thinks this is wrong code, but it compiles correct: std::cout << "i = " << i << std::endl; std::cout << add(5, 7) << std::endl; std::string test = "Boe"; std::cout << test << std::endl; He always says: unable to resolve identifier .... (.... = cout, endl, string); So I think it has something to do with the code...