
Saturday January 13, 2007
UPDATED: LineTools module - Added cycle slash (/), backslash(\), dot(.), dash(-) action
I have updated the Line Tools Module on my NetBeans update center described here.
What is new
Added the Cycle Slash (/), Backslash(\), Dot(.), Dash(-) action (CTRL+ALT+O). The action replaces all occurences of / , \ , . & - ,in the selection or current line if the selection is not present, in succesion. If more than one char from the set is present in the text the other chars are replaced with the first one in the first cycle. An example may clarify the functionality.
If one starts with text:
package org.netbeans.modules.linetools.actions; // the package statement
and invokes the Cycle Slash Backslash Dot Dash repeatedly one gets:
package org.netbeans.modules.linetools.actions; // the package statement
package org-netbeans-modules-linetools-actions; // the package statement
package org/netbeans/modules/linetools/actions; // the package statement
package org\netbeans\modules\linetools\actions; // the package statement
Pretty useless huh?
Sources
DISCLAIMER: This module is experimental. So no guarantees. Use the module at your own risk.
Posted by sandipchitale
( Jan 13 2007, 12:41:57 PM PST ) Permalink