? replacing tabs/spaces. How to stop it?
Submitted by Anonymous on Wednesday, 7 July, 2004 - 00:30
I've just started getting into jEdit and when using it seems to replace spaces/tabs with ?????
I'm using jEdit under Linux (Lindows 4.5.122) at home but will be saving it as dos/ascii for upload to a Windows 2000/XP machine.
an example of what is happening is below. Any help is much appreciated.
select a.emplid, a.first_name, a.last_name, a.extension, b.address1 ?
from ps_utc_name_phn_vw a,
? ? ?ps_addresses b
where a.emplid ?like '10002%'
and a.emplid ? ? ?= b.emplid
and b.addr_type = 'STAF'
and b.effdt ? ? ?= (select max(b1.effdt)
????????????????? ?????? ? ????? ? ? ?from ?ps_addresses b1
???????????????????????????????? ? ? ?where b1.emplid ? ?= b.emplid
???????????????????????????????? ? ? ?and ? b1.addr_type = b.addr_type
????????????????????????????????? ? ? and???????b1.effdt ? ?<= sysdate
????????????????????????????????? ? ?)
Peter
Problems creating a xsd
Submitted by Anonymous on Wednesday, 7 July, 2004 - 13:02
Hi, I use the XML-Plugin to develop a XML-Schema starting like this:
...
When rewriting "
GTK Look and Feel
Submitted by Anonymous on Wednesday, 7 July, 2004 - 19:03
I am using jedit 4.2pre14 on a Fedora Core 2 (Linux) machine with java version:
java version "1.4.2_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
Java HotSpot(TM) Client VM (build 1.4.2_04-b05, mixed mode)
In JDK 1.4.2 sun introduced a GTK look and feel (http://java.sun.com/j2se/1.4.2/docs/guide/swing/1.4/Post1.4.html) that I would like jedit to use. The problem is that it dosn't show up in the interface section of the global options. Running jedit with the
-Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel
option still didn't make it work. I also made sure I was using a supported gtk theme and did not see any relevant output of errors or things of the sort (I did see output of errors about some plugins, but I believe that is unrelated).
Jedit continues to run fine, but insists on using the Metal L&F.
Any help would be appriciated!
Doc type autocomplete
Submitted by
smsm1 on
Wednesday, 7 July, 2004 - 21:59
The tag autocomplete feature for PHP and HTML is great.
One thing though! Completion of valid DOCTYPES would be good.
JEdit is a fantastic program, just what I have been looking for!
show latest news on the jEdit homepage
Submitted by
paulflory on
Thursday, 8 July, 2004 - 05:13
The new homepage's look n feel out-rocks the previous one.
One peeve though - I liked seeing the latest news on the splash page.
Like when new dot releases are announced.
Could we have that back?
-Paul
A Search function for Recent files (like Search History in Mozilla)
Submitted by
paulflory on
Thursday, 8 July, 2004 - 05:29
I hereforth propose that there be-eth a way to search recently open'd files.
Oftentimes we open and close files and afterwards wastefully rummage through our
memories and Recent Files lists to recall from whence those files came.
This post requests that recently opened files be searchable, as are visited URLs in web browsers; for example, Ctl-H in Mozilla or IE.
To further burnish the feature, throw in a way to view the dates/timestamps the files were visited. This way Jack can think/do: "Hmm.. I opened file 'earwig.xml' yesterday" then scroll to the files from yesterday and conveniently open earwig without taxing his brain.
Thanks,
Paul
JavaCore-aware JCompiler Plugin again (JCompiler.zip v1.6.2 by Doug Breaux)
Submitted by
doug on
Friday, 9 July, 2004 - 02:26
I updated JCompiler to work with the latest (0.7.1) JavaCore. The AbstractClasspathSource constructor changes had broken the previous version.
Typing uppercase letters and correcting (recognize S-BS as BS)
Submitted by Anonymous on Friday, 9 July, 2004 - 10:58
One often needs to enter a uppercase word in TEXT.
For let's say 20 chars you don't touch caps-lock and do it via shift.
However if one does a typo, it's usual or simple to use Shift-BS to correct that.
Shift-BS is not recognized as Backspace. This would be nice.
Autocomplete/dotcomplete for other languages other than Java?
Submitted by Anonymous on Friday, 9 July, 2004 - 17:23
Hey there,
Sorry if this is an obvious question, but i've spent several hours looking and have not found anything.
My question is: is there some plugin/way to hack dotcomplete to work with other languages other than java? I got CodeBrowser working just fine with CTAGs and it's great in that respect. It does exactly what i want for my C source/header files.
What i would love to do is have an autocomplete and dot syntax that used that ctags information to aid in code writing while editing an actual file, instead of having to open the code browser and then saying insert.
Does anyone know if there is a way to do this with jEdit?
Thanks
Brent.
Python Commando File (python.xml v1.0 by Charles Dominguez)
Submitted by
cfd on
Saturday, 10 July, 2004 - 02:14
A commando file to run
Python scripts from within jEdit. Invokes the system interpreter (not Jython) on the current buffer. Provides a UI to set all options supported by the current release of the Python interpreter. Error patterns that work with Python are specified in the comments at the start of the file.
How to write up a plugin that is dynamically loaded.
Submitted by Anonymous on Saturday, 10 July, 2004 - 11:08
hi,
How do i write up a plugin that can be loaded or unloaded without restarting jedit?
myPlugin.java has the following code
public class myPlugin extends
{
public void createMenuItems(Vector menuItems)
{
menuItems.addElement(GUIUtilities.loadMenuItem("myPlugin"));
}
}
Thanks,
salgavkar
How to use the services of project viewer from within myplugin
Submitted by Anonymous on Saturday, 10 July, 2004 - 23:42
Hi,
How do i listen to events such as: what project is selected or what java file is selected using the services of project viewer from with my plugin. i have set the properties file already (plugin.jplant2.jplant2Plugin.depend.1=plugin projectviewer.ProjectPlugin 2.0.2). What else do i need to do?
Thanks.
Drake
charactere encoding
Submitted by
mathieue on
Sunday, 11 July, 2004 - 15:08
hi,
i get squares instead of special characteres typed.
the problem does not come from java because eclipse works.
i've tried a lot of differents charactere encoding configuration with no results.
thanks
mathieu
why wont the handleMessage work?
Submitted by Anonymous on Sunday, 11 July, 2004 - 22:52
public class jplant2Plugin extends EBPlugin
{
public void createMenuItems(Vector menuItems)
{
JMenuItem menu=GUIUtilities.loadMenu("jplant2");
menuItems.addElement(menu);
}
public void handleMessage(EBMessage message)
{
//JOptionPane pane = new JOptionPane (message.toString(),JOptionPane.INFORMATION_MESSAGE);
//pane.show();
System.out.println ("handlerm");
}
}
Programming the JeditTextArea.java file?
Submitted by Anonymous on Monday, 12 July, 2004 - 09:22
hi, i am trying to add a scrollfeature to the jedittextarea, but somehow it wont scroll:-(. how can i aneable the scrollbars?
THANKS
Programming the JeditTextArea.java file?
Submitted by Anonymous on Monday, 12 July, 2004 - 09:22
hi, i am trying to add a scrollfeature to the jedittextarea, but somehow it wont scroll:-(. how can i aneable the scrollbars?
THANKS
Opening large files
Submitted by
oren on
Tuesday, 13 July, 2004 - 00:28
I tried to open a 6.1GB file, and it fails with heap warning.
I already increased heap size up to 20 and 30 GB, but it still fails to open.
I'm using a sun blade 2000 with 6GB RAM and solaris 9.
Java runtime build 1.4.0_00-b05.
How can I open this file?
Is it possible to decrease the amount of memory JEDIT uses ? (currently its more than double the file I open).
Using side mouse buttons for copy/paste
Submitted by
jjrockman on
Tuesday, 13 July, 2004 - 14:19
Hi, up until this week I had jEdit configured to allow the use of the side mouse buttons on my mouse (MS Intellimouse) to do copy (left side button) and paste (right side button). This has grown into something I can't live without

Last week windows update screwed up my machine and I had to reinstall windows. I can't figure out how to configure this same behavior anymore, I did it so long ago I can't remember...can anybody PLEASE help?!? I'm going crazy...
Starting jEdit w/o Launcher
Submitted by
Orion on
Tuesday, 13 July, 2004 - 22:00
I've always used the jEdit launcher to execute jEdit in the past (winXP pro). However, since this is no longer supported, I've had to find other means.
I've tried, from the run menu: java -jar d:\jedit\jedit.jar
But it closes as soon as it starts.
I've tried creating a "shortcut" that runs java -jar d:\jedit\jedit.jar, but I get the "dos" console running in the background, taking up valuable tasbar space.
And, running java -jar d:\jedit\jedit from my "dos prompt" runs it fine, but again, I'm left with the console taking up space.
Is there a way to run jEdit so that I only have the jedit window up, and none of these others? Thanks.