|
From: Shlomy R. <sre...@gm...> - 2012-05-03 07:48:16
|
Hi, This feature is not implemented in jEdit nor in any of the plugins, it's a Java/Swing feature. You can control the expansion by typing Java statements in the Console plugin, using the BeanShell console: To maximize the current pane, use: BeanShell> editPane.getParent().setDividerLocation(0.0) (or maybe 1.0, depending on where the pane is located) To restore the previous layout, use: BeanShell> editPane.getParent().resetToPreferredSizes() If you want to have keyboard shortcuts, you can record each of the statements in a macro using the macro recorder, and then bind shortcuts to the macros. I hope this helps. Shlomy On Thu, May 3, 2012 at 8:17 AM, Steven D. Arnold < st...@ar...> wrote: > Hi, I am using jEdit 5.0 pre1. In this version, when you create a split, > between the two splits, on the left, there is an up arrow and a down arrow > right next to each other. If you click, say, the up arrow, the bottom > split expands to consume the entire vertical space in the text area of the > window; likewise for the down arrow. This actually works for more than > just two splits; you can have N splits on a given window and use this > feature to expand the area of a split. When done, you click the other > arrow (down if you had previously clicked up, for example) to restore the > previous state. > > To be honest, I am not sure if this is a native feature of jEdit, or due > to one of the plugins I have installed. Nonetheless, I love this feature. > Regardless of whether it is native or due to a plugin, my question is > this: Is there a command for this to which I can apply a shortcut? Like an > "Expand Split Up" and "Expand Split Down" command or something like that > that allows me to get the benefit of clicking those arrows without having > to use the mouse? > > Thanks in advance! > steven > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > -- > ----------------------------------------------- > jEdit Users' List > jEd...@li... > https://lists.sourceforge.net/lists/listinfo/jedit-users > |