jEdit Community - Resources for users of the jEdit Text Editor
MarkerSets - using SAX to write XML (MarkerSets.jar v1.0 by Shlomy Reinstein)
Submitted by shlomy on Tuesday, 5 January, 2010 - 18:00
This version of MarkerSets simply uses SAX to write the XML file instead of DOM with DocumentBuilder, which happens to fail if XQuery is installed and saxon7 is loaded.
ErrorList 1.8 fixed (ErrorList.jar v1.8 by Shlomy Reinstein)
Submitted by shlomy on Saturday, 19 December, 2009 - 19:51
This version fixes an NPE in version 1.8, from ErrorListPlugin.java:400.
Look and Feel Plugin 1.4.0 (LookAndFeel.jar v1.4.0 by Dale Anson)
Submitted by daleanson on Sunday, 13 December, 2009 - 22:28
Update to Look and Feel plugin to include the Substance look and feel. This upload only contains the updated Look and Feel plugin jar itself. You'll need to download the Substance look and feel jar from https://substance.dev.java.net/files/documents/3294/135954/substance.jar. To install this update: 1. Download the file and replace your existing LookAndFeel.jar, which should be in $USERHOME/.jedit/jars. If you don't have an existing LookAndFeel.jar, install the Look and Feel plugin from the Plugin Manager first. 2. Copy the substance.jar to the same directory as your LookAndFeel.jar 3. Restart jEdit. This plugin now requires Java 1.6.
APDL v2 Edit Mode (apdl2.zip v0.9.9 + by Sven Gleich)
Submitted by Sven Gleich on Thursday, 2 November, 2006 - 09:55
Edit mode for APDL Language based on the APDL.xml version 0.9.8 by Randolf Mock
Works with jEdit 4.2final (APDL2.xml v0.9.9), for different syntax highlighting the Editor Scheme Plugin v1.0 is required
Works with jEdit 4.3pre7 (APDL2.xml v0.9.11), for different syntax highlighting the Editor Scheme Plugin v1.0 is required
Tested with jEdit 4.3pre18 (APDL2.xml v0.9.11) and Editor Scheme Plugin v1.2

Improved
========
- recognition of digits with exponents
- doubles in *get-function tags changed
- doubles in ansys commands deleted
- together with APDL2.jedit-scheme (via the Editor Scheme Selector Plugin)
colours similar to UltraEdit-32 APDL syntax highlighting

Changed:
========
<KEYWORD1>: ANSYS commands
<KEYWORD2>: ANSYS star commands (e.g. *get)
<KEYWORD3>: ANSYS command options
<KEYWORD4>: ANSYS slash commands
<FUNCTION>: abbreviated *get commands

Install:
========
Put the APDL2.xml into the <jedit>/modes folder.
Add the following lines to the catalog-file:
<MODE NAME="apdl2"		FILE="apdl2.xml"
				FILE_NAME_GLOB="*.{ans,inp,mak,mac,apdl}" />
Remove the lines with the <MODE NAME="apdl" ...> or make changes to the file extensions.
Install the Editor Scheme Plugin if required.
Put the APDL2.jedit-scheme into the <user-home>/.jedit/schemes folder.
Activate under Plugins -> Editor Scheme Selector the APDL2 scheme with "Apply".

Bugs
====
- frequent use of the keyword "node" inside the xml is not been distinguished between keyword1 and keyword3
- "pres" as a get function and "pres" as a abbreviation for "presol" is not been distinguished
- the topic to the keyword "node" does also apply to pres, temp, volt, mag, vx, vy, vz,...

2009-Nov-10 bugfix (comment with utf-8 character changed)
Vim-Style Left and Right (vim-movement.zip v1.0 by Damien Radtke)
Submitted by kog on Monday, 9 November, 2009 - 18:41
These two macros are intended to replace jEdit's default "Go To Next Character" and "Go To Previous Character" actions. When used, pressing left or right will never move the cursor up or down. Normally, if left is pressed at the beginning of a line, the cursor moves up a line, and when pressing right at the end of a line, it goes down one. With these macros, in both cases, the cursor stays where it is.
Javadoc Commenter (Write_Javadoc_Comment.bsh v1.0 by Damien Radtke)
Submitted by kog on Monday, 9 November, 2009 - 16:42
This is a Java macro that writes Javadoc comments for you. It searches upwards from the cursor for a "public", "protected", or "private" keyword, requests input via a series of input boxes, and when you're finished inserts a new Javadoc-formatted comment in the correct position.
Search asset exact (SearchAssetExact.bsh v0.1 by Shlomy Reinstein)
Submitted by shlomy on Saturday, 24 October, 2009 - 14:32
Searches the current SideKick asset (e.g. C function) for the selected word (exact match).
Jump to beginning of current function (JumpToBeginningOfFunction.bsh v0.1 by Shlomy Reinstein)
Submitted by shlomy on Thursday, 22 October, 2009 - 14:37
Using a SideKick tree where the functions in the current buffer are shown, jumps to the beginning of the function where the caret is located by finding the first '{' in the current asset.
Jump to end of current function (JumpToEndOfFunction.bsh v0.1 by Shlomy Reinstein)
Submitted by shlomy on Thursday, 22 October, 2009 - 14:38
Using a SideKick tree where the functions in the current buffer are shown, jumps to the end of the function where the caret is located by finding the last '}' in the current asset.
TSP-mode (tsp.xml v0.0.2)
Submitted by goebbe on Thursday, 16 March, 2006 - 20:03
Very basic jedit-mode for TSP (Time Series Processor). New in 0.0.2: recognise internal variables By default, this edit-mode is now included in the latest developer versions of Jedit.
Cucumber syntax highlighting for jEdit (cucumber.xml v0.1 by Gabriel Medina)
Submitted by rha7dotcom on Thursday, 24 September, 2009 - 22:50
Cucumber syntax highlighting for jEdit

Allows you to highlight .feature (cucumber : http://cuckes.info/) files in jEdit.

Full instructions at:

red[:shades] - Cucumber syntax highlighting for jEdit


Suggested catalog mode line:

<MODE NAME="cucumber" FILE="cucumber.xml" FILE_NAME_GLOB="*.feature" />


Powershell edit mode (powershell.xml v1.0 by James Hamilton)
Submitted by hmhoek on Tuesday, 22 September, 2009 - 19:25
Loosely based on jEdit's perl mode. This highlights just about all regular syntax, although I have not added support for calling generics yet. Ctrl-i indentation also works. Static methods don't get highlighted because when I wrote this lookbehinds weren't supported in mode definitions.
FoldViewer - updated for recent jEdit versions (e.g. 4.3pre17) (FoldViewer.jar v0.1 by Shlomy Reinstein)
Submitted by shlomy on Friday, 28 August, 2009 - 19:46
Updated FoldViewer to work with the latest jEdit - 4.3pre17. It broke due to a change in the Buffer's constructor: The Hashtable parameter was replaced by a Map one.
Xilize for jEdit 4.3 (xilize-jEdit.jar v3.0.3.32 by Dale Anson)
Submitted by daleanson on Thursday, 27 August, 2009 - 03:40
A build of the Xilize plugin for jEdit 4.3. This is not from the plugin maintainer, I just made the fixes so it would run in jEdit 4.3.
ConfigurableFoldHandler - fixed mode-specific fold configuration (ConfigurableFoldHandler.jar v0.6.3 by Shlomy Reinstein)
Submitted by shlomy on Sunday, 23 August, 2009 - 18:39
Fixed the mode-specific fold configuration (fold start / fold end / use-regexp). Previously it did not work because the mode was incorrectly retrieved from the buffer.
ConfigurableFoldHandler - performance fix (ConfigurableFoldHandler.jar v0.6.3 by Shlomy Reinstein)
Submitted by shlomy on Sunday, 23 August, 2009 - 03:14
Fixed a performance bug that was seen when collapsing many folds in a large file.
AviSynth Edit-Mode (avs.xml v2.1 by Thorsten Willert)
Submitted by Thorsten Willert on Saturday, 11 August, 2007 - 18:43
Edit-Mode for AviSynth:
  • Auto-indent
  • Highlighting for all functions, types, keywords ...
  • Highlighting for all filters from http://avisynth.org/mediawiki/External_plugins

Changes in V2.1:
Updated plugin list (the same like on http://avisynth.org/)
Compare Buffer Backups (Compare_Buffer_Backups.bsh v1.0 by Ollie Rutherfurd, John Gellene, Anthony Keeley)
Submitted by keeleyt83 on Thursday, 6 August, 2009 - 20:33
Allows user to easily compare backup version of the current buffer, using the JDiff plugin. Requirements: JDK >= 1.5, jEdit >= 4.3pre15, jDiff >= 3.0.0.
Assembly-x86 Update (assembly-x86.rar v090723 by Kristian Ovaska, updates by 13xforever)
Submitted by 13xforever on Thursday, 22 March, 2007 - 07:00
x86 Assembly mode by Kristian Ovaska (kristian.ovaska@helsinki.fi)

- Intel syntax
- Instructions and registers of Pentium III/Athlon (including FPU, MMX, 3DNow! and SSE)
- Full NASM 0.98 & MASM 6.15 keyword support, partial TASM support

x86 Assembly mode updates by 13xforever (ilya.veselov@gmail.com)
08.05.2006 rewrite:
- added full AMD64 specs (registers and mnemonics - CPU, FPU, MMX, 3DNow!, 3DNow!+, SSE, SSE2, SSE3)
- added some Cyrix mnemonics
- added some undocumented commands
- update for yasm 0.5.0

07.09.2006 update:
- new RegEx engine for jEdit 4.3pre5+

13.10.2006 update:
- small fix for octal and hex numbers (127q and $0AB)

07.12.2006 update:
- small macros-related fix

19.01.2007 update:
- missing keyword for predefined .RDATA section (NASM)

22.07.2009 update:
- updated up to latest Intel's documentation (June 2009)
- added missing SSE3 instructions
- added SSsE3 instructions
- added SSE4 instructions (4.1, 4.2 and 4a)
- added VMX instructions
- added some missing instructions
TextAutocomplete - fix for 0.9.8b (TextAutocomplete.jar v0.9.8b)
Submitted by shlomy on Wednesday, 15 July, 2009 - 11:34
This version fixes the slow startup introduced in version 0.9.8b due to an incorrect URL for the default word list file.
User login
Browse archives
« April 2024  
MoTuWeThFrSaSu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
Poll
Are you interested in language packs for jEdit?
Yes, and I could help maintain translations
26%
Yes, I'd like to have translations
32%
Indifferent
35%
No, that'd be bad (please comment)
7%
Total votes: 1093
Syndication
file   ver   dls
German Localization light   4.4.2.1   82347
Context Free Art (*.cfdg)   0.31   46054
JBuilder scheme   .001   18494
BBEdit scheme   1.0   18115
ColdFusion scheme   1.0   18023
R Edit Mode - extensive version   0.1   17472
Advanced HTML edit mode   1.0   16205
Matlab Edit Mode   1.0   16067
jEdit XP icons   1.0   15228
XP icons for jEdit   1.1   14292