What's new in Zen Coding for Notepad++ 0.7

Jun 15, 2011
  • Lots of new features, and autocomplete for snippets and abbreviations
  • Assign shortcuts with the normal shortcut mapper

New in Zen Coding for Notepad++ 0.6 (Jun 15, 2011)

  • Support for custom attributes: div[title], a[title="Hello" rel], td[colspan=2]
  • Support for abbreviation groups with unlimited nesting: div#page>(div#header>ul#nav>li*4>a)+(div#page>(h1>span)+p*2)+div#footer. Now you can literally write a full document markup with just a single line.
  • ID and CLASS attributes order is not important: div.section#demo will also work.
  • Filters support
  • Multiple '$' characters in a row are used as zero padding, i.e.: li.item$$$ → li.item001
  • More than 3 inline-level elements in a row will be printed on a new line each: compare div>span*2 and div>span*4
  • div tag name can be omitted when writing element starting from ID or CLASS: #content>.section is the same as div#content>div.section.
  • HAML support (read Filters for more info)
  • Plugin for PSPad editor
  • Plugin for Komodo Edit/IDE
  • New actions: "Toggle comment", "Split/Join tag", "Remove tag" (read Actions for more info)
  • Many bugfixes and tweaks