General
-
Big file edit
It is always a pity that vi on a linux machine can open and manipulate big files (1.3 GB or bigger) without any problems. This should one of the main goals of a text editor to load big files as well and work with them. Please can you add a mechanism to just load the visible part of the file and not the hole file ? Because the hole file will never fit into the heap memory and therefore the editor is useless for big files
33 votes -
28 votes
-
Print 'Selection'
Add an option in the print dialog to print a selection of lines from the current buffer. If a section is already highlighted, that option could be enabled automatically.
26 votes -
Add JDiff integration to Git Plugin.
It would be nice if someone would integrate the JDiff plugin with the git plugin so you could easily jump through differences between revisions in a way similar to how git-cola or qgit does.
19 votes -
Make completion dialogs use Line up/down shortcuts
It would be really useful to be able to use my Line up/Line down shortcuts to choose a selection in the completion popups. I use a vi-esque keybinding scheme, so taking my fingers off the home row when typing feels awkward.
Actually, to extend the request, it would be nice to be able to use text area navigation shortcuts (prev/next char, line up/down, select, etc.) in QuickNotepad and the Find dialog.
Looking at CompletionPopup (I don't know how extensively it's used), it
seems possible that instead of switching on keyCodes:switch(e.getKeyCode())
{
case KeyEvent.VK_UP:
moveRelative(-1);
e.consume();
break;
case KeyEvent.VK_DOWN:
moveRelative(1); …12 votes -
Fix JavaScript indentation problems
2 tabs instead of 1 when defining a function inside a function:
Example
var after = _.after(1, function() {
------- There will be two tabs here instead of one
})11 votes -
Underlined text style in Syntax Highlighting
The token types in Style Editor can be set as Bold and Italics, but I am missing the Underline style.
Regards, John
10 votes -
Bring back Alt+Key shortcuts in jEdit 5.1
I've just tried jEdit 5.1pre1 daily-built and my Alt shortcut keys don't work any more. There's no setings to change it back to the old style.
I suggest having a preference to disable the 'Alt menu keys' (those underlines keys) so that I can use my own Alt+keys as shorcuts.
I'm reinstalling 5.08 votes -
Work around on Java memory limation when handling big files
Work around on Java memory limation when handling big files
7 votes -
line continuation handling for better mode description
for tcl-like languages jedit is seriously missing a line continuation character.
E.g. lines like
lsort -integer -index 1 \
{{First 24} {Second 18}}
set a "[lsearch -all -inline \
-not $list]"
cannot be captured correctly from highlighting point of view
So I would suggest to add a rule property tag LineContinuationChar. if this character appears as the last none-white space char on a line, the following line is appended to the current line. And, all lines joined together with a LineContinuationChar are infact handled as a single line in all mode tags like e.g. EOL_SPAN...7 votes -
Keep it up!
jEdit rocks and is always oot 1st packages I install on any new distro.
@Codename: Steeve Knight7 votes -
Plugin updater dialog: add some indicator/text to know that there are no updates
When no updates have been found, the dialog remains the same. (Jedit 4.5pre1)
7 votes -
Print Preview
Add a Print Preview capability.
7 votes -
Plugins should be able to provide screenshots
Plugins manager should be modified to show screenshots that could be provided by plugins
6 votes -
Fix FTP Error
Hi
I've got an Error with de FTP Plugin (only FTP - SFTP works).
Errormessage:
ftp://yy@xxxxxx:21/~/:
Cannot list directory: java.net.SocketException: Connection resetjava.net.SocketException: Connection reset
at java.net.SocketInputStream.read(Unknown Source)
at java.net.SocketInputStream.read(Unknown Source)
at sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
at sun.nio.cs.StreamDecoder.implRead(Unknown Source)
at sun.nio.cs.StreamDecoder.read(Unknown Source)
at java.io.InputStreamReader.read(Unknown Source)
at java.io.BufferedReader.fill(Unknown Source)
at java.io.BufferedReader.readLine(Unknown Source)
at java.io.BufferedReader.readLine(Unknown Source)
at com.fooware.net.FtpResponse.setMessage(FtpResponse.java:194)
at com.fooware.net.FtpResponse.<init>(FtpResponse.java:35)
at com.fooware.net.FtpClient.setResponse(FtpClient.java:962)
at com.fooware.net.FtpClient.sendCommand(FtpClient.java:73)
at com.fooware.net.FtpClient.passive(FtpClient.java:285)
at ftp.FtpConnection.setupSocket(FtpConnection.java:392)
at ftp.FtpConnection._listDirectory(FtpConnection.java:405)
at ftp.FtpConnection.listDirectory(FtpConnection.java:126)
at ftp.FtpVFS._listFiles(FtpVFS.java:226)
at org.gjt.sp.jedit.browser.ListDirectoryBrowserTask._run(ListDirectoryBrowserTask.java:74)
at org.gjt.sp.util.Task.run(Task.java:63)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)Is there any BugFix oder another Plugin to Connect to FTP Servers?
THX
6 votes -
Project Viewer: add file management functionality
Enable moving files in the context of the project nodes (not on the disk) - drag&drop or cut&paste or by way of a menu command.
6 votes -
6 votes
-
FTP master password + faster FTP on Windows
Please provide a safe way to store FTP passwords in jEdit! (See the trojan virus that attacked Total Commander earlier)
A masterpassword that encrypt passwords is a good idea. (Total Commander choosed that.)FTP on Windows very-very-very slow especially saving files. I inspected it with Wireshark. Jedit saves files to FTP one byte by one byte. Other FTP programs saves files in a ~1450 Byte blocks. 10-50 times faster. Sometimes I need to use FTP mapping programs, like Webdrive or Netdrive.
Another good ide if we can edit while saving. Sometimes I found mistakes while saving the file but can't…
6 votes -
Wrap lines without whitespace
Wrapping long lines that don't contain whitespace characters is very useful and i'm surprised it's not supported. At least users should be able to define the characters which are used to break the wrapped lines
5 votes -
Text search in the current help page
jEdit help already have a search engine, I know,but what I mean, is searching in the current help page. I miss a way to search for a word in the current page, just like you can do with any HTML viewer.
4 votes
- Don't see your idea?