jEdit Community - Resources for users of the jEdit Text Editor
Archives
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
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
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
Submitted by CatBurglerV8 on Friday, 22 March, 2013 - 19:03
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)
Submitted by hurricanedavid on Sunday, 7 April, 2013 - 05:24
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
User login
Browse archives
« January 2013 »
MoTuWeThFrSaSu
 
1
2
3
4
5
6
7
8
10
11
12
13
14
15
16
18
19
20
21
22
23
24
25
27
28
29
30
31
 
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   108252
Context Free Art (*.cfdg)   0.31   46074
BBEdit scheme   1.0   18609
JBuilder scheme   .001   18511
ColdFusion scheme   1.0   18044
R Edit Mode - extensive version   0.1   17490
Advanced HTML edit mode   1.0   16226
Matlab Edit Mode   1.0   16088
jEdit XP icons   1.0   15248
XP icons for jEdit   1.1   14312