views:

80

answers:

1

I'm using NetBeans 6.9 with the Zen Coding plugin.

I was wondering if there is a way to get the selector support working in NetBeans.

Currently typing this:

ul#my-list>li*3>a

Does not produce this:

<ul id="my-list">
 <li><a href=""></a></li>
 <li><a href=""></a></li>
 <li><a href=""></a></li>
</ul>
A: 

I don't think it is available on Netbeans yet. Even though there is a download for Netbeans in the Zen Coding repository, it really just proivdes a list of code templates and macros to speed up coding HTML in Netbeans. This site provides a nice video tutorial on how to install and use this source in Netbeans on Windows.

Until someone volunteers to write a proper plugin for Netbeans, you won't get the full Zen coding capability on Netbeans. Why don't you use another editor, such as Notepad++ (Windows)?

William
I use Zen Coding with NPP. But at work I have to use netbeans.
hitautodestruct
Work is always a bit more trickier...especially if you are on an SOE.
William