up vote 1 down vote favorite
1
share [g+] share [fb]

I read the DIY Intellisense article on code project, which was referenced from the Mimic Intellisense? question here on SO.

I wanna do something similar, DIY intellisense, but for XPath not C#.

The design approach used there makes sense to me: maintain a tree of terms, and when the "completion character" is pressed, in the case of C#, a dot, pop up the list of possible completions in a textfield. Then allow the user to select a term from the textfield either through typing, arrow keys, or double-click.

How would you apply this to XPath autocompletion?

  1. should there be an autocomplete key? In XPath there is no obvious separator key like "dot" in C#. should the popup be triggered explicitly in some other way, let's say ctrl-. ? or should the parser try to autocomplete continuously?

  2. If I do the autocomplete continuously, how to scale it properly? There are 93 xpath functions, not counting overloads. I certainly don't want to popup a list of 93 choices. How do I decide when I've narrowed it enough to offer a useful lsit of possible completions?

  3. How to populate the tree of possible completions? For C#, it's easy: walk the type space via reflection. At a first level, the "syntax tree" for C# seems like a single tree, and the list of completions at any point depends on the graph of nodes you've traversed to that point. Typing System.Console. traverses to a certain node in that tree, and the list of completions is the set of child nodes available at that node in the tree. On the other hand, the xpath syntax seems like it is a "flatter" tree - function names, axis names, literals. Does this make sense?

  4. what have I not considered?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Check out the RegexEditor http://editorsamples.codeplex.com/ this is a sample editor for regular expressions. it is a part of the VisualStudio 2010 Beta. I think that from the standpoint of the Intellisense approach it should be very similar to XPath. Also if you plan to implement it as VS Plug-in (Packagae, add-in, whatever) I would suggest considering doing it for VS2010 - it is order of magnitude easier to do it as MEF based editor extension

link|improve this answer
feedback

Would love this! Any progress?

My 2 cents: standard vb intellisense provides all 93 or all 200 or however many choices are legit, in context, which I think is correct behavior. It does not try to 2nd guess which ones are "useful". Do you mean the same thing?

Also, As soon as I type a letter, the list jumps to that letter, but the list is not filtered down to fewer choices by that letter (as would the google search box, or a certain type of combo-box).

So, perhaps you could introduce auto-filtering, at least as an option that can be turned off.

Also, would the intellisense be based on the XML file or the xsd schema? Either could potentially be useful.

I hope you make something more affordable than liquid-technologies.com/XML-Editor.aspx

link|improve this answer
I'm still thinking about it, haven't delivered anything yet. If I do deliver something, it would be free and re-usable. – Cheeso Jan 3 '11 at 17:15
@johny why - see my answer. Totally cool app. – FastAl Jan 6 at 23:18
feedback

Ooo. Don't bother writing something. Use this simple, free gem:

http://qutoric.com/xmlquire/

if you don't want to download and try, see page 22 of the manual:

http://qutoric.com//coherentweb/resources/xmlquire.pdf

the autocomplate appears in a pane fixed below the XPath box, but you can arrow, type the first few letters, etc. and it works like a charm!

So if you haven't done anything since Jan 11 ... Save your time ;-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.