|
From: Slava P. <sl...@je...> - 2003-05-14 20:34:15
|
On Wed, May 14, 2003 at 01:29:07PM -0700, henryneu wrote:
> Let me try to make the question more clear:
>
> Is there a way to set JEdit so File-->Open _always_ opens a new window?
Write a macro:
paths = GUIUtilities.showVFSFileDialog(view,null,VFSBrowser.OPEN_DIALOG,true);
for(i = 0; i < paths.length; i++)
{
jEdit.newView(view,jEdit.openFile(null,paths[i]));
}
You can then bind this to C+o.
--
Slava Pestov
|