jEdit Community - Resources for users of the jEdit Text Editor
Archives
syntax highlighting for java
Submitted by newjedit on Thursday, 1 June, 2006 - 02:48
when we are installing Jedit, is there any way to change it so that it highlights keyword/classes from the Swing... like JFrame, JButton etc...
right now it doesn't highlight.
FTP 0.7.7 upload problem
Submitted by jesseainskeep on Thursday, 1 June, 2006 - 16:54
The new ftp got rid of the connection pool problem, so far, but it seems to have a new one. When ever it uploads, its got this message about changing the file permissions I think, something about read-only and a Unix server.

Every time, you have to click yes, which is a pain, but livable.

But who I have hosting through, has turned off the ability to change the permissions through FTP, so it gives an error and wont upload. If I switch other to another server, that I can change the permissions, I don’t seem to have the same problem.

Is there anyway around this? Or am I doing something wrong.

Besides that, the new FTP seems to work really good.
jEdit changes owner/group when saving (on a windows machine editing a textfile on a linux (centos) machine with samba)
Submitted by Broolio on Thursday, 1 June, 2006 - 21:08
I open a file that resides on a linux machine with jEdit on a windows machine through samba. When i save the file, all goes well, ACCEPT that the group/owner is changed to root.

i tried switching the 'two step save' off, i tried creating a fixes mapping (Z:) to the shared folder. I tried installing version 4.1. Whatever i do, when i save a file, it changes the group/owner.

i am about to give it up.. is it a samba setting? I reccon i have root access through samba or somethin.. any1 1 idea?
wildcard to find text in *.h and *.cpp
Submitted by ellers on Thursday, 1 June, 2006 - 21:24
Hello,

I want to find/replace in *.h and *.cpp files.

In the Find dialog's wildcard section I tried a bunch of variations, like

*.h,*.cpp
*.(h|cpp)

no luck - all result in "no files found" (and there are plenty of both).

I'm probably one character away from getting the regex right.

Any tips?
Thanks!
Mac OS Plugin Fails on Intel Mac
Submitted by eeverman on Thursday, 1 June, 2006 - 22:21
I have:
JEdit 4.2 final
Mac OS Plugin 3.0
JKD 1.5 (current)
OS X 10.4 (current)
Intel MacBook Pro

I ran updates on my plugins and the Mac OS plugin stopped working:

=============== Plugin Error ====================
MacOS.jar:
Cannot start java.lang.NoSuchMethodError: com.apple.eawt.Application.addApplicationListener(Lcom/apple/eawt/ApplicationListener;)V
Try updating to a newer version of the plugin
===========================================

I don't see a newer version of this plugin listed anywhere and it *was* working before. I don't remember if this was one of the plugins updated when I ran the update.

Can anyone confirm this plugin working on a similar intel Mac setup? Has anyone seen this issue?

Thanks,

--ee
Lookbehind regex?
Submitted by Full name on Friday, 2 June, 2006 - 06:54
Can I use lookbehind ( http://www.regular-expressions.info/lookaround.html ) in jEdit? The lookbehind syntax ( (?<!a)b ) gives an regex error and the manual doesn't mention it so I'm guessing jEdit doesn't support it. Either that or it's using some undocumented syntax I'm not aware of.
Work with FTP
Submitted by maksud on Friday, 2 June, 2006 - 11:24
Is it possible to connect to ftp using jEdit, if I'm under proxy? I cannot see place where I can fill my FTP proxy settings.

Maksud.
Newbie ? on JCompiler
Submitted by rray on Friday, 2 June, 2006 - 14:41
Guys/Gals:

I am very new to JEdit. I am using the tool to work with JDK1.5. I have install the JCompile pulgin. When I try to compile the source code, I receive the following exception involving the BeanShell Error Dialog box.

java.lang.NoSuchMethodError: console.Console.setShell(Lconsole/Shell;)V
at jcompiler.JCompilerPlugin.executeCommand(JCompilerPlugin.java:106)
at java.awt.EventDispatchThread.run(Unknown Source)


Is there something I have not done?

Thank you for any words of advice.

Russ
Newbie ? on Console Compile
Submitted by rray on Friday, 2 June, 2006 - 14:48
I am new to JEdit. I am using the latest version of JEdit-jEdit 4.3pre4. When I use the console to compile my source code, I see the following in the system window: javac -classpath "$CLASSPATH;C:\jdk50Study\src\access" -sourcepath "C:\jdk50Study\src\access" -g -deprecation -encoding Cp1252 "C:\jdk50Study\src\access\Mini.java" However, when the JDK runs the command, I see the follwoing error: java.lang.RuntimeException: Unrecognized command: javac -classpath <.... I left this long list out> Can anyone shed some light on this issue for me. I really need to get JEdit working....... Thank you for any words of advice. Russ
PHPParser : abstract class parsed in structure browser, but not interface?
Submitted by Baldurien on Friday, 2 June, 2006 - 20:49
Hi,

I would like to know if it was normal (or planned) that the structure browser does not show the structure of file containing interface ?

if I have this :

class X {
function f() {}
}

It works. But I have an interface just after :

interface Y {
function f();
}

It fails ("not parsed")

Since it seems to be bound to the folding model, I suppose the interface does not create a structure? Also, the folding behave in a strange way : (+ denote a fold)

+ class X {
|+ function foo() {
||
|| }
|| function poo() {
||
|| }
}

Note : I also had this exception :

[debug] WorkThread: Running in work thread: [id=870,run=sidekick.SideKick$ParseRequest@6a60d5]
[error] WorkThread: Exception in work thread:
[error] WorkThread: java.lang.ArrayIndexOutOfBoundsException: Array index out of range: -1
[error] WorkThread: at org.gjt.sp.jedit.buffer.JEditBuffer.getLineStartOffset(JEditBuffer.java:327)
[error] WorkThread: at gatchan.phpparser.sidekick.PHPSideKickParser.buildNode(Unknown Source)
[error] WorkThread: at gatchan.phpparser.sidekick.PHPSideKickParser.buildChildNodes(Unknown Source)
[error] WorkThread: at gatchan.phpparser.sidekick.PHPSideKickParser.buildNode(Unknown Source)
[error] WorkThread: at gatchan.phpparser.sidekick.PHPSideKickParser.buildChildNodes(Unknown Source)
[error] WorkThread: at gatchan.phpparser.sidekick.PHPSideKickParser.parse(Unknown Source)
[error] WorkThread: at sidekick.SideKick$ParseRequest.run(SideKick.java:406)
[error] WorkThread: at org.gjt.sp.util.WorkThread.doRequest(WorkThread.java:194)
[error] WorkThread: at org.gjt.sp.util.WorkThread.doRequests(WorkThread.java:161)
[error] WorkThread: at org.gjt.sp.util.WorkThread.run(WorkThread.java:135)

(anyway I can't reproduce the error)
Console not parsing compile errors from AntFarm
Submitted by brackeen on Saturday, 3 June, 2006 - 22:32
I'm compiling Java source files from Ant build scripts using AntFarm. Console doesn't seem to parse javac's output - compile errors are shown in the console but not in the ErrorList.

Using javac directly in the Console works: compile errors correctly appear in the ErrorList.

A bug in one of the plugins? Or something else?

Java 1.6.0-beta2-b86
jEdit 4.3pre4
AntFarm 1.5.3
Console 4.2.6.2
TomcatSwitch
Submitted by ccapeng on Monday, 5 June, 2006 - 05:29
Does TomcatSwitch plugin support Tomcat 5.0?
Bracket Matching
Submitted by fh on Tuesday, 6 June, 2006 - 09:27
How can I switch off the bracket matching feature, so that brackets in all syntax tokens are considered.
Can I buy Manfred Usselmann's theme?
Submitted by ilazarte on Tuesday, 6 June, 2006 - 13:19
I'm working to customize JEdit, and I'm making painfully slow progress.
I really just want to get it looking like this :
http://www.jedit.org/index.php?page=screenshot&image=18

maybe with these icons:
http://www.jedit.org/index.php?page=screenshot&image=25

Can I buy these somewhere? Manfred, no joke, if you visit these forums, I will paypal you 30 bucks this instant if you have this available in a form I can import.Smiling
Max number of files to edit
Submitted by yanal on Tuesday, 6 June, 2006 - 19:02
Guys,

While I was substituting strings in all my Java files of my project, which is spread over many packages, I noticed after the substitution some files were completely gone. And empty files with names like: #myfilename.java# were created instead. Anyone has a clue about what could be happened?

Thanks
Mode specific context menu
Submitted by sanbadahanul on Wednesday, 7 June, 2006 - 11:34
Mode specific context menu. Is it cool?
How to define meta keys with mouse clicks
Submitted by fincher42 on Wednesday, 7 June, 2006 - 13:34
How do I define meta key combinations with mouse clicks?
I want to define ctrl-left_mouse as 'delete word', but the gui shortcut editor doesn't allow such wonderful things. Do I need to directly edit a config file?

Cheers,
Mitch
would love to use the console plugin...
Submitted by dusa.adrian on Thursday, 8 June, 2006 - 08:03
Dear list members,

I'm a newcomer on jEdit plugins, though I've been using jEdit for a couple of years now and I think it's just awesome.
I use a statistical software called R and I write the code in jEdit.
R runs fine in a console (I use a Linux box), and I'd very much like to use the Console plugin to run R commands from within jEdit.

Only... I just don't know how to do this.
Any hint would be highly appreciated.

Thank you in advance,
Adrian
Replace Blank Lines with a text character?
Submitted by jroy on Thursday, 8 June, 2006 - 17:45
I have been searching the archives and cannot find an answer to my question. I want to know if I can search a file and find all blank lines and replace with a text character? Then I want to be able to search all files in a directory and do the same. Is there a specific plugin I can use? Anyone have a Macro? I cannot believe that this has not already come up Smiling

Thanks,

Jery
Plugin Download Mirror "MESH-Solutions (Duesseldorf, Germany)" might host broken file
Submitted by CapM on Friday, 9 June, 2006 - 09:39
I had an error when trying to download the latest plugin file "Common Controls" from the mirror "MESH-Solutions (Duesseldorf, Germany)". It worked with another mirror, so maybe you want to check the integrity of this file.
User login
Browse archives
« June 2006 »
MoTuWeThFrSaSu
  2
4
11
12
13
15
24
25
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   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   16222
Matlab Edit Mode   1.0   16086
jEdit XP icons   1.0   15245
XP icons for jEdit   1.1   14309