CTRL+E(用于编辑器列表)
CTRL+F6(用于通过列表切换到下一个编辑器) 您可以为“下一个编辑器”键分配另一个快捷方式。
是两个官方快捷方式,但它们都涉及正在显示的列表。
CTRL+Page Up / CTRL+Page Down 可以在不显示列表的情况下循环浏览编辑器。
最后一组快捷键的有趣之处在于:它们没有列在要定义的 Eclipse Keys 快捷键中。它们可以从多页编辑器继承,使它们成为特定于操作系统的快捷方式。
关于 Mac OS (OSX) 上的快捷方式,Matt Ball 在 2011 年 9 月抱怨无法重新映射 CTRL+Page Up/CTRL +向下翻页:
它让我发疯,无法像在 OS X 中几乎所有其他选项卡式程序(⌘-Left 和⌘-Right)中那样翻阅打开的选项卡。
那么,在 2012 年 3 月,Arthur 回复:
, 我刚刚下载了最新版本的 Eclipse (3.7+)。在编辑器中,我已经能够将“上一个/下一个选项卡”绑定到(⌘-左和⌘-右),我敢肯定我以前做不到。所以我猜他们听到了你的声音。它可以按您的预期工作,标签从左到右,反之亦然,而不是基于历史记录或类似的废话。
Matt Ball 确认:
哇哦,选择“Editing Java Source”确实有效!现在,不幸的是,这意味着如果我导航到非 Java 文件(JSP、XML、JS 等),我就是 SOL。对此的解决方法是为这对“复制命令”,然后选择我想要的所有“时间”。到目前为止,它至少可以很好地处理 Java 和 JSP 文件。这是一个主要的 PITA 设置,但这只是一次性的事情。
他的 exported preferences are available here 供您尝试。
导入后,您应该会看到所有相关类型的文档:
https://i.stack.imgur.com/4WQwQ.png
如果您转到首选项(例如窗口→首选项)并查看常规→键
然后搜索“下一个选项卡”和“上一个选项卡”,您可以重新映射它们。
https://i.stack.imgur.com/h6c87.png
在操作系统中像 Windows 一样切换(转到最后一个焦点的窗口)
Eclipse 中的 CTRL-F6 与 ALT-TAB(在 Windows 上)一样,会显示可用选项卡/窗口的列表(如果按住 CTRL / ALT 键)并突出显示当您松开此键时将跳转到的选项卡/窗口.您不必选择窗口。如果要一次遍历多个选项卡,请按住 CTRL 按钮并点击 TAB 按钮。这与 Windows 上的 ALT-TAB 行为相同。
从这个意义上说,eclipse 中的 CTRL-SHIFT-F6 是 ALT-SHIFT-TAB 的模拟。就个人而言,我将 Eclipse 中的这些绑定更改为类似于 Visual Studio。即 CTRL-TAB 和 CTRL-SHIFT-TAB 我这样做:
窗口>首选项>常规>键
然后设置“下一个编辑器”=Ctrl+Tab 和“上一个编辑器”=Ctrl+Shift+Tab。在设置新绑定之前不要忘记单击“取消绑定命令”。
像浏览器一样切换(转到当前选项卡右侧的选项卡)
这是 CTRL-PageDown 向右走, CTRL-PageUp 向左走。令人沮丧的是,当您到达选项卡列表的末尾(比如最右边的选项卡)然后尝试再次向右移动时,Eclipse 不会像大多数浏览器那样循环到第一个选项卡(最左边)。
CTRL-TAB
。
您可以使用 ALT+Left 转到上一个选项卡,或使用 ALT+Right 前进。但是,此方法使用类似于历史记录的选项卡切换,因此它将转到您打开的上一个选项卡,如果您“返回”一次或多次,则前进。有点奇怪,我知道,但它有效。您始终可以通过单击每个选项卡一次来“重置”历史记录。
右侧移动:Ctrl + page Down
左侧移动:CTRL + page Up
额外的
获取打开的标签列表:Ctrl + F6
Eclipse 其他快捷方式
链接:http://www.shortcutworld.com/en/win/Eclipse.html
pdf:http://eclipse-tools.sourceforge.net/Keyboard_shortcuts_%283.0%29.pdf
CTRL + F6 很好用。如果要切换到下一个/上一个选项卡,则需要执行 CTRL+Page Down / CTRL+Page Up。
XML
或 properties
文件时),它会在不同视图之间切换,并且您无法再在选项卡之间切换 :(
默认为 Ctrl + F6。您可以通过转到窗口首选项来更改它。我通常将其更改为 Ctrl + Tab,就像我们在浏览器和其他东西中切换选项卡时使用的一样。
自定义 KeyBinding 序列示例:CTRL + TAB 使用 Eclipse RCP 在可见模块或编辑器之间切换。
您第二次按 CTRL + TAB 打开另一个编辑器并使用 RCP Eclipse 关闭以前的编辑器。
package rcp_demo.Toolbar;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.handlers.HandlerUtil;
import rcp_demo.Editor.EmployeeEditor;
import rcp_demo.Editor.EmployeeEditorInput;
import rcp_demo.Editor.ProductEditor;
import rcp_demo.Editor.ProductEditorInput;
import rcp_demo.Editor.UserEditor;
import rcp_demo.Editor.UserEditorInput;
public class Forward_Editor extends AbstractHandler{
static String Editor_name; // Active Editor name store in Temporary
static int cnt; // close editor count this variable
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindow(event);
IWorkbenchPage page = window.getActivePage();
UserEditorInput std_input = new UserEditorInput();
EmployeeEditorInput emp_input=new EmployeeEditorInput();
ProductEditorInput product_input=new ProductEditorInput();
IEditorReference[] editors = page.getEditorReferences();
//Blank Editor Window to execute..
if(editors.length==0)
{
//First time close editor can open Student_Editor
if(cnt==1 && Editor_name.equals("Student_Editor"))
{
try {
page.openEditor(emp_input, EmployeeEditor.Id);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("EMP>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First time close editor can open Employee_Editor
else if(cnt==1 && Editor_name.equals("Employee_Editor"))
{
try {
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("PRO>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {e.printStackTrace();
}
}
//First time close editor can open Product_Editor
else if(cnt==1 && Editor_name.equals("Product_Editor"))
{
try {
page.openEditor(std_input, UserEditor.ID);
System.out.println("student Editor open");
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("Close::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First Time call // empty editors
else{
try {
page.openEditor(std_input, UserEditor.ID);
System.out.println("student Editor open");
Editor_name=page.getActiveEditor().getTitle();
} catch (PartInitException e) {
e.printStackTrace();
}
}
}//End if condition
//AvtiveEditor(Student_Editor) close to open Employee Editor
else if(page.getActiveEditor().getTitle().equals("Student_Editor"))
{
try {
//page.closeAllEditors(true);
page.closeEditor(page.getActiveEditor(), true);
page.openEditor(emp_input, EmployeeEditor.Id);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("EMP>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//AvtiveEditor(Employee_Editor) close to open Product Editor
else if(page.getActiveEditor().getTitle().equals("Employee_Editor"))
{
try {
page.closeAllEditors(true);
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("PRO>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//AvtiveEditor(Product_Editor) close to open Student Editor
else if(page.getActiveEditor().getTitle().equals("Product_Editor"))
{
try {
page.closeAllEditors(true);
page.openEditor(std_input, UserEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("stud>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//by default open Student Editor
else
{
try {
page.closeAllEditors(true);
page.openEditor(std_input, UserEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("stud_else>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
return null;
}
}
>Custom KeyBinding sequence example : <kbd> SHIFT + TAB </kbd> to switch between visilble Modules or Editors **Backword** direction using Eclipse RCP.
package rcp_demo.Toolbar;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.handlers.HandlerUtil;
import rcp_demo.Editor.EmployeeEditor;
import rcp_demo.Editor.EmployeeEditorInput;
import rcp_demo.Editor.ProductEditor;
import rcp_demo.Editor.ProductEditorInput;
import rcp_demo.Editor.UserEditor;
import rcp_demo.Editor.UserEditorInput;
public class Backword_Editor extends AbstractHandler{
static String Editor_name; // Active Editor name store in Temporary
static int cnt;
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindow(event);
IWorkbenchPage page = window.getActivePage();
//Three object create in EditorInput
UserEditorInput std_input = new UserEditorInput();
EmployeeEditorInput emp_input=new EmployeeEditorInput();
ProductEditorInput product_input=new ProductEditorInput();
IEditorReference[] editors = page.getEditorReferences();
System.out.println("Length : "+editors.length);
if(editors.length==0)
{
//First time close editor can open Student_Editor
if(cnt==1 && Editor_name.equals("Product_Editor"))
{
try {
page.openEditor(emp_input, EmployeeEditor.Id);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("EMP>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First time close editor can open Employee_Editor
else if(cnt==1 && Editor_name.equals("Employee_Editor"))
{
try {
page.openEditor(std_input, UserEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("Student>>Len:: "+editors.length+"..student::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First time close editor can open Product_Editor
else if(cnt==1 && Editor_name.equals("Student_Editor"))
{
try {
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("PRO>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First Time or empty editors to check this condition
else{
try {
page.openEditor(product_input,ProductEditor.ID);
System.out.println("product Editor open");
} catch (PartInitException e) {
e.printStackTrace();
}
}
}
//AvtiveEditor(Product_Editor) close to open Employee Editor
else if(page.getActiveEditor().getTitle().equals("Product_Editor"))
{
System.out.println("Product:: "+page.getActiveEditor().getTitle());
try {
page.closeAllEditors(true);
page.openEditor(emp_input, EmployeeEditor.Id);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("Employee Editor open");
} catch (PartInitException e) {
e.printStackTrace();
}
}
//AvtiveEditor(Employee_Editor) close to open Student Editor
else if(page.getActiveEditor().getTitle().equals("Employee_Editor"))
{
System.out.println("Emp:: "+page.getActiveEditor().getTitle());
try {
page.closeAllEditors(true);
page.openEditor(std_input, UserEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("student Editor open");
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//AvtiveEditor(Student_Editor) close to open Product Editor
else if(page.getActiveEditor().getTitle().equals("Student_Editor"))
{
System.out.println("Product:: "+page.getActiveEditor().getTitle());
try {
page.closeAllEditors(true);
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("product Editor open");
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//by default open Student Editor
else
{
try {
page.closeAllEditors(true);
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("product Editor open");
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return null;
}
}
自定义 KeyBinding 序列示例:SHIFT + TAB 使用 Eclipse RCP 在可见模块或编辑器 Backword 方向之间切换。
package rcp_demo.Toolbar;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.handlers.HandlerUtil;
import rcp_demo.Editor.EmployeeEditor;
import rcp_demo.Editor.EmployeeEditorInput;
import rcp_demo.Editor.ProductEditor;
import rcp_demo.Editor.ProductEditorInput;
import rcp_demo.Editor.UserEditor;
import rcp_demo.Editor.UserEditorInput;
public class Backword_Editor extends AbstractHandler{
static String Editor_name; // Active Editor name store in Temporary
static int cnt;
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindow(event);
IWorkbenchPage page = window.getActivePage();
//Three object create in EditorInput
UserEditorInput std_input = new UserEditorInput();
EmployeeEditorInput emp_input=new EmployeeEditorInput();
ProductEditorInput product_input=new ProductEditorInput();
IEditorReference[] editors = page.getEditorReferences();
System.out.println("Length : "+editors.length);
if(editors.length==0)
{
//First time close editor can open Student_Editor
if(cnt==1 && Editor_name.equals("Product_Editor"))
{
try {
page.openEditor(emp_input, EmployeeEditor.Id);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("EMP>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First time close editor can open Employee_Editor
else if(cnt==1 && Editor_name.equals("Employee_Editor"))
{
try {
page.openEditor(std_input, UserEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("Student>>Len:: "+editors.length+"..student::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First time close editor can open Product_Editor
else if(cnt==1 && Editor_name.equals("Student_Editor"))
{
try {
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("PRO>>Len:: "+editors.length+"..EDi::"+Editor_name);
} catch (PartInitException e) {
e.printStackTrace();
}
}
//First Time or empty editors to check this condition
else{
try {
page.openEditor(product_input,ProductEditor.ID);
System.out.println("product Editor open");
} catch (PartInitException e) {
e.printStackTrace();
}
}
}
//AvtiveEditor(Product_Editor) close to open Employee Editor
else if(page.getActiveEditor().getTitle().equals("Product_Editor"))
{
System.out.println("Product:: "+page.getActiveEditor().getTitle());
try {
page.closeAllEditors(true);
page.openEditor(emp_input, EmployeeEditor.Id);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("Employee Editor open");
} catch (PartInitException e) {
e.printStackTrace();
}
}
//AvtiveEditor(Employee_Editor) close to open Student Editor
else if(page.getActiveEditor().getTitle().equals("Employee_Editor"))
{
System.out.println("Emp:: "+page.getActiveEditor().getTitle());
try {
page.closeAllEditors(true);
page.openEditor(std_input, UserEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("student Editor open");
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//AvtiveEditor(Student_Editor) close to open Product Editor
else if(page.getActiveEditor().getTitle().equals("Student_Editor"))
{
System.out.println("Product:: "+page.getActiveEditor().getTitle());
try {
page.closeAllEditors(true);
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("product Editor open");
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//by default open Student Editor
else
{
try {
page.closeAllEditors(true);
page.openEditor(product_input,ProductEditor.ID);
cnt=1;
Editor_name=page.getActiveEditor().getTitle();
System.out.println("product Editor open");
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return null;
}
}
键序列
M1 表示 CTRL
M2 表示 SHIFT
插件.xml
<extension point="org.eclipse.ui.commands">
<command
defaultHandler="rcp_demo.Toolbar.Forward_Editor"
id="RCP_Demo.Toolbar.Forward_editor_open_cmd"
name="Forward_Editor">
</command>
<command
defaultHandler="rcp_demo.Toolbar.Backword_Editor"
id="RCP_Demo.Toolbar.backwards_editor_open_cmd"
name="Backword_Editor">
</command>
</extension>
<extension point="org.eclipse.ui.bindings">
<key
commandId="RCP_Demo.Toolbar.Forward_editor_open_cmd"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+TAB">
</key>
<key
commandId="RCP_Demo.Toolbar.backwards_editor_open_cmd"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M2+TAB">
</key>
</extension>
行 AutoHotKey 脚本(在 Windows 上,无论如何):
#IfWinActive ahk_class SWT_Window0
^+Tab::^PgUp
^Tab::^PgDn
把它放在你的启动文件夹中(保存为 *.ahk,必须安装 AutoHotKey),Eclipse 选项卡现在将像 Chrome 或 Firefox 一样工作。
返回上一个选项卡的快捷键
Alt + LeftArrow 返回。
解决了!!
将方案更改为 Microsoft Visual Studio
窗口>首选项>常规>键
查找方案下拉菜单
我的日食版本:
面向 Web 开发人员的 Eclipse Java EE IDE。
版本:Juno Service Release 1 内部版本 ID:20120920-0800
没有人会读到我的答案,但无论如何...如果您使用的是 Mac OS X,您会喜欢在 Eclipse 中使用多点触控手势进行历史导航:http://sourceforge.net/apps/mediawiki/eclipsemultitch/
在 Windows 上,如果您有 5 键鼠标,则可以使用前进和后退来代替 ALT+Left 和 ALT+Right。
您可以在 Preferences -> General -> Keys 中设置热键(或者只需在 Preferences 对话框顶部的过滤器字段中输入“keys”。
选择“键”部分后,找到“下一个选项卡”和“上一个选项卡”并通过单击“绑定”字段然后键入您的热键为它们分配您自己的热键。
点击应用或确定以完成该过程。
如果您只想在当前和以前的选项卡选择之间切换,使用 CTRL + F6 将来回切换。要导航到历史记录中更早的选项卡,您需要在编辑器窗口打开时使用向上/向下键。这适用于 Helios (Eclipse 3.6);不确定这是否适用于旧版本的 Eclipse。
我引用 VonC 的回应,添加一些内容。
Ctrl+PgUp(PgDn) 在当前堆栈中的选项卡之间切换(编辑器和视图)
Ctrl+E 在当前堆栈中的选项卡之间切换,使用过滤列表
Ctrl+F6 切换编辑器,不管哪个栈
Ctrl+F7 切换视图,不管哪个栈
此外,还有 Bug 206299 开放请求使用 Ctrl+Tab 而不是 Ctrl+PgUp 切换标签(PgDn)。
由于这会破坏可访问性,因此用户应为此设置首选项。在 Oomph 安装期间,欢迎问卷中可能应该有一个问题。
如果不满意,您可以从 Window > Preferences > General > Keys 为自己分配 Key Binding。
由于某种原因,我的 Eclipse 设置已损坏,因此我不得不手动编辑文件 /.plugins/org.eclipse.e4.workbench/workbench.xmi
我之前一定已经将 Ctrl+Tab 设置为类似浏览器的选项卡切换,甚至重置 Eclipse 首选项中的所有键绑定都不会摆脱快捷方式(它们不是显示在任何地方)。我打开了上述文件并删除了标有 <tags>type:user</tags>
的 <bindings>
元素,这些元素与无效的快捷方式相关。
从右到左: ctrl+ shift + 9 或 ctrl + shift + Page Up 或 ctrl + Page Up
从左到右: ctrl + shift + 3 或 ctrl + shift + Page Down 或 ctrl + Page Down
按住 CTRL 并按 F6 直到找到所需的编辑器,然后释放。 UI 不像窗口选择那么漂亮,但功能是一样的。
在 SLES12 机器上,默认情况下您可以使用 Ctrl+PageUp 和 Ctrl+PageDown 在选项卡之间导航。您始终可以通过浏览“常规”类别下的“键”部分从“首选项”窗口更改这些键。上面的 Victor 和 VonC 很好地解释了这个过程。
如何在 Eclipse 中打开的窗口之间切换
CTRL+F7 在这里工作 - Windows 上的 Eclipse Photon。
出于某种原因,仅添加新绑定似乎不起作用(eclipse 2021-06)。
反而:
使用复制命令克隆下一个选项卡和上一个选项卡
将“时间”更改为在 Windows 中
添加您的新绑定
申请并关闭
https://i.stack.imgur.com/OCfia.png
@Gillfish 在对另一个答案的评论中提到了这一点,但我认为最好明确地提出解决方案。
CTRL+Page Up
/CTRL+Page Down
,是吗?无法像在 OS X 中的几乎所有其他选项卡式程序(⌘-Left
和⌘-Right
)中那样翻阅打开的选项卡,这让我发疯了。