jEdit Community - Resources for users of the jEdit Text Editor
Archives
A Console Commando should remember its settings
Submitted by Sasq on Monday, 24 January, 2005 - 07:46
It would make my life much easier if the the variables you change in the Commando GUI to execute a command was remembered between invocations - it takes time to (for instance) change from Release to Debug or changing the make rule every time you compile your project.
C-COMMA under MacOS
Submitted by kh on Monday, 24 January, 2005 - 12:11
I am pretty new to jEdit, so I might be missing something basic. According to the manual and the shortcut panel in "Global Options". C-COMMA should activate the incremental search bar. But what it does on my Mac is open the Global Options panel. This is probably related to C-COMMA being the Mac default shortcut for "preferences", but then jEdit seems to get around most of the other default shortcuts, so why not this one?
Weird undo?
Submitted by Anonymous on Monday, 24 January, 2005 - 13:08
Does anyone else think that jEdit 4.2 has pretty weird undo? E.g. I type text:

Brown fox has red nose.

Then I copy "Brown fox" to clipboard and paste it to look like this:

Brown fox had red nose. Brown fox

And then I fire undo.

Expected result:

Brown fox had red nose.

Real result:

(all removed)

Pretty weird Smiling

-M. Turunen
actually what the jedit installer does?
Submitted by Anonymous on Monday, 24 January, 2005 - 14:32
Is it just unzip the files to the user choosed install directory?
PHPParser 1.1.0 Breaks HTML tag completion in PHP files
Submitted by Anonymous on Monday, 24 January, 2005 - 22:37
After updating to PHPParser 1.1.0, jEdit 4.2final will not do HTML tag completion in PHP mode. I manually downgraded ErrorList to 1.3.1, SideKick to 0.3.1, and PHPParser to 1.0.2. Everything began working again as expected.

So I decided to manually update the plugins one at a time to see which of the recent plugin updates broke this (much desired) functionality. So I upgraded them in the following order:

ErrorList to 1.3.2 => OK
SideKick to 0.3.2 => OK
PHPParser to 1.1.0 => BROKEN

Perhaps it's the combination of the 2 or 3 of them together. But ErrorList 1.3.2, SideKick 0.3.2, and PHPParser 1.0.2 all play together nicely.
can jedit add debugging feathure?
Submitted by Anonymous on Tuesday, 25 January, 2005 - 00:15
I mean the feathure of step over, add watch, break, etc.
If I use command line to start jedit....
Submitted by Anonymous on Tuesday, 25 January, 2005 - 12:35
If I use command line to start jedit, is it possible to close the command promt automatically after jedit started?
Using EVAL to make Commando definitions remember its variables/settings ?
Submitted by Sasq on Tuesday, 25 January, 2005 - 13:50
I'm trying to make a Commando files remember it's settings instead of setting the same default value each time.
Instead of this:
<ENTRY LABEL="Custom rule name" VARNAME="ruleName" DEFAULT="all"/>
I want something like this:
<ENTRY LABEL="Custom rule name" VARNAME="ruleName" EVAL="if(ruleName != null) ruleName else "all" "/>
(except the last one obviously doesnt work). Any suggestions?
Search for whole word only?
Submitted by Anonymous on Wednesday, 26 January, 2005 - 22:31
It would be VERY nice if I could easily search just for a string that is an entire word, and not possibly embedded in another word. For instance, in this mode, searching for 'it' should not match the word 'hit', just the word 'it'. Other editors (UltraEdit, NEdit) have a button called 'whole word only' or some such, on their search dialog. As it is, in jedit, I have to use a regular expression, and surround the word with \b characters.
Cannot install plugins.
Submitted by Anonymous on Thursday, 27 January, 2005 - 04:47
Hi there,

I tried to install JEdit 4.2pre.15 on a Win2k box.

This is the Java version that I run :
C:\Documents and Settings\Administrator>java -version
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
Java HotSpot(TM) Client VM (build 1.5.0-b64, mixed mode, sharing)

And this is the error message that I have when I try to get plugins:
Could not download the plugin list.
(java.net.UnknownHostException: plugins.jedit.org)

I have obviously access to the net, because I can send you a message Smiling
And I have no proxy..

I also tried with a 4.2 and I get the same error message..
Delete of directories in VFS file browser
Submitted by Anonymous on Thursday, 27 January, 2005 - 12:26
The VFS file browser does not allow me to delete non empty directories. I very useful feature would be if jedit could ask if I would like to delete the directory including its content. Current error message I get is: "The following I/O operation could not be completed: Cannot delete file."
JavaFold
Submitted by Anonymous on Thursday, 27 January, 2005 - 15:02
I've downloaded and installed this plugin, but I cannot figure out how to get it to work. Now that it's installed, how do I get jEdit to hide bracketed contents?

--Matt
Auto Completion by default? (without Ctrl-B)
Submitted by Anonymous on Thursday, 27 January, 2005 - 16:22
Is there anyway that you can enable autocompletion to automatically pop up so I don't have to type Ctrl-B everytime?

Thanks in advance
Splitting Docking Pane
Submitted by Anonymous on Thursday, 27 January, 2005 - 20:26
Is it possible to split the docking windows, say top half file browser, bottom half perl browser

Thanks
Gz
Allow < code > and/or < ? php > for Input
Submitted by Anonymous on Thursday, 27 January, 2005 - 21:31
Drupal is currently not set to allow < code > or < ?php > for input. I would like to share some code, but this is difficult with the current settings which will not display the code as I would like within a posting.

Even for this posting I needed to add a space after < and > . Thanks
Regular Expression Syntax Help
Submitted by Anonymous on Thursday, 27 January, 2005 - 21:39
I have the following on 3 separate lines in many, many files. So, I want to Search and Replace with regular expressions. Here are the lines:
< td >< img src="/theme/images/mainmenu-left-off.gif" alt="[" >< /td >
< td background="/theme/images/mainmenu-background-off.gif" >< span class="menu_lower" >< a href="/foo//links/" >Bar< /a >< /span >< /td >
< td >< img src="/theme/images/mainmenu-right-off.gif" alt="]" >< /td >

My regular expression can't find the above, and I don't understand why, any suggestions:

\s*\S*< td >< img src="/theme/images/mainmenu-left-off.gif" alt="[" >< /td >\r*\n*\s*\S*< td background="/theme/images/mainmenu-background-off.gif" >< span class="menu_lower" >< a href="foo" >Bar< /a >< /span >< /td >\r*\n*\s*\S*< td >< img src="/theme/images/mainmenu-right-off.gif" alt="]" >< /td >

Thank you. Sorry, the above code looks dirty. I tried < code > and < ? php > here so it would cleanly post, but those input formats are not available. I had to add a space after every < and before every > . This message is difficult to read Sad.
ability to sort by columns in File System Browser
Submitted by paulflory on Friday, 28 January, 2005 - 05:05
A request: to be able to click on the columns in the FSB to sort the dirs/files by name, type, size, status, and last modified.

First click on a column heading (like Size) would sort one way, say ascending; a second click on the same heading would sort in the opposite order (descending).

Would others find this useful, or useless?

Thanks,
Paul
indenting splitted code lines
Submitted by ajba74 on Friday, 28 January, 2005 - 16:07
Hi everyone,

Suppose I want to split one code line in two lines of jedit. How do I set the indenting space for the second jedit line, if I don't want a full TAB space.

Thanks in advance,
Arnaldo
Danish letters
Submitted by Anonymous on Friday, 28 January, 2005 - 19:54
I have a problem getting æøåÆØÅ to work in jedit, I've tryed
-Dfile.encoding=UTF8
-Dfile.encoding=ISO-8859-1
and setting the encoding properties in the build.xml file.
I'm running Debian and æøåÆØÅ work in all other app's.

I have not tryed to compile it manualy without ant.

Hope somebody can help me getting to use this incredible editor more often.
could the moderators delete the "junk" posts from the forums?
Submitted by Anonymous on Saturday, 29 January, 2005 - 01:07
Some idiot has been posting a lot of crap with links to porn sites.

For example, see the messages with heading "ciao ciao".

Could someone remove these? It's like unwanted graffiti.

Thanks,
P
User login
Browse archives
« January 2005 »
MoTuWeThFrSaSu
 
2
15
16
 
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   108249
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