edit modes catolog file should be deprecated
Submitted by
loomax on
Thursday, 22 January, 2004 - 07:58
Each time I update my jedit Version I have to reconstruct the edit modes catalog file
I think it would be a good idea to put the information of the catalog file into the edit mode files themselves.
Jedit should loop over the edit mode files to collect the information.
Then one could also just copy the file into the directory without registering in the catalog file
Jedit for ever ...
SSH Plugin
Submitted by Anonymous on Thursday, 22 January, 2004 - 21:56
Hey everyone Im a college student whose school recently took all the ftp servers offline since they werent secure enough anymore. Does anyone know about an ssh plugin for jedit? Id like to continue using jedit for programming but since my school no longer accepts ftp clients I cant effectivly work in jedit anymore. If its not being made Im hoping someone can maybe start working on it. I know a lot of programmers that are having the same difficulties now with the change over from ftp to an ssh.
Thanks
Macros
Unix für MacOS X Anwender
Submitted by
delta-c on
Friday, 23 January, 2004 - 03:22
I wrote the book using jEdit and LaTeX and (of course) the website was done with jEdit.
per-buffer font setting
Submitted by
herman_ivan on
Friday, 23 January, 2004 - 10:06
At present, the only way one can change the font is through the general option setting. It would be nice if I could do that either through file type, or even for a buffer (essentially, adding this option to the global option/buffer option menu).
Why? For most of the programming job one uses Courier or similar for well-known reasons. However, I sometimes have to edit multilingual RDF/XML files, that includes various indic, chinese, korean, etc, scripts. I can do it very well with jEdit, provided that for that particular buffer I use a proper unicode font that has those unicode characters. On my machine at least that is Arial Unicode MS. SO the only thing I can do is to change the font for jEdit in general to edit this file, and then change it back to Courier if I want to edit, for example, a txt or a python file.
Install JAR hangs in Windows XP
Submitted by Anonymous on Friday, 23 January, 2004 - 15:36
Hello,
I have tried installing both jedit41install.jar and jedit42pre8install.jar on Windows XP Professional, and when the first installation dialog box comes up, I cannot click the Next button. All I get is a double-headed arrow and nothing in the dialog responds. The only way out is for me to right-click on the Task Bar button and stop the JAR file.
Has anyone else seen this behavior? I was able to install JEdit just fine on two other computers -- what could be the problem in this case?
Thanks for any help.
lex/flex and yacc/bison
Submitted by Anonymous on Saturday, 24 January, 2004 - 04:03
Add to the already large body of programming and language tools by including modes for these popular compiler and lexical analyzer tools.
Configurable colors
Submitted by
Brad Mace on
Saturday, 24 January, 2004 - 07:58
let the user pick their colors
LilyPond mode (lilymode.xml v2.2.0 by Bertalan Fodor)
Submitted by
fodber on
Saturday, 24 January, 2004 - 09:01
Edit mode for
LilyPond, the GNU Project music typesetter.
Getting string properties
Submitted by Anonymous on Saturday, 24 January, 2004 - 19:38
Which method is recommended for getting a string property like "lineComment" which depend on the current editing mode?
buffer.getMode().getProperty() or can I use buffer.getStringProperty()?
VRML?
Submitted by Anonymous on Saturday, 24 January, 2004 - 22:03
Does jEdit support VRML and if not is it possible to get a syntax package for it in jEdit?
VC++ v7.1 (.NET) Commando File (VC++.xml v2 by Jeff Jackowski)
Submitted by
jeffj on
Sunday, 25 January, 2004 - 23:21
Invokes the compiler from MS Visual C++ v7. Has several options for figuring out the solution and project names based on path, or can be entered manually. The solution and project files must already exist. The path to DEVENV.EXE must not contain spaces or must be in the PATH enviornment variable. The error list plugin works pretty well with the output.
make Commando File (make.xml v1.1 by Jeff Jackowski)
Submitted by
jeffj on
Sunday, 25 January, 2004 - 23:24
Invokes make from the current buffer's directory. Works on Linux and with Cygwin.
Format of date
Submitted by Anonymous on Monday, 26 January, 2004 - 12:26
Hey all,
Trying to customize the stock Insert_Date.bsh macro to use the format I want but can't get it to work. So I tried this, and it didn't work either. What am I doing wrong?
Date today;
String output;
SimpleDateFormat formatter;
formatter = new SimpleDateFormat("E, M d, y - h :m a", currentLocale);
today = new Date();
output = formatter.format(today);
// inserting date and internet time to textarea
textArea.setSelectedText(ouput);
Thanks in advance
Installation help
Submitted by
Brad Mace on
Monday, 26 January, 2004 - 15:26
Whitespace plugin and 4.2pre8
Submitted by Anonymous on Monday, 26 January, 2004 - 22:24
Hello,
I just installed the Whitespace plugin with 4.2pre8 but when I select "Show Spaces" or any other of the "Show" options, nothing changes.
Should the current Whitespace plugin work with 4.2pre8 or am I missing something?
Regards
Thomas
Context-help plugin // problems
Submitted by
nothere on
Tuesday, 27 January, 2004 - 13:32
Hi,
I tried to use the Context-help plugin for php, which opens the windows-helpviewer, to access a ".chm"-php helpfile via following bsh-script:
---------------------------------------------------------
command = new StringBuffer();
command.append("hh.exe ");
command.append("mk:@MSITStore:");
command.append(helpDirectory);
command.append("/php_manual_en.chm");
command.append("::/function.");
command.append(keyWord);
command.append(".html");
runCommandInConsole(view,"System",command.toString());
---------------------------------------------------------
Now I've got 2 problems..:
First, the bsh-script does not exit and if I try to access the help again, before closing the helpviewer, the script waits for the first process to exit..
What command shall I use, to open an external application without waiting for it.
Second, following Exception each time I access Context-help:
---------------------------------------------------------
java.lang.NullPointerException
at contexthelp.ContextHelpPlugin.runScript(Unknown Source) at contexthelp.ContextHelpPlugin.runContextHelp(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at bsh.Reflect.invokeOnMethod(Reflect.java:149) at bsh.Reflect.invokeStaticMethod(Reflect.java:100) at bsh.Name.invokeMethod(Name.java:872) at bsh.BSHMethodInvocation.eval(BSHMethodInvocation.java:72) at bsh.BSHPrimaryExpression.eval(BSHPrimaryExpression.java:102) at bsh.BSHPrimaryExpression.eval(BSHPrimaryExpression.java:47) at bsh.BSHBlock.evalBlock(BSHBlock.java:130) at bsh.BSHBlock.eval(BSHBlock.java:80) at bsh.BshMethod.invokeImpl(BshMethod.java:349) at bsh.BshMethod.invoke(BshMethod.java:246) at bsh.BshMethod.invoke(BshMethod.java:171) at org.gjt.sp.jedit.BeanShell.runCachedBlock(BeanShell.java:521) at org.gjt.sp.jedit.BeanShellAction.invoke(BeanShellAction.java:76) at org.gjt.sp.jedit.gui.InputHandler.invokeAction(InputHandler.java:229) at org.gjt.sp.jedit.gui.InputHandler.invokeAction(InputHandler.java:195) at org.gjt.sp.jedit.gui.DefaultInputHandler.handleKey(DefaultInputHandler.java
:290) at org.gjt.sp.jedit.View.processKeyEvent(View.java:669) at org.gjt.sp.jedit.textarea.JEditTextArea.processKeyEvent(JEditTextArea.java:
4917) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source) at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source) at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source) at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source) at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source)
---------------------------------------------------------
Any Ideas?
Thanks in advance,
Mario
Allow specifying local/alternate servers to get plug-ins
Submitted by Anonymous on Tuesday, 27 January, 2004 - 18:57
It would be handy if I could host a local repository of plug-ins developed specifically for in-house purposes for jEdit and allow people to download them using the regular plug-in manager.
I suppose this wouldn't be hard for me to implement... hmmm...
Mode System: Allow regexes in indent*Brackets property
Submitted by Anonymous on Tuesday, 27 January, 2004 - 20:08
Some languages don't use the typical squiglly brackets "{" to demarcate chunks of code. Nor do they use any brackets at all. With these languages it would be nice if the indentOpenBrackets and indentCloseBrackets properties would accept regexes as values just like the indentNextLine property does.
Now I could be mistaken and you *can* use regexes with the bracket properties. The fact that I couldn't get it to work doesn't mean much, but I don't think so. I see a few modes where people have tried and then commented out those tags. So, please consider this feature for a future jEdit release.
CSE HTML Validator integration
Submitted by
Travis Carden on
Wednesday, 28 January, 2004 - 08:47
You should consider providing integrated support for CSE HTML Validator. http://www.htmlvalidator.com/. HTML Validator is an "HTML and CSS development tool that assists in the creation of syntactically correct and accessible HTML and CSS documents". It's amazingly thorough and generally great at what it does, and lots of other professional editors are adding support for it - http://www.htmlvalidator.com/htmlval/integration.html. I just discovered jEdit today. It looks incredible! I'll be switching to it from Macromedia HomeSite. The only thing I can tell so far that I'll miss is my CSE HTML Validator integration. Please think about adding it. Thank you!!!
Validate HTML (check_html1.bsh v1.00 by Lars Naber)
Submitted by
fixedsys on
Wednesday, 28 January, 2004 - 12:02
A Beanshell macro to check html files with an external software using the Console plugin.
You have to change the path to the checker in the macro for your needs.