ide

Good C++ Debugging/IDE Environment for Linux?

不羁的心 提交于 2019-12-03 06:59:21
问题 I have a friend who is trying to make the switch to Linux, but is hung up on the apparent lack of debugging/IDE environments for C++, especially as they relate to template programming. He has been using visual studio for years and is maybe a little spoiled by their awesome IDE. Does anyone have any good suggestions for an environment where he can, under Linux, develop and debug with all of the usual things (Breakpoints, line highlighting for compilation errors, step in/over/out/etc, etc) that

C++ IDE on Linux [closed]

时光毁灭记忆、已成空白 提交于 2019-12-03 06:53:28
We trying to choose an IDE for C++ development on Linux. The proposed options are KDevelop and Eclipse. Eclipse is highly customizable, but Java centric and heavy. KDevelop is bounded to particular KDE (I believe because KDE API) and can not be replaced if required. What you use and why? Thanks Dima KDevelop, because: It supports CMake . It fully integrates with the GCC utilities. It has a good syntax highligher and code editor It has a relatively quick startup time and is relatively light weight. Since you are comparing KDevelop with Eclipse, let me also point out that: KDevelop uses a file

IDE or editor for Node.js+Express and CoffeeScript

随声附和 提交于 2019-12-03 06:32:44
Preferably an IDE . Integrated support for Subversion /Git is a big plus as we are a group of 6 people working. Vim/Emacs is not that popular with the other as it is very awkward and hard to get started and it requires alot of effort to learn which takes the focus away from our project. We're all used to/familiar with Eclipse, so an IDE that resembles Eclipse would be a big plus as well. Thanks :D I think Sublime 2 should be the answer to all your troubles http://www.sublimetext.com/2 but if you like eclipse, aptana should be nice to http://aptana.com/ You should try Aptana or WebStorm , the

Eclipse - An internal error occurred during: “Compute launch button tooltip”

我与影子孤独终老i 提交于 2019-12-03 06:31:24
I launched Eclipse earlier to jot down a snippet and was faced with the following as an error when I tried to run a fresh project: An internal error occurred during: "Compute launch button tooltip". That popup window shows as soon as I mouse-over the run icon in the top bar, or if I right click on the class in the explorer window and select any of the run/debug options. After doing some research on the error, I see several people who posted similar messages but they all have been fresh installs of Eclipse. So note that this is not a fresh install, and that Eclipse was working fine earlier

Eclipse save automatically

孤街浪徒 提交于 2019-12-03 06:26:18
问题 I would like Eclipse to automatically save every time I edit a file, in much the same way that it builds automatically. Because I've been using IntelliJ for the last year (which saves automatically by default), I keep having the following problem: Make some changes in Eclipse Forget to press save Run the build, unit tests, and notice some strange behaviour (Some time later....) realize that the unexpected behaviour occurred because I forgot to save the changes Is there any way I can make

How can I set the PHP version in PHPStorm?

。_饼干妹妹 提交于 2019-12-03 06:26:00
问题 Is it possible to set the PHP version value, say 4.0+ and have PHPStorm highlight functions that wouldn't work with the oldest version? For example, for PHP4 this should highlight static function etc. I have a PHP installation on my PC but I don't want to install an older PHP version for every small script I have to produce. Thanks 回答1: so, you mean to highlight all pieces of code that will not work with the PHP version you are writing it in, right? That can be done here: Preferences ->

What is the best alternative IDE for Delphi (.NET)

半世苍凉 提交于 2019-12-03 06:21:48
I work in Delphi 2007 (both win32 and .Net) but the CodeGear IDE frequently annoys me, so if possible I'd like to find a replacemnt. We have a build script so I can compile from the command line and I very rarely do any GUI designing, so the only thing I need is a text editor (with syntax highlighting, Autocomplete/Intellisense ...). I would like to use Visual Studio or Emacs but don't know how feasible it is to work on Delphi code in those environments. Particularly debugging - can the Delphi IDE still act as my debugger even if I don't use it for editing? Does anyone have any experience of

Syntax-highlight Python in a vim fold line

二次信任 提交于 2019-12-03 06:21:15
I have found that code-folding helps me organize my files better. Thus, at the bottom of my ~/.vimrc , I enable vim code folding by default: ""Folding set foldmethod=indent set foldnestmax=2 nnoremap <space> za vnoremap <space> zf "set nofoldenable "set this to disable folding on file open This has the advantages of using SPACE to toggle folds at the cursor, or if they start to annoy me I can use z R to unfold everything. However, I'm also addicted to syntax highlighting. I use Dmitry Vasiliev's python.vim , but it doesn't highlight syntax in a fold line: The lack of syntax highlighting for

Compiling C++ Programs with Emacs on Windows

余生颓废 提交于 2019-12-03 06:20:58
问题 I've been using Emacs for quite some time for basic text editing but as of today I am attempting to use it for c++ compilation. I have looked for the past few hours about how to go about this but I keep hitting roadblocks in their techniques (I think some of this is having to do with the tutorials being outdated). Basically, all I want to do is be able to compile C++ programs that I write in Emacs through the 'M-x compile' command. So far I have installed Cygwin and downloaded the packages

Remove automated closing bracket comments in IntelliJ IDEA

这一生的挚爱 提交于 2019-12-03 06:18:10
I'm seeing following happen when working in intelliJ IDEA with Dart based project All comments there i.e // AppBar are auto generated, I assume for easier tracking of what closing brackets belong where. Weird bit is that I can't even highlight them, nor delete them and when I copy code they are not copied over. Is there a way to disable this feature in the ide? The checkbox is in Settings (Preferences) | Editor | General | Appearance, toggle 'Show closing labels in Dart source code'. And in the vs code editor, change this setting to flase "dart.closingLabels": true You can find this setting