jEdit Community - Resources for users of the jEdit Text Editor
Archives
How to use ctags / CtagsInterface
Submitted by maurelioc on Tuesday, 12 January, 2021 - 17:21
Hi folks, I am trying to use CtagsInterface plugin in jEdit running on a MacOS machine.
ctags tool was installed using MacPorts and appears to be ok.
CtagsInterface plugin is installed and reports that the ctags is reachable in path ( I wrote the complete path).
Lucene and SuperAbbrevs plugins are also installed.
But ... it is not working.
jEdit version is 5.6 with OpenJDK 15.01.
jEdit is running fine and all plugins are the last versions available at plugin central or mirrors.
CtagsInterface appears to be running but no tag is available for searching.
I did not find any recent complain about it in google. Any clues?
Can I have ONE split-screen tab re-open as a separate Jedit window to avoid re-sizing all my split-screen tabs
Submitted by DocDJ on Monday, 15 February, 2021 - 13:23
I frequently have multiple files open in split-screen mode and need to be able to see one (or more) of them in a system window that can be resized separately from the other tabs. I do NOT want to be editing the 2 buffers at the same time. I just need to be able to work on that "new" window as a separate (larger) window, while being able to copy/paste between IT and the OTHER tabbed windows. Something like this: a toggle to hide or lock the tab in the current SYSTEM window and re-open the file or its buffer in a separate Jedit window and later toggle the separate window closed and restore it in my split window. Also, it would be nice to be able to have multiple such "re-opened" tabs.

Is there a way to do any of that?
two quick spaces inserts a period. What did I accidentally turn on?
Submitted by MarkTJohnson on Friday, 19 February, 2021 - 18:12
This only started recently like the last couple of weeks and I've used jEdit for years.
Vim Emulation for jEdit 5.6.0
Submitted by nielstron on Tuesday, 23 March, 2021 - 15:24
Hi everyone,

I am currently developing a port of the Vimulator Plugin by mike dillon to the current jEdit 5.6.0.
For those that did not stumble upon it yet, it emulates VI keybindings within jEdit.
In addition to the previously existing plugin, this now features:

- Insertion, Replacement and Command mode
- Visual modes (Normal, Block and Line)
- Yanking/Unyanking
- Multi-Caret editing

I did not find out how to post this to the default plugin central and am not sure if the product is mature enough for that.
A current development build can be found in its github repository:

https://github.com/nielstron/vimulator

Feel free to have a look. I would be glad for any feedback on usability and hidden bugs/slownesses.
Binary downloads from the filestore work again properly
Submitted by Vampire on Tuesday, 23 March, 2021 - 15:30
For some time binary downloads of files from the file store (http://community.jedit.org/?q=filestore) did not work properly.
This affects for example plugin beta versions, macros packaged in ZIP files and so on.

This problem was now fixed and all downloads should work properly again.
Uploads were not affected, so any upload that was done is still fine and working.
Only during downloading the files were corrupted and are not anymore.
Lucene plugin IllegalAccessException
Submitted by weberjn on Thursday, 24 March, 2022 - 10:04
If Lucene search does not work, and you have IllegalAccessException in activity log, add the start option

--add-exports java.base/jdk.internal.ref=ALL-UNNAMED

[jEdit Worker #2] [error] IndexImpl: Caused by: java.lang.IllegalAccessException: class org.apache.lucene.store.MMapDirectory$2$1 cannot access class jdk.internal.ref.Cleaner (in module java.base) because module java.base does not export jdk.internal.ref to unnamed module @41cd6d9b
jEdit doesn't remember font sizes for the Help, File Browser windows
Submitted by jlturriff on Sunday, 19 June, 2022 - 09:32
When I set the font sizes for various components of jEdit, they are not remembered across quit/start of the editor. After I start the editor I have to go to Utilities => Global Options => Appearance and change the size setting of at least one of the fonts. After I set it back to my preferred size, that size is used once again to render Help and File Browser text.
An 'all' type feature would enhance productivity.
Submitted by jlturriff on Sunday, 19 June, 2022 - 09:47
Several other text editors I have used have an 'all' command which hides all lines that do not match a pattern. This does not rely on fold levels, so one can filter the edit view to show just the lines that contain e.g. a particular variable or phrase. For example, in Xedit the view might look something like this:

ELBERT NAMES A0 V 255 Trunc=255 Size=17 Line=8 Col=1 Alt=0
00000 * * * Top of File * * *
00001 :nick.O :Composer.Puccini:name.LaBoheme
00002 :addr.O1
00003
00004 :nick.C :Composer.Grieg:name.Peer Gynt Suites
00005 :addr.C1
00006
00007 :nick.C :Composer.Ravel:name.Piano Concerto in G Major
00008 :addr.C4
|...+....1....+....2....+....3....+....4....+....5....+....6....+....7...
00009
00010 :nick.C :Composer.Offenbach:name.Les Bavards
00011 :addr.C3
00012
00013 :nick.O :Composer.Verdi:name.Aida
00014 :addr.O2
00015
00016 :nick.C :Composer.Mozart:name.Eine kleine Nachtmusik
00017 :addr.C2
====> all/nick.C/
X E D I T 1 File

before applying the all command; after applying it would look like this:

ELBERT NAMES A0 V 255 Trunc=255 Size=17 Line=4 Col=1 Alt=0
00000 * * * Top of File * * *
00001 -------------------- 3 line(s) not displayed --------------------
00004 :nick.C :Composer.Grieg:name.Peer Gynt Suites
|...+....1....+....2....+....3....+....4....+....5....+....6....+....7...
00005 -------------------- 2 line(s) not displayed --------------------
00007 :nick.C :Composer.Ravel:name.Piano Concerto in G Major
00008 -------------------- 2 line(s) not displayed --------------------
00010 :nick.C :Composer.Offenbach:name.Les Bavards
00011 -------------------- 5 line(s) not displayed --------------------
00016 :nick.C :Composer.Mozart:name.Eine kleine Nachtmusik
00017 -------------------- 1 line(s) not displayed --------------------
00018 * * * End of File * * *
====>
X E D I T 1 File

Xedit allows the 'N line(s) not displayed' lines to be suppressed, so that the view would look something like this after using all:

ELBERT NAMES A0 V 255 Trunc=255 Size=17 Line=8 Col=1 Alt=0
00000 * * * Top of File * * *
00004 :nick.C :Composer.Grieg:name.Peer Gynt Suites
00007 :nick.C :Composer.Ravel:name.Piano Concerto in G Major
|...+....1....+....2....+....3....+....4....+....5....+....6....+....7...
00010 :nick.C :Composer.Offenbach:name.Les Bavards
00016 :nick.C :Composer.Mozart:name.Eine kleine Nachtmusik
====>
X E D I T 1 File

My experience with jEdit is limited, but there appears to be no way to use the Fold methods to achieve this functionality.

Leslie
macOS build of jEdit needs an overhaul
Submitted by CyberSkull on Wednesday, 15 February, 2023 - 12:55
On Apple Silicon/ARM Macs jEdit can't open because of the architecture mismatch between the Java application stub architecture and the architecture of the Java build. To use it, one has to go to a few extra steps that aren't at all obvious to the end user.

Following the instructions here https://apple.stackexchange.com/questions/426713/how-to-help-the-jedit-application-find-java one must download a new Java stub and place it in the jEdit bundle then edit Info.plist to match the installed version of Java and only then can jEdit run.
Trouble saving remote file via SFTP
Submitted by hommealone on Friday, 6 October, 2023 - 00:22
I'm having trouble saving edited remote files via FTP plugin. (I'm using SFTP.)

I get this error:
[jEdit Worker #3] [warning] VFS: Backup of remote file {file} failed, because there is no backup directory.

What does this mean?

I have already done this:
"A workaround is to disable two-stage save in the General pane of the Utilities>Global Options dialog box."

What troubleshooting steps can I take? Any suggestions on how to get it working?
Trouble saving remote file via SFTP
Submitted by hommealone on Friday, 6 October, 2023 - 00:22
I'm having trouble saving edited remote files via FTP plugin. (I'm using SFTP.)

I get this error:
[jEdit Worker #3] [warning] VFS: Backup of remote file {file} failed, because there is no backup directory.

What does this mean?

I have already done this:
"A workaround is to disable two-stage save in the General pane of the Utilities>Global Options dialog box."

What troubleshooting steps can I take? Any suggestions on how to get it working?
jEdit 5.7.0 is out!
Submitted by Vampire on Saturday, 3 August, 2024 - 22:26
Hello everyone,

I proudly present jEdit 5.7.0, the first stable release of the 5.7 series of jEdit.

Detailed changes can as always be found in the Change Log at http://jedit.org/CHANGES57.txt, but here are some of the major features of this version:

  • Many bugfixes,
    among other things problems with plugin installation
    and startup problems on recent macOS machines
  • Windows launcher now considers PATH environment variable
  • Some new and some updated edit modes (QDoc, Java, Dockerfile)



Volunteers are always welcome to contribute to the future of jEdit:
http://www.jedit.org/index.php?page=devel


That being said, here is the download link:
http://www.jedit.org/index.php?page=download


Have fun with the new release.
Marking words
Submitted by Malcerz on Friday, 24 January, 2025 - 11:59
I use JEdit to edit rtf documents.
Word 2010 that I use generates an error and headers and footers are marked with double rr - headerr/footerr. I have to search for these words and correct them.
Is it possible to configure the editor so that the winning words (headerr and footerr) are automatically colored right away?
ErrorList Debug log output
Submitted by tnorb on Thursday, 17 April, 2025 - 01:06
Would it be possible to have a user selection to disable ErrorList debug logging for large error sets? I'm working on error checking SUO-KIF files (www.ontologyportal.org) via a SUMOjEdit plugin that uses the ErrorList and with a large set of errors, the ErrorList will hang up the UI for a bit while outputting many debug logs. Thanks for all help!
ErrorList Debug log output
Submitted by tnorb on Thursday, 17 April, 2025 - 01:07
Would it be possible to have a user selection to disable ErrorList debug logging for large error sets? I'm working on error checking SUO-KIF files (www.ontologyportal.org) via a SUMOjEdit plugin that uses the ErrorList and with a large set of errors, the ErrorList will hang up the UI for a bit while outputting many debug logs. Thanks for all help!
User login
Browse archives
« January 2021 »
MoTuWeThFrSaSu
 
1
2
3
4
5
6
7
8
9
10
11
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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   108250
Context Free Art (*.cfdg)   0.31   46071
BBEdit scheme   1.0   18607
JBuilder scheme   .001   18508
ColdFusion scheme   1.0   18041
R Edit Mode - extensive version   0.1   17488
Advanced HTML edit mode   1.0   16223
Matlab Edit Mode   1.0   16086
jEdit XP icons   1.0   15245
XP icons for jEdit   1.1   14309