eclipse-pdt

Is there a color picker plugin for Eclipse?

寵の児 提交于 2019-11-27 13:53:58
问题 I'm using Eclipse Galileo PDT for my work. I also use it to edit my CSS files. Is there a plugin that lets me pick a color (from a palette or even anywhere from the screen) and wich returns the HEX value of that color into my CSS file? 回答1: Aptana Studio has really great support for CSS. CSS color picking is easy, you can grab a color from anywhere on the screen. You can install Aptana as a plug into an existing Eclipse installation. http://docs.aptana.com/docs/index.php/Plugging_Aptana_into

Ignoring Eclipse project files in SVN project

随声附和 提交于 2019-11-27 10:41:47
问题 I have a PHP project set up in Eclipse with SVN support. Now, Eclipse adds its project files .buildpath and .project to the project and Subclipse wants to add it to the repository. Now I could just use svn:ignore to let SVN ignore the files, but that's not an option for various reasons. So, is there a way to make Eclipse and Subclipse ignore the files (which it should anyway)? 回答1: Preferences > Team > Ignored Resources 回答2: Can you use global-ignores ? If yes, customize it in your config

How to share Eclipse configuration over different workspaces

喜欢而已 提交于 2019-11-27 10:03:49
I'm using Eclipse (PDT) as primary IDE on different machines. (like at home, laptop, in office, etc.). How could I share the Eclipse and project configuration pragmatically between multiple computers? Should I version control them, or is there any easier way to do this? How do you ensure to use the same good and old even so up to date config all of your computers? You can actually set many project specific settings that can be checked into source control. For small projects, this works really well. For larger projects, we decided to have a single file that we used for all of our projects and

How can I get word wrap to work in Eclipse PDT for PHP files?

霸气de小男生 提交于 2019-11-27 09:57:09
问题 Programming PHP in Eclipse PDT is predominately a joy: code completion, templates, method jumping, etc. However, one thing that drives me crazy is that I can't get my lines in PHP files to word wrap so on long lines I'm typing out indefinitely to the right. I click on Windows|Preferences and type in "wrap" and get: - Java | Code Style | Formatter - Java | Editor | Typing - Web and XML | CSS Files | Source I've tried changing the "wrap automatically" that I found there and the "Line width" to

How to exclude a Javascript file from Javascript Validation in Eclipse

匆匆过客 提交于 2019-11-27 05:01:22
问题 I have the javascript validation working good for my own code. I want to keep the validation. But when it comes to open source library, like jquery for example, the validation creates warnings. I don't want warnings over a downloaded library. But I want to keep warnings for my code. I know you can exclude files from validation in the " Preferences > Validation " window, but the javascript validation is not there ! I've looked each validator, the javascript validator is not there. So how can I

Moving project to another folder in Eclipse

╄→尐↘猪︶ㄣ 提交于 2019-11-27 02:54:52
I generally have my working projects sitting on folders on my Desktop. When they are completed I just move them to a c:\dev\ . The thing is I'm doing it in a rather archaic way. 1. move project files 2. delete project on Eclipse 3. create new project on Eclipse on the new location How to you guys move projects around? If I could alter the: File -> Properties -> Resource -> Location path it would be dead simple! Example move: c:\user\desktop\project_123 c:\dev\project_123 Right click on the Eclipse project in the Package Explorer, select Refactor, then select Move... In the dialog that comes up

Starting Eclipse w/ Specific Workspace

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-27 00:00:58
问题 Is there a way to start an instance of eclipse, passing it some sort of parameter telling it to use a specific workspace? The problem I'm trying to solve is that I have a workspace for work projects and one for personal projects. I'd like to be able to tie these to workspaces to separate shortcuts that I could launch independently. 回答1: From http://help.eclipse.org/help21/topic/org.eclipse.platform.doc.user/tasks/running_eclipse.htm: Use the following command-line argument: -data your

How do I add FTP support to Eclipse?

余生颓废 提交于 2019-11-26 21:25:16
I'm using Eclipse PHP Development Tools. What would be the easiest way to access a file or maybe create a remote project trough FTP and maybe SSH and SFTP?. Eclipse natively supports FTP and SSH. Aptana is not necessary. Native FTP and SSH support in Eclipse is in the "Remote System Explorer End-User Runtime" Plugin. Install it through Eclipse itself. These instructions may vary slightly with your version of Eclipse: Go to 'Help' -> 'Install New Software' (in older Eclipses, this is called something a bit different) In the 'Work with:' drop-down, select your version's plugin release site.

Moving project to another folder in Eclipse

筅森魡賤 提交于 2019-11-26 17:29:57
问题 I generally have my working projects sitting on folders on my Desktop. When they are completed I just move them to a c:\dev\ . The thing is I'm doing it in a rather archaic way. 1. move project files 2. delete project on Eclipse 3. create new project on Eclipse on the new location How to you guys move projects around? If I could alter the: File -> Properties -> Resource -> Location path it would be dead simple! Example move: c:\user\desktop\project_123 c:\dev\project_123 回答1: Right click on

How to share Eclipse configuration over different workspaces

╄→гoц情女王★ 提交于 2019-11-26 14:59:38
问题 I'm using Eclipse (PDT) as primary IDE on different machines. (like at home, laptop, in office, etc.). How could I share the Eclipse and project configuration pragmatically between multiple computers? Should I version control them, or is there any easier way to do this? How do you ensure to use the same good and old even so up to date config all of your computers? 回答1: You can actually set many project specific settings that can be checked into source control. For small projects, this works