Macro to sort lines like in Ultraedit updated (Sort_Lines.bsh v1.1 by Pascal Dal Farra)
Submitted by
pdfneuro on
Wednesday, 15 December, 2004 - 17:12
Hi,
Here is an update of the sorting macros
This macro is able to sort lines in ascending/descending order.
Available options are
- Remove duplicated lines
- Ignore case sorting
Enjoy
Sort_Lines.bsh v1.0 by Pascal Dal Farra
Submitted by
pdfneuro on
Monday, 13 December, 2004 - 09:11
Sort_Lines.bsh
a BeanShell macro for the jEdit text editor which is able to sort lines in ascending/descending order.
Available options are
- Remove duplicated lines
- Ignore case sorting
Proper Case (proper_case.bsh v1.0 by Jonathan Broome)
Submitted by
jpbroome on
Thursday, 14 October, 2004 - 14:54
A beanshell macro to convert selected text to Proper Case, in which the first letter of each word in the selection is Capitalized.
Decrypt current buffer (Decrypt_Current.bsh v0.1 by David Mlejnek)
Submitted by
davo on
Monday, 13 September, 2004 - 16:44
Decrypts the current buffer content. The physical file content will not be modified until user saves the buffer. Buffer must be encrypted with Encrypt_Current.bsh. Uses PBE with MD5 and DES algorithm. Macro will prompt the user for a password which will be used to decrypt the buffer content.
Encrypt current buffer (Encrypt_Current.bsh v0.1 by David Mlejnek)
Submitted by
davo on
Monday, 13 September, 2004 - 16:41
Encrypts the current buffer content. The physical file content will not be modified until user saves the buffer. Uses PBE with MD5 and DES algorithm. Macro will prompt the user for a password which will be used to encrypt the buffer content.
IntelliWrap (IntelliWrap.bsh v0.3 by Shoban Jayaraj)
Submitted by
shoban on
Tuesday, 30 March, 2004 - 14:41
Given a selected text, tries to wrap the selected text based on prefix strings. Great when adding multi-line comment text that needs to be prefixed with special characters. I wrote it to emulate EMACS 'fill-paragraph' so that comments can be wrapped so as to not exceed a fixed limit.
Can also be used for non-programatical tasks like prefixing replied mail text with '>' etc.
Version 0.3 takes the selection properly into consideration
Version 0.2 incorporates the GPL header to the macro.
Select Between Quotes (Select_Between_Quotes.bsh v1.0 by Lee Turner)
Submitted by
lturner on
Thursday, 11 March, 2004 - 15:19
Beanshell macro to simply select all the text between two quotes (").
Text Squeezer (Squeeze_Empty_Lines.bsh v1.01 by tequilacat)
Submitted by
tequilacat on
Wednesday, 14 January, 2004 - 13:39
This macro is an improvement of standard "Join Lines" function.
-
When there is no selection in buffer, it joins current line and next NON-empty line, removing any whitespace content between them.
-
If some text is selected, all empty lines within selected regions are removed.
Insert Blank Lines (Insert_Blank_Lines.bsh v1.0 by Lee Turner)
Submitted by
lturner on
Thursday, 8 January, 2004 - 11:55
Beanshell macro to insert blank lines into a buffer.
Delete Blank Lines (Delete_Blank_Lines.bsh v1.0 by Lee Turner)
Submitted by
lturner on
Thursday, 8 January, 2004 - 11:54
Beanshell macro to delete all blank lines from a buffer. In this case a blank line a taken as a line with no characters on it (not even whitespace characters).
Move Line Up (Move_Line_Up.bsh v1.0 by Lee Turner)
Submitted by
lturner on
Thursday, 8 January, 2004 - 11:47
Beanshell macro to move a line up by one line.
Move Line Down (Move_Line_Down.bsh v1.0 by Lee Turner)
Submitted by
lturner on
Thursday, 8 January, 2004 - 11:45
Beanshell macro to move a line down by one line.
String2Hex (String2Hex.bsh v1.0 by Brad Mace)
Submitted by
Brad Mace on
Tuesday, 16 December, 2003 - 23:23
Converts the selected text to its hexidecimal equivalent
Hex2String (Hex2String.bsh v1.0 by Brad Mace)
Submitted by
Brad Mace on
Tuesday, 16 December, 2003 - 23:20
Converts the selected text from hexidecimal to ascii text.