1
vote
1answer
31 views
Building IntelliSense/AutoComplete in JavaScript
I currently maintain an add-on for Firefox that adds a number of capabilities to a forum web site that implements its own markup language, similar to what stackoverflow provides with "Markdown."
I …
1
vote
4answers
187 views
C++ IDE with good intellisense
So I've been using Visual Studio 2008 for my C++ development for a while now, however the insanely crappy intellisense has been bugging me for ages.
I'm looking for an alternative C++ IDE where the …
2
votes
1answer
34 views
How do I implement intellisense support for a custom DLR language in VS2008?
I have just started writing my first language for the .NET DLR.
I would like to know if it is possible to extend Visual Studio 2008 IntelliSense to handle the syntax of a custom DLR language?
EDIT: …
0
votes
2answers
35 views
Dot net 3.5:how to enable intellisense while writting xml file refering to defined schema?
I have defined a xml schema as below
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="PacketTemplate"
targetNamespace="http://tempuri.org/PacketTemplate.xsd"
…
0
votes
1answer
20 views
Variable type hinting in Netbeans (PHP)
Just curious if there's a way in netbeans to give type hints for regular variables, so that intellisense picks it up. I know you can do it for class properties, function parameters, return types, etc. …
2
votes
1answer
32 views
SQL Server 2008 Intellisense - Typing ‘top’ brings up tables, causes confusion
Hey everyone,
SQL Server 2008 introduced Intellisense while writing queries. Problem is, whenever I type in "SELECT TOP" and press space, it replaces TOP with a table named 'Top3_Animations'...
Is …
3
votes
4answers
77 views
Visual Studio Intellisense not showing methods on generic overload
Given the following two interfaces (these are small examples, not my actual implementation):
public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAssertion<T> …
2
votes
4answers
139 views
C++ IntelliSense ‘auto’ feature? Where is it? How to get it ‘on’?
I would like to enable the IntelliSense 'auto' feature (like the Visual Studio C# 2008 Express) but I am using Visual Studio C++ 2008 Express Edition and in the Tools > Options > Text Editor > C/C++ …
3
votes
6answers
291 views
emacs completions or IntelliSense the same as on Visual Studio
emacs 22.2.1 on Linux
I am doing some C/C++ programming using emacs. I am wondering does emacs support completions (IntelliSense in Visual Studio).
For example when filling structures I would like …
0
votes
2answers
59 views
Visual studio (2008) integration - intellisense and colourizer
Hi Guys,
So I'm now about to look at getting visual studio integration working for our port of the Less ruby library: www.dotlesscss.com. This is basically a CSS preprocessor that extends on the CSS …
0
votes
1answer
71 views
visual studio intellisense error
template <typename T>
class Test {
friend Test<T> & operator * (T lhs, const Test<T> & rhs) {
Test<T> r(rhs);
// return r *= lhs;
}
}
4 …
0
votes
2answers
34 views
Using Intellisense in Visual C++ 2008 Express. Intellisense for one project not available when editing file in another project.
I have a multiple vcproj solution going and it seems that no other project's intellisense information is available when editing a file in another project. However when I'm within a file in a project, …
2
votes
3answers
133 views
Why does the compiler find this ambiguous?
In my base class I have a generic method (ideally this would be a property, but you can't have generic properties) and a non-generic property, both with the same name:
protected static T …
1
vote
1answer
39 views
Intellisense for C# User Control in VB.NET project
Hello,
I have created a C# user control which I want to use in VB.NET .. the control works fine, but in VB.NET the Intellisense does not show any of the C# user control function descriptions (in …
0
votes
1answer
32 views
No intellisense in XAML
I'm no longer getting intellisense in my XAML. Not too long ago, I changed some settings within VS 2008. I believe one of them had to do with auto-loading the toolbox. Secondly, I changed the …
