Submitted by Anonymous on Thursday, 1 January, 1970 - 00:00
n/a
Submitted by Anonymous on Thursday, 1 January, 1970 - 00:00
n/a
Submitted by Anonymous on Thursday, 1 January, 1970 - 00:00
n/a
Submitted by Anonymous on Thursday, 1 January, 1970 - 00:00
n/a
autosave on focus lost
Submitted by
dmol on
Sunday, 24 February, 2013 - 11:35
Hello!
I have written an small beanshell startup script, that does save all modified buffers on jEdit focus lost. It's useful on html/css/php etc. development when you need an result of your changes frequently in other application (browser, curl-output etc.).
Since I have not found how to upload it, I just put it here as is (put it as ~/.jedit/startup/Save-On-Focus-Lost.bsh)
EditBus.addToBus(new EBComponent() {
public void handleMessage(EBMessage message) {
if (message instanceof EditPaneUpdate) {
if(message.getWhat() == EditPaneUpdate.CREATED){
Log.log(Log.MESSAGE, BeanShell.class, "adding deactivation listener... ");
myView = message.getEditPane().getView();
myView.addWindowListener(new WindowListener(){
public void windowDeactivated(WindowEvent e){
Log.log(Log.MESSAGE, BeanShell.class, "windowDeactivated event");
oppositeWindow = e.getOppositeWindow();
if(oppositeWindow == null){
Log.log(Log.MESSAGE, BeanShell.class, "application is loosing focus ");
//jEdit.saveAllBuffers(myView,false);
jEdit.saveAllBuffers(e.getSource(),false);
}
}
invoke( name, args ) { };
});
Log.log(Log.MESSAGE, BeanShell.class, "success");
}
}
}
});
Suppress %USERPROFILE% in visible path?
Submitted by
gthorburn on
Monday, 25 February, 2013 - 12:53
I've just upgraded to jEdit 5.0 in Win 7 Home, using the Windows installer.
I was pleased that it picked up all my customizations from 4.3, but whereever
a path is displayed, 5.0 it shows the env var %USERPROFILE% rather than the
actual path, which would be more helpful to me.
Can I get jEdit to show the actual path, eg, "C:\Users\me..." ?
Thanks,
-- Gary
Left Paren "(" not visible on Macbook after 10.8.2 update
Submitted by
FatDog on
Thursday, 14 March, 2013 - 16:07
My work supplied Macbook was having some issues so they upgraded the OS to 10.8.2. Not the latest but a good working version of the previous version.
I was stuck in a WarRoom and had to use Jedit on the Mac and discovered something funny. The left parenthensies are all invisible:
my %gPUB_HASH = (); - This is what it looks like in TextWrangler
my %gPUB_HASH = ); - This is what it looks like in Jedit
The open paren character "(" is invisible all throughout the .pl script. I have changed the color scheme, the background and even tried reloading with several different encoding schemes but no luck.
If I cut and paste the text into a email or TextWrangler the character shows up. It is just invisible
As I type the closing ")" character the cursor does flash to where the "(" should be so Jedit knows it is there.
Help! This is really annoying and does not happen on my various Window installs.
Submitted by Anonymous on Thursday, 1 January, 1970 - 00:00
n/a
portable jEdit all in one?
Submitted by
timou on
Thursday, 21 March, 2013 - 15:02
Hi All...
I'm using jEdit since a long time and it's a perfect text editor..; EXCEPT :
It's painfull to install and upgrade!
I was trying to find a jEdit for python (and Maya MEL) with
def/method/proc listing (ctags)
maya communication
Difficult and time consuming!
Why there is no a all in one package of jEdit with all of this features?
Or can you tell me wich release of jEdit/plugs are you using togoether? (jEdit 5 doesnt work well with the ctags plug for me)
Thanks....
JMF
I'm curious as java JMF2.1.1e DOES NOT INSTALL in jdk1.6.0 ad later has anyone else encountered this ?
testautoComplete loose focus
Submitted by
timou on
Monday, 25 March, 2013 - 08:41
Hi...
I have a problem with the text autocomplete plug-ins...
when I write a word, let's say "print", after 2 worlds, the popup appears then if I continue to type, the focus is loose.
at the end of the word, I hit space, then a I cannot ype anything. I have to refocius on the current tezxt view with the mouse.
UI tried on jEdit 4.5 and 5... that's the same.
Any idea?
Thanks
Upgrading jEdit from 4.5.1 (WinXP) to 5.0 (Windows 7 Home 64-bit)
I have a lot of plugins and configurations in my old version (4.5.1) of jEdit, like many of you, I'm sure.
Can I copy my settings directory to my new computer (Windows 7 Home 64-bit) and will the new version of jEdit (5.0) work with it? Will there be glitches down the road? Should I just manually move over all my settings?
I know how to specify the profile directory in the command line, so that's not what I'm asking. I'm just wondering if 5.0 stores its settings differently, so that pointing 5.0 to a 4.5.1 settings folder would be bad.
Thanks for any help, and for this truly awesome program!
jEdit display RTF
Submitted by
amysaarimn on
Tuesday, 16 April, 2013 - 13:07
Hi
I'm new to jEdit and have it running in a swing app. I need to store files on the local disk in plain text, but want to allow users to work with them in RTF. On the load I'll add in the RTF and then strip it out on the save. Can anyone tell me how to set the content type in jEdit to render RTF correctly? I tried using JEditPane but it supports only limitted RTF - what I really need is the hide feature to keep track of the editing going on.
Thanks for any help
Amy
Sidekick plugin doesn't handle CSS @media sections?
Submitted by
Phrawm48 on
Thursday, 25 April, 2013 - 15:49
First, my apologies if I've put this in the wrong forum. I took a look a the various forums and concluded this would be the place to discuss an apparent issue with jEdit 5's Sidekick plugin.
I recently discovered that the jEdit 5.0.0's excellent Sidekick plugin evidently doesn't cope well with CSS @media statements / sections.
I have a CSS file that includes a "@media print" section. Sidekick lists all the styles in the default section of the CSS file, but does not list anything contained in the print section.
If I remove the @print section statements and its delimiters, then in Sidekick click Parse, Sidekick now lists all sections. For example, the default section of the CSS contains a "body" selector, as does the print section of the CSS. With the @media statement and delimiters removed, Sidekick lists both of the "body" selectors. If I put the @media section back in and Parse and Sidekick only sees the default section's "body" selector.
I'm only a jEdit user, not a developer, but wanted to raise this issue in the developer's forum because it's where I think I might get a useful response; and if we're all lucky, maybe even a fix at some point.
Cheers & thanks for your help,
Riley
SFO
CtagsInterface - filtering tags: is it possible ?
Submitted by
wkevils on
Thursday, 9 May, 2013 - 19:21
Hello,
With ProjectViewer and CtagsInterface plugins (in conjuction),
if the directory tree is not part of a project, you simply right click the root and select "Plugins -> Add source tree to tag index" to generate tags.
see also:
http://jedit.9.x6.nabble.com/Re-jEdit-devel-jEdit-users-ctagsinterface-tags-refreshing-td4999851.html
I don't know what is the tags engine of CtagsInterface; it could be that it is exueberant tags.
In any case, I am working with kernel source tree. When I am generating a tag file,
I am used to add some filters to the tag creation (not include architectures which I
do not need; including them increases the possible options when jumping to methods which
has the same name in different architectures.
I tried to work with CtagsInterface without creating a special project in ProjectViewer;
when I click the root of a kernel tree and select "Plugins -> Add source tree to tag index" to generate tags, it takes a lot of time and it traverses all the kernel tree.
Is there a way to add filter to the tags creation?
(like: --exclude=arch/ia64, which I use when I create my tags with exuberant tags)
regards,
Kevin
Screen resolution problem on Mac OS 10.8
Submitted by
Gregory on
Monday, 13 May, 2013 - 11:38
After many years of happily using jEdit on a Windows machine, I have finally switched to a Mac. I have a 15" MacBook Pro with the Retina display, which gives amazingly high-resolution graphics. However, after installing jEdit 5.0.0 via the Mac disk image, the graphics resolution for jEdit is seriously degraded, with strong pixellation. This applies not just to the text in the editor, but throughout: menus, icons, everywhere.
Interestingly, I had previously installed jEdit 5.0.0 via the Java installer, and the graphics worked perfectly. I just wanted to have it installed as a Mac application, so I re-installed.
I have tried upgrading Java from 1.6.0 to 1.7.3, but that did not seem to make a difference.
I will be grateful for any suggestions. I am still new to Mac OS, so there may be some simple setting to change that will make all the difference.
/Gregory
Need Help for my first Macro!
Submitted by
alcymart on
Thursday, 23 May, 2013 - 02:35
Hello Everyone, I need a very basic macro to get me going in the correct direction. Doing this manually would take me years. I presently know nothing at all about coding with Beanshell except for a few basics. Not enough to write even 1 line of code. Would someone Can someone kind enough write me this small macro. I learn better from example than reading a bunch of tuts. Honestly, I don't even know what to write as the first line of code even if I read all the tutorials as I didn't finish high school.
I kindly ask if anyone here can write the following script which I will explain now:
Lets say I inputed that the highnumber=49 for the sequence of numbers below:
03,15,24,36,38,41
The script must look at the numbers above and translate the line to the
format below with high number being 49 and replace it into this format below
which are all the numbers that aren't in the sequence from 1 to 49 all on 1
line in jedit:
01 02 04 05 06 07 08 09 10 11 12 13 14 16 17 18 19 20 21 22 23 25
26 27 28 29 30 31 32 33 34 35 37 39 40 42 43 44 45 46 47 48 49
If I input the high number of 10 for an easier combo below:
03,05,07
It would return 7 nunbers below which are not in the sequence:
01,02,04,06,08,09,10
the script must thereafter do the next sequence of combinations etc, as there are thousands of lottery draws. Yes its to edit Lotto numbers. It must basically loop until it reaches the last sequence of numbers.
With this sample script I could learn from example and use this script as a foundation for other scripts as the
scripts I need all have to do with editing numbers as above.
Thank you in advance to the kind person who will do this for me...you shall be rewarded accordingly...
jEdit 5.1pre1 is out!
Submitted by
Vampire on
Friday, 24 May, 2013 - 00:42
Hello everyone,
I proudly present jEdit 5.1pre1, the first preview development release of the 5.1 series of jEdit.
Detailed changes can as always be found in the Change Log at
http://jedit.org/CHANGES51.txt, but here are some of the major features of this version:
- WorkThreads have been rewritten into Tasks, making it possible to completely remove the old
"I/O Progress Monitor" and the wasteful space it took up in the Task Monitor. Old deprecated
classes related to WorkThread and WorkThreadPool have been removed.
- New Plugin Manager option to check for and disable obsolete plugins. Enabled by default,
this will ensure that old unsupported plugins do not interfere with the running operation of jEdit.
Volunteers are always welcome to contribute to the future of jEdit:
http://www.jedit.org/index.php?page=devel
That being said, here is the download link:
http://www.jedit.org/index.php?page=download
FYI, merge requests for the 5.1 series (fix done, but waiting for a review) can be found at:
https://sourceforge.net/tracker/?group_id=588&atid=1235750&status=1&artgroup=6846241
Have fun with the new release.
How to change font for jEdit Help
Submitted by
rovf on
Wednesday, 12 June, 2013 - 13:56
How can I make the font of the jEdit help window bigger? I find it hard to read.
I tried to adjust GlobalOptions/TextArea/TextFont, but this changes just the font for the edit pane, not for the Help.
get back Rot13.bsh macro
Submitted by
weberjn on
Thursday, 13 June, 2013 - 14:18
Hi,
in recent jEdit versions the Rot13.bsh macro is no longer included. Could you please put it back?
I found it in
http://rpmfind.net/linux/RPM/sourceforge/j/je/jedit/jedit/3.2/jedit-3.2-1.noarch.html
Thanks,
Juergen