no answer first time(s) - why don't C+c and C+v work in ubuntu as they should
Submitted by
mamboze on
Monday, 20 August, 2007 - 05:37
Well, the title says most of it. I have used jEdit on win xp before, great editor, now on ubuntu, still a great editor but with one irritating hassle, C+c does a cut instead of a copy and leaves 'c' behind, C+v pastes and adds a 'v'. OK, I can use C+insert and S+insert,these work OK but these are listed only as alternative shortcuts in Options/Shortcuts.
Sure, jEdit rocks but it could rock a bit better for me if these shortcuts worked as designed and specified in the relevant Options section.
I'm not sure whether this is a bug (unlikely) or that I've overlooked some switch or other. Has anybody else experienced this problem?
no answer first time(s) - why don't C+c and C+v work in ubuntu as they should
Submitted by
mamboze on
Monday, 20 August, 2007 - 05:39
Well, the title says most of it. I have used jEdit on win xp before, great editor, now on ubuntu, still a great editor but with one irritating hassle, C+c does a cut instead of a copy and leaves 'c' behind, C+v pastes and adds a 'v'. OK, I can use C+insert and S+insert,these work OK but these are listed only as alternative shortcuts in Options/Shortcuts.
Sure, jEdit rocks but it could rock a bit better for me if these shortcuts worked as designed and specified in the relevant Options section.
I'm not sure whether this is a bug (unlikely) or that I've overlooked some switch or other. Has anybody else experienced this problem?
site feedback
Submitted by
tonyhnz on
Monday, 20 August, 2007 - 17:29
Firstly - the product itself is great, have worked with it using ruby and erlang now and found great plugins/tips that help productivity.
The site is another matter.., i apologize if these have been covered elsewhere.
The stylesheet is very bland and could do with revamp. I have messed with drupal in the past and know that it can look much better then this without too much effort. Maybe some sort of competition to choose a new theme ?
It is very difficult to search the forums to try to see if a particular question has already been asked. I am not sure what search method is used (maybe drupal built in) but i have found better results using google search. Maybe google search could be integrated into site.
Lastly the wiki seems to be completely hosed up apart from the home page ( i am using firefox ). I get all sorts of garbage displayed and cannot see any wiki content. I would suggest mediawiki be used instead and to have integrated logins from the drupal site.
I would like to see the website reflect the strength of the product as it may turn off some potential users in it's current state.
I am willing to help with this.
Associating Files With jEdit
Submitted by
doggroomer on
Monday, 20 August, 2007 - 18:07
I really like using jEdit. It is a wonderful piece of software.
But with version 4.2 there is no way to associate file types with jEdit.
I was looking for a way to associate file types with jEdit in Windows.
Windows will not let you associate an executeable ".jar" file with a file type.
I like the function in windows of just double clicking on the file name and
having the file load in a particular application. When a file is double clicked
in Windows the file name is passed to the program associated with that file.
From some simple testing I knew that jEdit would accept a command line argument
with the file name in it. So all you have to do is create a simple executeable
file that will pass its command line arguments to jEdit and load jEdit. I did
this using Visual Studio 2005.
Create a new windows application and name it "jEdit".
Make the Icon for the executeable
In the Solution Explorer right click on the jEdit project and select
"Properties".
In the main screen on the left hand tab section choose the "Application"
tab.
Under icon browse to the jEdit icon saved wherever jEdit was installed on
your computer.
Add this code in the form load event
Try
Dim jFile As String = ""
If My.Application.CommandLineArgs.Count = 0 Then
'There are no command line arguments
'So there is no File Name supplied
'Will just load Jedit when .exe is double clicked
jFile = Nothing
Else
'A file associated with this appliction is doubled clicked
'The file name is passed in the first command line argument
'Enclose filename in quotation marks in case of spaes in file name
jFile = Chr(34) & My.Application.CommandLineArgs.Item(0) & Chr(34)
End If
Dim applicationName As String = "C:\Program Files\jEdit\jedit.jar"
Dim jProcess As New System.Diagnostics.Process
jProcess.StartInfo.FileName = applicationName
jProcess.StartInfo.Arguments = jFile
jProcess.Start()
jProcess.Close()
Catch ex As Exception
MessageBox.Show(ex.Message, "jEdit Load Error")
End Try
Me.Visible = False
Me.Close()
The "C:\Program Files\jEdit\jedit.jar" is installation location for the jEdit
executeable. So change this as necessary.
Build the project
Navigate to the Visual Studio 2005 project folder for the jEdit project you
created and locate the executeable created after the build.
Save the ".exe" in the jEdit installation directory.
You now have a "jEdit.exe" that you can associate file types too.
Vertical lines marking block locations
Submitted by
etiger13 on
Monday, 20 August, 2007 - 20:42
Does anyone know how I can get the vertical lines showing where the tabs line up like here: http://www.rutherfurd.net/jEdit/jedit_ss3.jpg
the vertical lines I want start with the current tab and go all the way down to the next tab. not the lines in the gutter, but the lines in the actualy document itself
Can't run ant buildfiles that use cpptasks from ant-contrib
Submitted by
ilkka on
Tuesday, 21 August, 2007 - 10:22
Hi,
I'm having trouble using cpptasks in my Ant buildfiles in jEdit. The builds run fine when I run Ant from the command line or using standalone Antelope. When I try to use the AntFarm or Antelope plugins however, with either the Ant plugin or the standalone Ant, I get this error message (output is from Antelope but it's the same either way):
===== BUILD STARTED =====
BUILD FAILED
C:\workspaces\ ... \build.xml:7: Problem: failed to create task or type antlib:net.sf.antcontrib.cpptasks:compiler
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any / declarations have taken place.
This appears to be an antlib declaration.
Action: Check that the implementing library exists in one of:
-C:\apache-ant-1.7.0\lib
-C:\Documents and Settings\USERNAME\.ant\lib
-a directory added on the command line with the -lib argument Total time: 0 seconds ===== BUILD FINISHED ===== Tue Aug 21 11:58:51 EEST 2007
The required ant-contrib and cpptasks jars are in both the systemwide ant lib directory and in .ant\lib under my home directory. The tasks are imported into the buildfile using the antlib functionality, like this:
<?xml version="1.0"?>
<project name="blah"
default="compile"
xmlns:cpptasks="antlib:net.sf.antcontrib.cpptasks"
xmlns:antcontrib="antlib:net.sf.antcontrib">
<target name="compile">
<cpptasks:cc ... >
</cpptasks:cc>
</target>
</project>
Any help greatly appreciated.
C+c, C+v and file browser changes
Submitted by
mamboze on
Wednesday, 22 August, 2007 - 15:14
Since changing from win xp to ubuntu, I have found in jEdit, C+c does not copy, it cuts and appends a 'c'; C+v pastes but appends a 'v' (C+insert and S+insert work OK, but I prefer C+c and C+v). Also in the file system browser in jEdit under ubuntu, left mouse clicks do not open files or display folder trees, the right mouse button has to be used.
I'm not sure if this ia a bug or maybe a reinstall is in order. I posted twice to the using jEdit forum, but got no reply. I would like to fix these two problems as they reduce the pleasure of using what is be one of the best editors around
jEdit clobbering file's group
Submitted by
easley on
Thursday, 23 August, 2007 - 08:12
On my Linux box, I changed the group and permissions of a file so certain other users can also edit it. My 'main group' is "david", so by default any files I create have this as the group. The common group between me and the other users who need to edit this file is called "users". I used chgrp to change the group of the file to "users". "ls -l" confirms the group is now "users". When I open the file in jEdit, update and save, the group gets changed back to "david". When I change the group to "users" again try editing the file with a native editor (e.g. gedit) the group is not clobbered on save.
I'm using version 4.3pre10, installed using the Java installer.
Anyone know how to work around this? Should I report it as a bug?
David
Javascript Editing Performance
Submitted by
seani on
Friday, 24 August, 2007 - 14:19
Hi,
I'm changing some largish JS source code files (5000 ~ 10,000 lines), and I've noticed that there's quite pause when I type a function name followed by a "(" character in these files.
I'd guess this is something to do with some sort of code-completion/parsing. Any insights, and how would I turn off whatever behaviour might be causing the delay?
Thanks
Sean
jEdit startup behavior on WinXP
Submitted by
NMPE on
Friday, 24 August, 2007 - 15:54
When I installed jEdit I chose to have it start automatically when Windows started. Now I don't want that behavior anymore. (I don't mind waiting for it to load completely on the odd occasion that I use it now.) Is there any way I can change this setting without removing it and reinstalling? [jEdit4.3pre9 using Java 1.6.0_01]
JEDIT 4.3PRE10 Halts or Crashes
Submitted by
tcwaggoner on
Friday, 24 August, 2007 - 23:21
JEDIT 4.3PRE10
Java 1.6.0_02
Win2K
Problem: Program crashes when any menu is selected.
Work Around: Rename or delete sub-folder “startup” in folder “jEdit”
mcse exam preps ?
Submitted by
jakannan on
Saturday, 25 August, 2007 - 22:01
i am studying for my mcse 2003 exams . I have a week to prepare for my 070-290 exam . Iam looking at
some practice exams to purchase for my exam . anyone knows how good are certmagic.com practice exam for
070-290 ? . plz let me know if they are well worth it or they are not
Windows jEdit launcher for Ant (bare name launcher)
Submitted by
ajcacho on
Sunday, 26 August, 2007 - 17:57
Hi
Here’s my two cents contribution (ok, I’m overrating this):
For invoking jEdit from Ant, irrespective of platform (i.e. not using OS specific code in Ant), it would be nice to invoke jEdit as a bare name, without extension.
Doing so it would try to launch jedit.exe in Windows and the jedit script in other OS (linux/bsd/...). But there's none in the 4.3 build.
For such purpose the Windows exe launcher of jEdit4.1 can be reused.
Here’s the procedure, step by step:
1. First be sure to have jEdit4.1 for Windows installed in the exact location intended for jEdit4.3 (if using other releases, better be sure to uninstall them first);
2. Copy to a backup directory apart the files with extensions exe, dll and .reg.txt, which where placed by the jEdit4.1 installer in the main jEdit directory;
3. Uninstall jEdit4.1;
4. Install jEdit4.3 to the previous location;
5. Copy the files from the backup directory (exe dll ...) to the main jEdit directory - notice that those files don’t have names clashing with the names used for the jEdit4.3 installation;
6. Test running the exe launcher from the command-line, and if necessary answer appropriately their initial questions by browsing to the java bin directory and so on.
I find it very useful to script in ant the editing of very large file sets. Alternatively jEdit can preserve specific work file sets.
Cheers,
Antonio
Paste_Around (Paste_Around.bsh v0.2 by Gael Ecorchard (galou))
Submitted by
galou on
Tuesday, 28 August, 2007 - 12:57
Paste the content of register 'a' before the selection (prefix)
and the content of register 'e' after the selection (suffix)
Usage:
- select the prefix part and paste it into register 'a' (C-r C-c a)
- select the suffix part and paste it into register 'e' (C-r C-c e)
- select something and use the macro. Works also with empty selection. Does
not work yet with multiple selections and rectangular ones (error message)
Best used with a shortcut like CS-v
New view and accented vowels
Submitted by
danlugli on
Wednesday, 29 August, 2007 - 13:50
Hi, I am working with jedit 4.3pre10 using java 1.5.0_12.
1) I launch jedit and open a cpp source (the command 'file' returns 'ASCII C program text').
2) I ask for a new view of the same file.
3) In the first view, I modify a comment adding a word with an accented vowel, eg 'però' (Italian keyboard).
4) The result: I get 'per' in the right place, and the accented vowel 'ò' in a random place (sometimes at the beginning of the same line, sometimes some lines down).
Ever seen that? Any solution?
Macro to insert comment token and indent (XEnter.bsh) (XEnter.bsh v0.1 by Gael Ecorchard (galou))
Submitted by
galou on
Thursday, 30 August, 2007 - 12:51
insert new line, then behaves
either as normal insert enter and indent, if the line is a normal code line
or insert the line comment token and indent the line if the current line
is a comment
Usage:
- use the macro at the end of a comment line
Best used with a shortcut like S-Enter
OS X and the Alt key
Submitted by
denserMan on
Friday, 31 August, 2007 - 05:49
In the Find dialog I enter my search terms and then press Alt + L to search all buffers and while the appropriate radio button becomes selected, a symbol appears at the end of my search terms, thereby making me have to delete it before performing the search.
I tried this with both 4.3pre10 and 4.2 final.
What is the problem?
TIA
Plugin Error
Submitted by
sumitnavare on
Friday, 31 August, 2007 - 09:02
Hi,
I am getting this error while trying to install any plugin -
"Error while downloading the plugin, please try another mirror.
Connection refused."
I have tried different mirrors but all give the same error.
Any solutions? Or is there any way to manually install the plugin?
Sumit
execute script file ( *.pl) on Win XP service pack 2
after writting a script with Jedit, i saved it with file.pl . But when i execute it , it appear message " *.pl is not valid WIN32 application". Can u you me how to execute this files. and what command can be used to execute file.pl
Freemarker Square Braces Support
Submitted by
rjuyal on
Monday, 3 September, 2007 - 07:24
For Freemarker there must be square braces support too, instead or with, support of < and > braces.
if this support is already there then please tell me.
Thanks
Rakesh Juyal
r.juyal@gmail.com