Toggle Read Only (Toggle_Read_Only.bsh v1.0 by Ollie Rutherfurd)
Submitted by Anonymous on Wednesday, 18 February, 2004 - 02:32
Updated on 02/18/2004 - 02:36
Downloads: 1925
Plugin download stalls
Submitted by Anonymous on Wednesday, 18 February, 2004 - 22:13
I'm trying to install a plugin...
My jEdit Plugin Manager opens, and downloads the latest list of plugins OK, but when I select one or more to install, the Installing Plugins progress bar appears, but does not download anything.
My modem monitor shows that no data is being downloaded. It doesn't matter which pluing I try or where I try to save it.
Please help. Thanks, Tom
System info:
J2SE SDJ 1.4.1 on Win98
dial-up modem
jEdit 4.1final
word wrap woes
Submitted by
jeidsness on
Thursday, 19 February, 2004 - 01:39
hello, all. I have upgraded from 4.1 to 4.2pre9 and cannot figure out how to get word wrap working properly.
I'd like it to do a softwrap to whatever size the text pane happens to be. if i set it to soft wrap, with a margin of 0, it doensn't wrap at all. i can put in a specific margin size (50 or whatever) and it wraps, but sometimes i have 2 files open side by side, sometimes only one (not to mention sometimes i make the jedit window smaller/bigger). i'd like it all to wrap automagically.
am i looking in the wrong place?
thanks in advance
buffer.save problem
Submitted by
jcb on
Thursday, 19 February, 2004 - 08:45
Hello,
I'm struggling with the following problem: I wrote a macro which takes the current buffer, saves it at first and runs then a command line utility via runToBuffer() on the saved file. If this was successful it closes the buffer and tries to save the new untitled one (which holds the results of the computation).
runCommandToBuffer(...);
waitForConsole(view);
jEdit.closeBuffer(view,buffer);
buffer.save(view, null, true);
But the last statement in my macro - buffer.save(view,null,true) does not save the buffer "Untiteld-1". The bean shell variable buffer still points to the formerly closed buffer. Is someone out there who knows how i could save the new buffer created by runToBuffer() in my macro? Any help is greatly appreciated!
Jens-Christoph Brendel
compiling jedit using gcj ?
Submitted by
shyam on
Thursday, 19 February, 2004 - 16:50
has anyone tried compiling jedit using gcj ?
K.Shyam
TADS mode (tads.xml v0.1 by Saimon Moore)
Submitted by
saimonm on
Thursday, 19 February, 2004 - 19:31
A syntax highlighting mode for the TADS (Text Adventure Design System) interactive fiction authoring system (See
this for more details).
switchLineSeparatorForAllBuffers.bsh v0.2 by Saimon Moore
Submitted by
saimonm on
Thursday, 19 February, 2004 - 19:35
Displays a dialog which allows you to switch the line separators of either:
- All open buffers in current view
- All files (recursive) in a specified directory
- All files in a ProjectViewer project which you select
Update: Added filter and now the macro will only close files which are not already open.
Please feel free to update and improve on this...
listMarkers.bsh v0.1 by Saimon Moore
Submitted by
saimonm on
Thursday, 19 February, 2004 - 19:38
Displays a dialog similar to the hypersearch dialog
which list all the markers set in the current buffer. Clicking on the entry
takes you to the marker in the buffer.
Please feel free to improve on the presentation ;)
File Open - wild card search
Submitted by Anonymous on Thursday, 19 February, 2004 - 20:38
I recently started using jEdit on Windows platform. I like it a lot but there is one feature that I don't like and I was wondering if there is a way to do this.
On most Windows apps, File Open dialog has a "File Name" field that I can type the exact name of the file or do a wild card search. jEdit seems to expect user to type in the exact name or use "Filter" field to do wild card search. It is more convenient to be able to do both from the same field because sometime you don't remember (or don't want to type) long file names.
Is there a way to do this in jEdit?
Thanks.
jEdit 4.2.pre9 on Java 1.5.0 beta - NoClassDefFound
Submitted by Anonymous on Thursday, 19 February, 2004 - 21:30
I recently installed the Java 1.5.0 beta on my Linux machine. jEdit 4.1.final seems to have no problems with it, but when I try to run jEdit 4.2.pre9, I get this error:
Exception in thread "main" java.lang.NoClassDefFoundError: error:
Note that this is the only line printed. There is no stack trace or any other information. Odd, isn't it? Has anyone been able to duplicate this problem?
Trevor
jEdit Applet?
Greetings guys,
I'm looking for a jEdit or like cross plataform editor that work as a java applet. I'm involved on a development project in which we would like to implement a browser-based interface (ide if you like) for coders to work. Sintax highlighting and indentation are the main features we are looking for. Any solutions out there? Any jEdit-based applet?
Multiline search/replace
Submitted by
setmajer on
Saturday, 21 February, 2004 - 12:47
Apologies if this is an obvious question, but the answer isn't apparent from the online docs:
I switch back and forth between Mac and Windows regularly, and am evaluating jEdit as a replacement for HTMLKit & BBEdit so I don't have to remember two sets of preferences, shortcuts, etc.
One of the features both ot those apps have is multi-line input for find/replace. That is, a largeish text box that allows one to input multiple lines of text for both the search and replacement strings. jEdit doesn't seem to offer this feature. In fact, from the documentation (and my experimentation), it doesn't seem jEdit allows one to search for a multi-line string at all.
Am I missing something, or does jEdit really not handle multi-line replacements?
TIA
Image dimensions when writing HTML
Submitted by
setmajer on
Saturday, 21 February, 2004 - 12:53
Another question regarding using jEdit as an HTML/PHP/ECMAScript/CSS editor:
One great time saver in BBEdit/HomeSite/HTMLKit/etc. is the ability to get the dimensions of an image from within the app. While this isn't really something I would expect as core functionality, I'm surprised I can't find a macro or plugin to do this.
Is this something that's not possible? Or have I just not dug far enough into BeanShell to figure out?
TIA
File system browser shortcuts and positioning of items in the toolbar
Submitted by Anonymous on Sunday, 22 February, 2004 - 15:33
Hi,
Thanks for an excellent browser.
Two requests:
1) I have looked around but I can't find any way to attach a keyboard shortcut to the "Directory of current buffer" option that I use all the time. I can't put an icon on the main toolbar (see 2) either.
2) The way I prefer to position is to the left and have it as narrow as possible to free up editing space. Unfortunately, I then have difficulty seeing the toolbar dropdown items.
It would be nice if it was possible to have the file browser toolbar items in on the main toolbar. On my machine, the latter is almost empty since I know most of the commands by heart.
writing a macro that repeats to end of file
Submitted by Anonymous on Sunday, 22 February, 2004 - 20:12
I'm having trouble writing a macro that repeats to the end of file. I want the curser to move down 2 lines, then delete, then move down 2 lines, then delete, repeatedly until the end of file is reached.
I wrote the macro that moves down 2 lines and deletes and tried repeating using C+Enter, but if you give it a number that goes past the end of file it starts deleting lines that I don't want deleted.
There's got to be a way to do this. Anyone know?
dave
Whacked permissions on a shared drive under Win2K
Submitted by
setmajer on
Sunday, 22 February, 2004 - 20:33
This is as likely due to my own pathetic admin skills as anything, but here goes:
I'm running jEdit from a 'power user' account on a Win2K laptop. I'm editing a file that resides on a Mac OS X.2.8 desktop. 'Windows File Sharing' is enabled on the Mac, and that's how I'm connecting to it with the PC (I used an theusername/p'word from an admin account on the Mac I connected to it, if that makes a difference).
I mapped the folder containing the file using 'Map Network Drive...' on the Win2K machine, then opened it in jEdit, made a trivial change and saved it. Thereafter, the permissions were set to 740 (they had been 755). I can't set the permissions back via the Windows Explorer, either, so I have to get up and walk over to the Mac to fix the permissions.
Any ideas what I've screwed up?
Some additional observations:
-- When viewed from the Mac, the permissions of the directory are 755. When viewed from the PC, there's no access allowed for anyone other than my own account (the file's owner). I've tried changing the permissions on the directory from Windows to allow everyone to read & execute the folder but it never sticks; the PC just churns for 5 min. or so, then closes the Properties dialog; when I reopen it, the permissions are unchanged.
-- jEdit changes the permissions on the files if I access it directly from the network location (//hostname/directory/file.ext) as well.
-- HomeSite doesn't ever change the permissions on the file, but HTML-Kit misbehaves just as jEdit does.
-- jEdit behaves itself if I open the file via FTP, but I'd rather not type a URL + username + password every time I want to open a file.
Go to Ruby method v0.5 (Go_to_Ruby_method.bsh v0.5 by Rob McKinnon)
Submitted by
robmckinnon on
Monday, 23 February, 2004 - 05:35
Brings up a popup menu of Ruby methods that are in the current buffer grouped by class and ordered alphabeticaly. Selecting a class or method from the menu places the caret at that member's location in the file.
New in v0.5:
- Submenus show if there are multiple classes in file.
- Show wait cursor while popup is being generated.
- Fixed bug that occurred when "class" or "def" are preceded by non-white text.
XML plugin: Detect encoding
Submitted by Anonymous on Monday, 23 February, 2004 - 12:33
When loading an XML document the XML plugin should detect, and switch to, the encoding specified in the XML header.
Example:
<?xml version="1.0" encoding="utf-8"?>
<exampledocument/>
My default character-encoding is cp1252. If I were to open the example-document I would risk corrupting the document when saving. Instead I wish that the XML plugin should recognize encoding="utf-8" and automatically switch.
LaTeXTools Urgent Bug Fix. (LaTeXTools.jar v0.5.1 by Anthony Roy)
Submitted by
antroy on
Monday, 23 February, 2004 - 13:55
Version 0.5 of the plugin replaced the General Options pane in jEdit's Global Options with its own General Options. This release fixes that bug.
Locking a New View
Submitted by Anonymous on Monday, 23 February, 2004 - 15:56
Hi,
I took a quick look through the documentation but couldn't find anything relevant. My apologies if this is clearly addressed somewhere.
jEdit is fantastic, but there is one "feature" which annoys me. Occasionally I like to create multiple views (via the "New View" button) for different files I'm editing at the same time. However, whenever I open a new file it updates the current buffer in *each* view to reflect that new file. I then have to switch back to the correct file I was editing in each view. Is there a way I can tell jEdit NOT to switch the current buffer when opening a new file for a particular instance of a view?
Hopefully what I'm asking is clear. Thanks for any help.