ide

Netbeans scanning of project too slow

元气小坏坏 提交于 2019-12-18 21:22:29
问题 I use netbeans 7.3.1, i have found here one way how to make netbeans faster: How to improve Netbeans performance?, but my problem is that my netbeans is to slow by project scanning, is projectcanning important for the software netbeans ? My projects are in network and not on my pc. I have also found this plugin, but there is no more available: http://wiki.netbeans.org/ScanOnDemand My CPU is Intel quad 2.40GHz. 回答1: Try to disable auto-scanning of sources. Make sure that you only modify the

In Eclipse, is it possible to find all methods in project that take a certain parameter type?

旧巷老猫 提交于 2019-12-18 19:32:51
问题 So that's basically my question. I'm converting all methods ArrayLists to HashMaps in parameterized methods, but I don't want to convert all ArrayLists to HashMaps since there are a few that are used locally. This is more of a curiosity than anything, but it would be useful. So, in Eclipse, is it possible to find all methods in project that take a certain parameter type? 回答1: Press Ctrl + H or from menu bar Search - Search ... , then choose Java Search : Then click Limit To - Match locations

How can I set Chrome as default external browser in Eclipse for Mac?

◇◆丶佛笑我妖孽 提交于 2019-12-18 19:07:31
问题 I think that question is self-explained :-) When I browse to Application eclipse send me an error. 回答1: rubdottocom almost got it. The problem is, that the path contains spaces. If you write a new shell script with the following content: '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' $1 Eclipse can launch a new Chrome instance with it. Sadly, this way it is not possible to open a new tab in an already running instance, as the script exits with the following error message:

Text editor vertical lines on statements

十年热恋 提交于 2019-12-18 18:49:51
问题 In other text editors, such as Notepad++, if statements among other things had a vertical line connecting the if to the else , and the else to the end , which makes visual parsing much easier. Example (Vertical lines highlighted by black boxes): I was wondering if there was a way to do this in Visual Studio. 回答1: Have a look at the indent guides extension, this can do what I think you want. 回答2: This feature is now available as part of Visual Studio Productivity Power Tools. This is a free

Stepwise debugging of selected Python code

末鹿安然 提交于 2019-12-18 16:59:39
问题 The essence: Using Spyder, it's possible to run parts of code by highlighting it and clicking F9 . This works with For Loops as well, but the problem (for me at least) is that it seems impossible to run the selected part step by step . I find this a bit strange since it's possible to run For Loops step by step under other cirmustances (and inspect the state of the variables at each step). Allow me to explain: The snippet below is an operation on two variables names = ['A', 'B', 'C'] and

Can I change the size of the Xcode IDE fonts?

被刻印的时光 ゝ 提交于 2019-12-18 16:38:48
问题 I'd like to change the font size of the "Groups & Files" panel of the Xcode IDE. I know how to change the "Fonts & Colors" in the preferences, but those (seem to) only affect the code window, not the rest of the IDE. Any ideas? Thanks! 回答1: I believe you can change the size of the Groups & Files pane by setting the PBXTableFontSize parameter in ~Library/Preferences/com.apple.Xcode.plist . This needs PBXTableFont to be set first to take effect. 1) Run defaults write com.apple.Xcode

Eclipse ignoring incorrect @Override annotations

╄→尐↘猪︶ㄣ 提交于 2019-12-18 16:25:08
问题 For some reason one of my eclipse installations is ignoring incorrectly set @Override annotations. For example, if I put @Override on a method that isn't overriden, it just completely ignores it. Any ideas on how to bring it back to a state where it will display an error for an incorrectly annotated method? 回答1: The definition of @Override changed slightly in Java 6 (and unfortunatly without proper documentation) wherein an @Override annotation on a method that implements an interface method

c/c++ ide 简介

自古美人都是妖i 提交于 2019-12-18 15:37:45
编写 C++ 肯定需要一个不错的 IDE, 我就给大家推荐几个 : (以下为个人观点, 只介绍主要部分) 1. Visual Studio: 无与伦比的 IDE, 社区版免费, 其余付费     一提到 IDE 就必须介绍的 Microsoft 巨作    总结: 非常智能, 拥有强大的功能, 可以完成基本上所有 C++ IDE 无法完成的任务    优点: 支持远程合作 (Live Share), 智能化的代码补全, 具有很强的稳定性, 可以进行扩展与自定义, 完全支持中文 .......    缺点: 编译运行速度慢; 对程序的要求十分严格; 不适合初学者 2. JetBrains CLion: 强大的移植性 IDE, 付费       总体评价: 界面美观, 智能化的跨平台 IDE, 超越绝大部分 IDE    优点: 移植性强大, 很智能的代码补全与分析 (使用CMake), 界面简约而不简单    缺点: 应用程序启动速度较慢, 配置有点儿麻烦; 需要付费 (学生免费使用); 对中文的支持不够 3. CodeLite: 免费      总体评价: 相对不错的 C++IDE    优点: 功能比较强大, 跨平台, 界面简单    缺点: 对中文支持不够; 需要配置编译器 4. Code::Blocks: 免费    总体评价: 使用方便, 功能不错, 拥有代码补全的 IDE

Is there a Javascript IDE that has nothing to do with a browser?

橙三吉。 提交于 2019-12-18 14:53:26
问题 Does anyone know of a program that lets you write javascript; then execute it - all the while having nothing to do with a browser? I don't want DOM manipulation, the equivalent of Console.Write is enough for me. I'm thinking of something along the lines of DrScheme - nice big code editing window, let's you run it, stop it. While all the other features (debugging, etc) would be wicked, they're not vital. (source: plt-scheme.org) 回答1: I've been doing some JavaScript work lately using Mozilla

How to include the percent character in the visual studio debugger command line arguments?

China☆狼群 提交于 2019-12-18 14:47:09
问题 I want to debug a program in Visual Studio 2010 SP1 with an argument like: "file-%04d.jpg". But entering this string in Project Properties > Config Properties > Debugging > Command Arguments changes the "%04", resulting in argv[1] being set to: "file-[some unknown symbol]d.jpg". The percent character seems to be interpreted as an escape sequence which is not what I want. This does not happen in 2008. 回答1: %xx seems to be interpreted as an ascii escape. So %25 should result in a real %