textclips


5
Feb 10

Programmer’s Notepad 2.1.2 Released

A new testing release, version 2.1.2 of Programmer’s Notepad has been released to Google Code. The major new feature in this release is Code Template Fields, but there have been a lot of other changes too:

  • Code Template Fields
  • Cleaner visual style for the document tabs
  • Added line padding options, allows more whitespace between lines
  • Switch to Scintilla’s built-in line length measurement
  • Removed some 3D styling bits to clean up the look of the editor, more to do.
  • New tab text changed from to Untitled
  • -z parameter now assumes a single file after the -z, designed for notepad replacement.
  • Updated to latest Scintilla bits for some multi-caret fixes
  • Fixed a couple of regular expression issues.
  • Fix tools options tab titles.
  • Made SmartHighlight more visible, less alpha blending

In case you haven’t used a 2.1 build yet, here are the other headline features in the testing builds:

  1. Full Unicode Support
  2. Support for Translations – PN in your language
  3. Prototype Command Bar feature (with PyPN)
  4. Multiple simultaneous selections, including typing into block selections
  5. Virtual space

Downloads:

Download 2.1.2 Installer
Download 2.1.2 Multi-language Installer
Download 2.1.2 Portable

Updated Portable download link now, apologies for the confusion!


30
Oct 07

Help Wanted

Web Site

Content creation, blogging, visual design, news, backend work – there’s
plenty to be done here. I’d like to make the site more useful to PN users,
there are lots of things that would help people that I just don’t have the
time to do. Some brief examples:

Tool integration guides, list of tools you might want to use, extension
writing guide – lots of opportunities.

Releases

Become a part of a release team, help to take a build of PN and get it out
there – some basic testing and willingness to help get PN builds released
more regularly required.

Also looking for people to pipe up whenever they’re using a devel build
that they think is of good enough quality to become stable – I want to
release more often.

Documentation

We now have a wiki that people can enter documentation into. I’m looking for:

  1. People to add documentation
  2. A willing volunteer to script up the code to extract the wiki contents
    and dump them out as a set of docbook files for the help generator tool.
    I’d prefer Python as that’s my favorite language and is also the language
    the wiki is written in but will take what I can get.

Add-ons

The development release of Programmer’s Notepad supports pre-defined scheme configurations allowing you, for example, to switch instantly to a dark background set of styles. If you have an unusual or well-thought-out set of styles configured then please save them out (see the Save button in the styles options pages) and send them along. Good ones may be included in future releases or made available for download from pnotepad.org.

Do you have a good set of text clips or perhaps the newer code templates? If so then please send them along and we’ll consider them for inclusion again either in the main download or as extras from pnotepad.org.

Lots to think about here, and there are plenty more things to do even if these aren’t up your street. Let me know if you’re interested in helping in any of these ways!


8
Nov 05

Text Clip Creator – First Release

You can now download a pretty functional (if rough and ready) editor for Text Clips: The PN2 Text Clip Creator

Requirements:

  • .NET Framework 1.1
  • Desire to create or modify text clips!

Have both of the above? Then get downloading (less than 10k)!

I know of a couple of bugs with this (cancel button doesn’t work, UI not extremely intuitive), and will fix them soon. The source is, of course, available and all contributions welcome: browse text clip creator source. Anyone who wishes to take over responsibility for maintenance of this project will be welcome on board.

Need help getting that source? Ask on the discussion list.

Update: Bjoern Graf has taken over the TCC project, and you can now file bugs for it on the sourceforge bug tracker for his attention! Thanks Bjoern, and good luck!


19
Feb 05

ASP.NET and XHTML Text Clips

Sam Collett has created some text clips for both XHTML and ASP.NET, and placed them on his blog:

XHTML

ASP.NET

Thanks Sam!


9
Feb 05

Standard C Clips

Michael Peterseim has contributed some text clips for standard C, available for download and with the next version of PN 2.

Michael came across a problem defining a couple of his clips, he wanted to use the names #include “” and #include <>. In order to use these names in XML, they need to be represented using standard XML entity declarations:

<clip name="#include &quot;&quot;"><![CDATA[#include "|"]]></clip>
<clip name="#include &lt;&gt;"><![CDATA[#include <|>]]></clip>

Note the use of the pipe “|” character to place the cursor in a clip when a user selects it. If you have text clips of your own that you think others might find useful feel free to send them to me.

Interestingly Michael used some blank clips to act as categorising headers within his clips. One of the feature requests for PN2 is to allow tree-like nesting or grouping of text clips. It would appear that this could be quite useful. What do you think?