English 中文(简体)
打开 Eclipse 文件探索器的键盘快捷键是什么?
原标题:What is the keyboard shortcut for opening the file explorer in Eclipse?

我一直在搜索, 我找不到打开 Eclipse 文件探索者( 我主要使用 PHP 和 Java Eclipse ) 的键盘捷径。 我喜欢不时关闭文件探索者, 以便给自己更多空间查看我的代码, 然后在需要浏览到不同文件夹/ 文件时重新打开它 。

这将非常有益,并将节省大量手势不便的手动!

最佳回答

如果我理解你说得对:

ALT SHIFT /kbd> ( OPtion SHIFT - 用于mac),然后按 E 键打开 PHP 探险器

CTRL SHIFT L L/kbd>( COMMAND SHIFT L L/kbd>-为mac)获取可用的热钥匙列表。

问题回答

要从日蚀中浏览您系统中 < 坚固 > 的文件 < /坚固 >, 文件实际上是 < em> 存储 :

Alt + Shift + W + X (在 Windows OS 中)

您可以自己设置快捷键。 转到 window/ general/ previews/ keys , 搜索与您的探索者视图相关的命令, 并指定快捷键 。

尝试在 Windows 中 < kbd> ALT F . . 。 它会促进打开文件的扩展。 这样您就可以浏览并打开您想要的文件 。

要打开任何视图( 以及日蚀中的其它事物范围, 例如偏好页面), 您可以使用快速访问对话框 。 键入 < code> Ctrl+ 3 < /code > + 3 < /code >, 然后键入您想要打开的视图的名称 。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...