nVidia "C for Graphics" edit mode. (Cg.xml v0.2 by Klaus Post)
Submitted by
sh0dan on
Monday, 9 August, 2004 - 13:58
nVidia C for graphics (Cg) is the basic programming language of the NVIDIA Cg Toolkit. This is a C-like language used for programming graphic cards.
This is based on the "cplusplus" template, but with only valid Cg keywords and all basic built-in functions and data types present.
v0.2 Contains a few more keywords.
Cannot install plugins
Submitted by Anonymous on Monday, 9 August, 2004 - 14:47
I am using JEdit 4.2pre15, j2sdk4.1.2_05
Whenever I try to install plugins, I get connection time out error. The first line of the error is:-
[error] Roster$Install: java.net.ConnectionException: Connection timed out.
BufferLocal 1.2 update (BufferLocalPlugin.jar v1.2 by Dale Anson)
Submitted by
daleanson on
Monday, 9 August, 2004 - 16:25
Updated BufferLocal plugin.
Fix for concurrent modification bug.
Originally, BufferLocal was called "BufferMinder" and closed buffers that were open for a while but not used. These are known as "stale" buffers.
Closing stale buffers helps reduce clutter without any work. This feature
never made it into the initial release, but others have requested it, so it's back now. It is off by default, use the Plugin Options to turn it on and to adjust how long a file should be unused before it is closed. Files that need saved will not be closed, you'll need to save first.
To turn on automatic buffer closing, click 'Plugins' then 'Plugin Options'.
Select 'BufferLocal' from the tree on the left side. Check the box that says
'Close files not used'. Set the time limit with the spinner.
When the 'Close files not used' box is unchecked, BufferLocal will still
keep track of stale buffers. You can close stale buffers at any time by
clicking 'Plugins', then 'BufferLocal', then 'Close Stale Buffers'.
Antialiasing of fonts... where?
Submitted by
DanF on
Monday, 9 August, 2004 - 18:11
I've checked, double checked, and googled everywhere and haven't found any options to enable rendering of anti-aliased fonts in jEdit. The AntiAlias plugin is deprecated, so I figured "hey, that means antialiasing is either not supported or there must be an option here somewhere...".
Can't find it. I'm feeling stupid. C'mon you guys, where is it?
I'm a PHP coder and I'm loving jEdit btw. Definitely not love at first glance, I saw jEdit last year and ran away screaming. Totally different impression now, plugins are awesome!
(Specs: Windows XP SP1, J2RE v1.4.2, jEdit 4.2pre15)
Keyboard shortcut for column ("vertical") selection mode?
Submitted by Anonymous on Monday, 9 August, 2004 - 20:27
Hi,
is there a keyboard shortcut to activate column (or vertical) selection mode without having use CTRL-LeftMouse Drag? I miss something like the ALT-C combination of UltraEdit (which I have at work), this key switches the behavior of SHIFT-Cursor-Key between normal (line) and column selection.
If not, is there a way to add it?
Thanks!
+L
stop backups
Submitted by
sleek on
Tuesday, 10 August, 2004 - 01:08
Every time I edit a file, I keep getting a backup. If the file is Main.java, the backup will be named Main.java~. I have removed the option in Global Options to put ~ as a suffix. But how can I just disable backups completely? Thanks
javadoc comments
Submitted by
sleek on
Tuesday, 10 August, 2004 - 01:12
When I use vim, I can use a .vimrc to specify that when I start comments and hit enter, the next line will continue the comment characters. For example:
/* blah blah
* the asterick is entered automatically
*/
// comment
// line 2 where // is entered automatically when ENTER is hit
/**
* Javadoc style comment does the same thing
*/
JSwat plugin not visible
Submitted by
lauviss on
Tuesday, 10 August, 2004 - 12:02
I'm using jEdit 4.1 final on Windows XP Professional. I've installed the plugin JSwat 1.5.4 with jEdit. My Problem: After restart of jEdit I cannot find the plugin. Neither with the plugin manager nor with searching through the options. May you give me a hint, what's going wrong?
Thanks in advance,
lauviss
P.S.: I've searched the forum and couldn't find anything about such a problem. If this is the wrong forum, sorry.
general folding tree view
Submitted by Anonymous on Tuesday, 10 August, 2004 - 14:31
Hi,
It would be nice to have a view that displays the folding
of a file as a tree. I know, there are plugins (XML-Plugin,
CodeBrowser,...) that do this for specific languages. What
I'm looking for is a general tree view, that is able to
display a tree view for every file in every language that uses
folgin in one or the other way. I suggest that this sould be
added to the jedit core, as support for specific languages
should be implemented in a specific plugin, a general
folding tree view belongs to the core. Well, thats my opignon,
others may think different...
BTW.: JEdit is a very cool Text editor - Thank you, guys!
mj
How to copy hyersearch result?
Submitted by
ccapeng on
Tuesday, 10 August, 2004 - 16:31
The hypersearch result is in the tree list.
Is there a way I can copy to the whole content to clipboard?
Gruntspud and MacOS X
Submitted by
stavros on
Tuesday, 10 August, 2004 - 17:53
Hey folks,
Does anybody know why the 'knew' gruntspud plugin breaks the Mac OS Plugin, or, better yet, how to fix it?
I like having gruntspud work inside jEdit, but having OS X integration to me is a bit more important ... hopefully they're not mutually exclusive
Hrm .. is this in a bugtracker of sorts? Should I be posting somewhere else, perhaps .. sorry for the inconvenience if so.
thanks,
-steve
Displaying tab and space characters
Submitted by Anonymous on Wednesday, 11 August, 2004 - 01:00
How do I do that in jEdit?

I miss that feature from EditPlus.
If it can be displayed, how can I change the symbol used for displaying these special characters? I don't like how the line-feed looks like a period.
Select_HyperSearch_Matches.bsh (modified) (Select_HyperSearch_Matches.bsh v1.01 by Ollie Rutherfurd (modified by Saturn))
Submitted by
fixedsys on
Wednesday, 11 August, 2004 - 06:48
selects all matches for the last HyperSearch in the current EditPane
XInclude problem
Submitted by Anonymous on Wednesday, 11 August, 2004 - 08:19
I try to include some xml documents to another one and valide them.
I get 'invalid content starting with element "xi:include".' error message from xml plugin at
pointsample.xml line 6.
I can't find what is wrong.
Here is my files:
sample.xsd:
<?xml version="1.0"?>
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:B="http://www.sample.com/Sample"
targetNamespace="http://www.sample.com/Sample"
xmlns:xi="http://www.w3.org/2001/XInclude"
elementFormDefault="qualified">
<element name="point" type="B:Point"/>
<complexType name="Point">
<sequence>
<element name="position" type="B:XYPosition"/>
<element name="colour" type="B:Colour"/>
</sequence>
</complexType>
<complexType name="XYPosition">
<sequence>
<element name="x-position" type="integer"/>
<element name="y-position" type="integer"/>
</sequence>
</complexType>
<complexType name="Colour">
<choice>
<element name="colour-index" type="integer"/>
<element name="absolute-colour" type="string"/>
</choice>
</complexType>
</schema>
position.xml:
<position>
<x-position>5</x-position>
<y-position>5</y-position>
</position>
colour.xml:
<colour>
<colour-index>5</colour-index>
</colour>
pointsample.xml:
<?xml version="1.0" encoding="UTF-8"?>
<point
xmlns="http://www.sample.com/Sample"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sample.com/Sample sample.xsd"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="point.xml"/>
<xi:include href="colour.xml"/>
</point>
Rectangular selection mode, clicking causes a change in buffer
Submitted by Anonymous on Wednesday, 11 August, 2004 - 13:05
4.2pre15
When in rectangular selection mode, clicking anywhere in the buffer cause it to think you are making a change to it, even if you don't insert anything there. It does not do that when in the normal selection mode.
P.S. Thanks to all the developpers of Jedit, it is a fantastic editor.
Console Plugin: Getting Commando files to save variables from last use
Submitted by
JuliusB on
Wednesday, 11 August, 2004 - 15:16
I'm tring to make a commando file for compiling individual C/C++ files.
It should take in as arguments: which compiler to use, Include switches, Lib switches and other compiler switches.
Is it somehow possible to save these variables so that you don't need to write them every time?
On a side note: Is it possible to make the Eval attribute excute an arbitrary beanshell script?
Thanks In Advance,
Julius
Btw, JEdit Rocks!!!!
How to change file properties?
Submitted by
ccapeng on
Wednesday, 11 August, 2004 - 21:28
I used to have ultraedit. To edit a read only file, I just open file browser (window file dialog box) and change file properties.
Any simliar feature in jEdit?
Console Plugin on Windows
Submitted by
Szaman2 on
Thursday, 12 August, 2004 - 01:26
Does anyone else have problems with the way javac command works under windoze? When I choose the javac option from the menu the default value for the classpath variable is:
$CLASSPATH;C:\your\current\working\directory
Now this is wrong and gives me an illegal argument exception from javac. However if you switch $CLASSPATH to a proper windows system variable notation %CLASSPATH% all is well.
This is a really anoying me, and I could not get rid of despide installing new version of jedit, and the new version of console plugin. Unfortunately I don't know anyone else who has the same issue.
Could it be caused by my Cygwin install which probably hass an env variable $CLASSPATH defined?
Indenting comment lines in Perl
Submitted by
Peacock on
Thursday, 12 August, 2004 - 07:59
When using =pod ... =cut to comment out Perl code, and subsequently using Ctrl-I to automatically indent the Perl code, the =pod and =cut tags are placed in the same column as the start column of the next line of code. They should be placed at the first column of the line though to be interpreted correctly by the Perl interpreter.
Font substitution support
Submitted by
CyberSkull on
Thursday, 12 August, 2004 - 08:42
I've noticed that in MacOS X cocoa programs in text fields/areas that when a given unicode character is not available in the current font it substitutes it from another font. For instance, I am working on a simple card game for a class project and the editor font I use (Courier) does not have the characters I wish to use, being the 4 suits: ♣, ♦, ♥ & ♠. In a program like TextEdit or the Terminal, it would simply grab the characters from another font file, for example "Apple Symbols," a general substitution font (it's nothing but unicode symbols).
I was wondering if this auto-substitution could be incorporated into future versions of jEdit.
I use Courier as my editor font, so the following symbols are appear as empty blocks to me: ₢ ₤ ₥ ₦ ₧ ₨ ₩ ₪ ₫ ₭ ₮ ₯ ℀ ℁ ℂ ℃ ℄ ℅ ℆ ℇ ℈ ℉ ℊ ℋ ℌ ℍ ℎ ℏ ∀ ∃ ∅ ∇ ∉ ∰ ⊆ ⊕ ⋀ ⊾ ⑀ ⑁ ⑂ ⑃ ⑄ ⑅ ⑆ ⑇ ⑈ ⑉ ⑊ ╒ ═ ═ ╗ ☀ ☁ ☂ ☃ ☄ ☆ ☎ ☠ ☣ ☤ ☭ ☮ ☹ ☺ ☥ ☦ ☧ ☨ ☩ ☪ ☫ ☬ ☯ ☸ ☿ ♀ ♁ ♂ ♃ ♄ ♅ ♆ ♇ ♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓ ♔ ♛ ♖ ♝ ♘ ♟ ♚ ♜ ♞ ♠ ♡ ♢ ♣ ⚀ ⚁ ⚂ ⚃ ⚄ ⚅ ⚆ ⚇ ⚈ ⚉ ♩ ♪ ♫ ♬ ♭ ♮ ♯ ♲ ♳ ♴ ♵ ♶ ♷ ♸ ♹ (This is maybe less than ¼ of the symbols font I mentioned earlier).
I do use a handful of these symbols on a regular basis in some of the documents I work on, believe it or not.