Questions tagged [ide]

IDEs (Integrated Development Environment) are computer programs that facilitate efficient software development by providing features beyond those of a simple text editor.

An IDE (Integrated Development Environment) is a computer program that facilitates by providing features beyond that of a simple text editor. Some typical IDE features are debugger/ support, tools/support, design tools and even performance analysis tools.

An IDE is intended to maximize a developer/programmer's productivity by providing a streamlined interface tuned to the task of software development. A modern full-featured IDE includes advanced features such as preemptive hints (when typing the first character of a variable name, for example), and tools to analyze the program at run-time (such as a debugger).

List of Some Free IDEs

10900 questions
7
votes
5 answers

Eclipse showing java project src folder view as all packages and subpackages

Not sure how to really ask this question since I don't know what everything is called but I'll try to do the best I can. So as I was cleaning up my classes. I right clicked my project and selected refresh. Then all of a sudden my project view…
mosawi
  • 1,283
  • 5
  • 25
  • 48
7
votes
1 answer

Space Error in Intelliji IDE - Intellij.ide.SystemHealthMonitor - Low disk space on a IntelliJ IDEA system directory partition

Due to low running memory - Intelliji is consistently throwing a pop up error "low disk space error in intelliJ IDE."(repeatedly) Version - IntelliJ Idea Community version 14 Tried few suggestions from the official…
Srikanth Balaji
  • 2,638
  • 4
  • 18
  • 31
7
votes
1 answer

Overlay Icons in Delphi IDE

How do you implement overlay icons in the Delphi IDE like this: on editor's files tabs; on Project Manager's tree; on Project Manager's popup menu?
vlad_n
  • 123
  • 2
  • 7
7
votes
3 answers

How can I change the IDE language of Delphi XE7

I want to change the language of the Delphi XE7 IDE from German to English. BDSSetLang.exe doesn't work for the toolbar and menu items (e.g. 'File / Open project' instead of 'Datei / Projekt öffnen').
Nobby
  • 289
  • 2
  • 12
7
votes
6 answers

Which editor and debugger for typescript

I am working on a nodejs project in which all code is written in typescript. It follows a microservice pattern (and each microservice is an independent project) hence lot of projects needs to be opened and debugged at the same time. I tried webstorm…
w3dev
  • 545
  • 2
  • 8
  • 21
7
votes
1 answer

Save Visual Studio Debug -> Exceptions settings?

I find that in different cases you need to have different exception classes enabled/disabled in the Debug -> Exceptions dialog, and it's hard work to keep reconfiguring this. So, is there any way to save the Debug -> Exception setting and restore…
Kjell Rilbe
  • 1,331
  • 14
  • 39
7
votes
5 answers

Which IDE / code editor was the first to introduce a code completion feature?

I am trying to identify the point in time where code completion (autocomplete/intellisense/whatever) was first introduced in IDEs and would appreciate any pointers. By code completion here I mean a feature within the editor that suggests methods or…
Uri
  • 88,451
  • 51
  • 221
  • 321
7
votes
4 answers

Should I check-in IDE project files to version control system?

For a Java project (with the team of 5-10 developers) should I store my IDE project files (e.g. Eclipse or IntelliJ Idea) in version control system (currently I store only build scripts)? What's the best practice? PS Do you aware of any tools to…
Alexey Kalmykov
  • 1,958
  • 2
  • 15
  • 27
7
votes
1 answer

Emacs: pass arguments to inferior Python shell during buffer evaluation

recently I started using Emacs as a Python IDE, and it not quite intuitive... The problem I am struggling with right now is how to pass command line arguments to the inferior python shell when the buffer is evaluated with C-c C-c. Thanks for help.
Sammy
  • 73
  • 1
  • 3
7
votes
3 answers

How to make the eclipse IDE to build faster

I am using Eclipse for development. However, it's is taking too much time to build. It hangs when the percentage of build gets to 78. It shows "refreshing workspace" several times. That eats up lots of time. How can I make Eclipse faster?
Naruto
  • 9,476
  • 37
  • 118
  • 201
7
votes
2 answers

How to get Xamarin Studio C# output within the IDE?

I recently started experimenting with Xamarin and Mono C# on my Mac. I am used to working on Windows with Visual Studio so I find it cumbersome when every time I run my console application, a new terminal window and mono compiler terminal open up.…
Jenna Maiz
  • 792
  • 4
  • 17
  • 38
7
votes
2 answers

Sublime Text Indentation Settings Being Overwritten By a File

I am working on a project where tab size is supposed to be 4 and tabs should not be spaces. I updated my Preferences.sublime-settings file to include "detect_indentation": "false", "tab_size": 4, "translate_tabs_to_spaces": false, When I open a new…
7
votes
1 answer

PHPStorm deletes line if Backspace is pressed on the default indentation level

After upgrading from 7.x to 8.x I noticed an annoying new "feature". When on an empty line (after pressing enter), then pressing backspace (which used to get rid of the indentation character right in front of the caret) the line is erased and the…
SeinopSys
  • 8,787
  • 10
  • 62
  • 110
7
votes
3 answers

Howto ignore specific undefined variables in Pydev Eclipse

I'm writing a crossplatform python script on windows using Eclipse with the Pydev plugin. The script makes use of the os.symlink() and os.readlink() methods if the current platform isn't NT. Since the os.symlink() and os.readlink() methods aren't…
cseaton
  • 662
  • 8
  • 19
7
votes
1 answer

Is there a way to display user form in IDE instead of host app?

I created a userform in an *.xlam add-in and created a new commandbar and button in the IDE, but when I click the button, the user form is opened in Excel, and focus is forced away from the IDE. Is there a way to open the user form in the IDE…
RubberDuck
  • 11,933
  • 4
  • 50
  • 95
1 2 3
99
100