ide

Good C IDE for Mac? [closed]

非 Y 不嫁゛ 提交于 2019-12-04 09:53:38
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I've just started a job where I'm programming in C on a Mac, which is my first experience using a Mac for development. For now I'm using Xcode as my editor, then using make/gcc/svn at the command line for compiling and source control. Is there a good, full featured IDE out there for Macs that will compile C code

ReSharper sluggishness

纵饮孤独 提交于 2019-12-04 09:52:23
问题 I like ReSharper, but it is a total memory hog. It can quickly swell up and consume a half-gig of RAM without too much effort and bog down the IDE. Does anybody know of any way to configure it to be not as slow? 回答1: Turn off the on-the-fly compilation (which, unfortunately, is one of its best features) 回答2: The next release 4.5 is going to based around performance and memory footprint. see Ilya Ryzhenkov's blog Resharper 4.5 has been released From my experience it is less of a memory hog,

How can I make mousewheel work in VB6 IDE?

淺唱寂寞╮ 提交于 2019-12-04 09:50:52
问题 One annoying behavior of the VB6 IDE editor, especially when switching back to it from more recent tools like VS.NET, is that it doesn't recognize the mousewheel! Maybe VB6 was brought out when most mice didn't have one, but is there a way to fix it so it does recognize the mousewheel? 回答1: Microsoft has an extension that can provide the behavior requested. You have to download it from the link below and register it with the steps provided, such as using regsvr32 http://support.microsoft.com

hide WebStorm toolbar showing browser icons

时间秒杀一切 提交于 2019-12-04 09:50:13
问题 How do I hide the toolbar that shows browser icons floating above my code? I'm using WebStorm 64 bit, version 10.0.4, on Windows 8.1 x64. 回答1: Settings/Preferences Tools | Web Browsers Uncheck Show browser popup in the editor option (bottom part of the screen) Another possible solution: just disable all browsers in that list. 来源: https://stackoverflow.com/questions/31760756/hide-webstorm-toolbar-showing-browser-icons

Which IDE Should I use for C++ on Windows? [closed]

偶尔善良 提交于 2019-12-04 09:45:31
Which IDE for C++ should I use on Windows? Is there an IDE with support for editing over SSH on a GNU/Linux server? I have very big C++ project without docs and editing it with text editor very difficult =( On Windows I prefer: Visual Studio + WinSCP On Windows, it's hard to beat the freely available Visual Studio Express . A viable alternative would be the Qt Creator , which is lightweight and comes with the completely awesome Qt library. Eclipse is very powerful editor for both C++ and many other languages. It sounds like you're looking to develop from a Windows system for Linux? WinSCP will

Delphi-IDE: how to change the way class-completion works?

别等时光非礼了梦想. 提交于 2019-12-04 09:45:19
问题 Class completion in Delphi is a big time-saver, but I haven't found a way to customize it. I would like a getter and setter for a property to be grouped together instead of being thrown all over my unit; The interface part is generated properly, but the implementation section becomes a mess if you leave things up to the IDE. I want methods to be ordered like this by default: function TAaa.getAaa(); procedure TAaa.setAaa(); procedure TAaa.Baa(); function TAaa.getCow(); procedure TAaa.setCow();

Why do errors no longer appear in Eclipse's package explorer?

廉价感情. 提交于 2019-12-04 09:03:05
问题 My project used to be fine - errors showed up in the file margin, the editor breadcrumb, the problems view and in the package explorer tree as little red X marks. Somewhat spontaneously though, it's stopped working properly. If I introduce an error into my code, it shows up in the file margin, and nowhere else. It takes a 'project clean' to make the red X's show up elsewhere. Then if I fix the problem, the error is cleared from the file margin but the red marks persist elsewhere until I do

Visual Studio Vs Visual Web Developer

对着背影说爱祢 提交于 2019-12-04 08:54:29
I am trying to write a web application using ASP.NET MVC . I prefer C# as the programming language. Which IDE is better to use for this purpose? Visual Studio or Visual Web Developer ? What are the features of the IDEs? What are the benefits of using one over the other? Thanks in advance. As far as I understand, Visual Web Developer (VWD) is simply a free version of the Visual Studio components necessary to develop web based solutions. Here is a list of features missing from VWD that you get in a Professional edition of Visual Studio 2008 (VS2008). In short, VWD Express 2005 is Not Extensibile

IntelliJ won't save SVN authentication information

时光总嘲笑我的痴心妄想 提交于 2019-12-04 08:41:21
问题 I'm using IntelliJ Ultimate version 11.1.4 on OS X. Every time the application starts, or I update from SVN, I am prompted for my SVN credentials. Even if I click "save credentials" they are not stored. This ticket describes a workaround where one changes SVN to store plaintext passwords. This does not resolve my issue. How can I get IntelliJ to store my SVN credentials? 回答1: This problem can occur if there are any modifications in the /Applications/<app>.app directory. It's new since Mac OS

How to get output of exe in python script?

一世执手 提交于 2019-12-04 08:40:28
问题 When I call an external .exe program in Python, how can I get printf output from the .exe application and print it to my Python IDE? 回答1: To call an external program from Python, use the subprocess module. The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes. An example from the doc ( output is a file object that provides output from the child process.): output = subprocess.Popen(["mycmd", "myarg"], stdout=subprocess