Input Method Editor for jEdit
Submitted by
bibiko on
Thursday, 18 November, 2004 - 10:19
Dear all,
this is only to let you know that there is a way to input foreign language scripts with jEdit.
Under https://sourceforge.net/projects/jgim/ you will find a java based customizable input editor for all java applications. If you install it and make sure that you have installed the right fonts you are able to input Chinese, Kannada, Bengali etc. It based on Yudit coming from UNIX. It is a very good solution with some disadvantages of choosing the right character but this issue stands on the ToDo list. By the way is there any chance to write with jEdit Arabic or Hebrew, i.e. is there any support for writing from right to left?
All the best
Hans
Input Method Editor for jEdit
Submitted by
bibiko on
Thursday, 18 November, 2004 - 10:20
Dear all,
this is only to let you know that there is a way to input foreign language scripts with jEdit.
Under https://sourceforge.net/projects/jgim/ you will find a java based customizable input editor for all java applications. If you install it and make sure that you have installed the right fonts you are able to input Chinese, Kannada, Bengali etc. It based on Yudit coming from UNIX. It is a very good solution with some disadvantages of choosing the right character but this issue stands on the ToDo list. By the way is there any chance to write with jEdit Arabic or Hebrew, i.e. is there any support for writing from right to left?
All the best
Hans
Better indenting?!?
Submitted by Anonymous on Thursday, 18 November, 2004 - 15:44
I like Jedit a lot, but I keep having trouble with the indenting. In perl, the indenting code simply does not seem to understand situations when a statement is being continued on the next line. In these cases, there should be some extra-indent (e.g. one additional indent level), but Jedit does not do that.
Deep indent does not work correctly either because it will indent way too deep in many situations.
It would really be great if this would work like in other editors, e.g. (x)emacs, where the indenter actually knows about the syntax of the language to indent and acts accordingly.
Is there a way to replace the default indenting by a plugin that would try to do it more intelligently?
How to paste strings in JEdit text area by clicking a plugin button
Submitted by Anonymous on Thursday, 18 November, 2004 - 16:06
Hi,
I'm trying to paste strings generated by my plugin in the JEdit main window.
I'm writing "something.setSelectedText()", but it arises a compiler error while importing " org.gjt.sp.jedit.textarea.* ".
What do I have to do? Or...: what's the easiest way to do what I want?
Thanks,
Mik
I/O thread blocking when there is available threads
Submitted by Anonymous on Thursday, 18 November, 2004 - 20:35
I am trying to identify or at least understand the I/O thread. When I do a search in a project, it takes some time, during that time, I cannot open a file because Jedit reports that 1 I/O operation is in progress. However when I view the available I/O threads in utilities/troubleshooting, I see that I can have up to 4. So why cannot I open a file when there is an empty I/O thread slot available ?
Do I have to tell Jedit to use threads in parallel ? Is there a setting where I can increase the number of threads ? Thanks a lot.
Uninstalling JEdit
Submitted by Anonymous on Thursday, 18 November, 2004 - 20:45
Hi There,
Was wondering what the procedure is to uninstalling jEdit on MacOS X is... the jEdit documentation relates uninstalling to Windows...
thanks
What is the best java code completion plugin
Submitted by
rmsh on
Thursday, 18 November, 2004 - 21:33
Hi,
I'm relatively new to jEdit, still under experimenting stage. I see more than one choice for java code completion. Which one of them is the best and works fine.
I tried codeaid and had some troubles making it work with jEdit4.2.
Thanks in advance
-Ramesh
Newbee needs help with new Mode:
Submitted by
phcjpp on
Friday, 19 November, 2004 - 12:23
Hi,
Quick question I am trying to use a SPAN_REGEXP that really needs a regexp in the tag too and I was wondering if there is a way round this
A comment starts with / on a new line and ends with a \ on a new line - if possible whitespace should be ignored e.g.
(^[[:blank:]]*/[[:blank:]]*$)
and should end with
(^[[:blank:]]*\[[:blank:]]*$) (NOT ALLOWED!)
is there a way round this ?
Thanks
Chris
Java syntax parsing
Submitted by Anonymous on Friday, 19 November, 2004 - 19:45
I'm trying to find a plugin that will simply parse my open .java file(s) and report (in ErrorList) whether there are syntax issues. I have a weak work-around that compiles (JCompiler) only the current buffer and then reports the errors. But this is a bit time consuming...Ideally, the plugin would parse everything open and then I could cycle through the buffers looking for the red marks to correct my errors. This would save me a nice amount of time prior to a lengthy build process.
TIA
custom classes in jcompiler
Submitted by Anonymous on Friday, 19 November, 2004 - 20:00
Hi,
im new to java and jedit(great features)
my main problem is that i have to use custom classes that come with my learning script.
First is there a global dir where java looks for them?
Second i added the path to the classpath in jcompiler:
/home/Programmierung/classes/
When i compile my helloworld:
import javakurs.io.*;
public class BeispielApp {
public static void main( String[] argv )
{
Ausgabe.println( "Hello World" );
}
}
it runs trough and dont seem to make errors, but when i wanna run my prog with the console java i get this:
Exception in thread "main" java.lang.NoClassDefFoundError: javakurs/io/AusgabeFenster
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
at javakurs.io.Ausgabe.(Ausgabe.java:31)
at BeispielApp.main(BeispielApp.java:7)
Process java exited with code 1
I tested the same settings in eclipse and it runs fine.
this is the eclipse entry:
so what i am doing wrong?
Or is there a better way to set the classes and run/compile my stuff?
thx so far
File system browser current selected item/file?
Submitted by
fwelland on
Saturday, 20 November, 2004 - 02:29
jedit macro newbie; jedit user for a bit; java journeyman.
In a macro, is possible to get the currently selected item in the filesystem browser?
so in my random hacks I have gotten this..
doc = view.getDockableWindowManager();
names = doc.getRegisteredDockableWindows();
with the idea that if I had a handle of the file system browser (currently docked) then I could interrogate file system browser for the currently selected file(s) - it seems there are some getSelected methods in the VFSBrowser....on the right track?
TAB key stops working
Submitted by Anonymous on Saturday, 20 November, 2004 - 12:06
I'm using JEdit to edit Java source code. I use the TAB key to indent. It seems to work just fine until suddenly the TAB key seems to stop working. That is, when I press the TAB key at the start of a new line to indent it, nothing happens.
I have found that if I close the file, exit Jedit, then try editing the same file again, the TAB key again seems to work properly, for a while. After a while, the TAB key again seems to stop responding.
I have no idea what I am doing wrong.
Michael Galvin
Muskegon, MI
:..Www.Bim-Diesel.Ch.Vu
Submitted by Anonymous on Saturday, 20 November, 2004 - 18:35
Hello
:..Www.Bim-Diesel.Ch.Vu..:
Submitted by Anonymous on Saturday, 20 November, 2004 - 18:35
Hello
XML plugin problem
Submitted by Anonymous on Saturday, 20 November, 2004 - 22:55
I feel like I overlooked something obvious, but anyway: here's my problem - the xml plugin doesn't recognize the xhtml doctype if it's not at the beginning of file. I have a file with some php code (which doesn't output anything) followed by some xhtml and I need that php on the beginning because of headers. Is there any way to make the XML plugin ignore the php code and recognize the doctype even if it's not on the first line?
mac osx file association
Submitted by Anonymous on Sunday, 21 November, 2004 - 06:48
How do I prevent jedit for associating files with itself after they are saved? I want to preserve current association and not allow jedit to change it.
thanx
automatic completion of " and '
Submitted by Anonymous on Sunday, 21 November, 2004 - 17:39
is any possibility of turning on automatic completion of " and ' in PHP scipts? i'am used from other editors, when i write " or ', automaticly second quotation mark appears.
thanks
Need to expansion of syntax highlighting
Submitted by Anonymous on Monday, 22 November, 2004 - 10:34
Current engine of syntax highlighting is great!
There is just one snag...
Theoretically I want ability to define of own token types (colors) and parser rules in mode files like in Vim.
Is this feature?
Building jEdit from source under Windows
Submitted by Anonymous on Monday, 22 November, 2004 - 11:23
How build jEdit from source code on Windows platform ?
How to create quick key for constant used phrase?
Submitted by Anonymous on Monday, 22 November, 2004 - 22:04
I am tired of to type "System.out.println".
How can I create my constant used phrases and easy to import?
Alex