ide

Is there a plugin for vim to auto-import python libraries? [closed]

心不动则不痛 提交于 2019-12-18 10:55:10
问题 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 last year . In eclipse you can hit Ctrl+Shift+o to automatically import all the libraries you reference in your code. Is there any similar plugin for vim to have this feature with python? 回答1: There is ropevim . It is available on pypi as well The autoimport (adds missing imports) and organizeimport (reorder imports) features

How do I change in an eclipse web project the WebContent folder to something different?

核能气质少年 提交于 2019-12-18 10:48:15
问题 With the Galileo release it is finally possible to convert a normal Java project to a dynamic web project. Unfortunately it assumes that the Web stuff is located in a folder WebContent, which is not necessarily the case for an existing project. How can I change it? In MyEclipse it is quite easy, but with a stock eclipse I don't find such an option! 回答1: I am not sure what you meant by "a stock eclipse", but Helios allows this functionality in a very straight-forward way: Right click your

Does IntelliJ IDEA work on a 64-bit Windows system?

一笑奈何 提交于 2019-12-18 10:45:14
问题 I have downloaded and installed IDEA 13.1. However, even having a 64-bit system, Windows has automatically installed the program in the folder Program Files (x86) , which is dedicated for 32-bit programs. Is there another download for the 64-bit version or maybe a special setting to make it suitable for a 64-bit system? 回答1: In C:\Program Files (x86)\JetBrains\${Intellij Idea version}\bin , there is an executable called idea64.exe . This is for 64-bit systems. You can simply change your

Best C++ IDE for *nix [closed]

十年热恋 提交于 2019-12-18 10:22:57
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . What is the best C++ IDE for a *nix envirnoment? I have heard the C/C++ module of Eclipse is decent as well as Notepad++ but beyond

Is there any online IDE for Java? [closed]

痞子三分冷 提交于 2019-12-18 10:12:40
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . It doesn't have to be full blown of course, and console output only would be enough. I'd like it to be able to work on some program

Setting up a Programming Environment in Linux [closed]

怎甘沉沦 提交于 2019-12-18 10:10:35
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I recently started using Linux as my primary OS. What are the tools that I will need to set up a complete programming environment in

Good IDE for Elixir [closed]

喜夏-厌秋 提交于 2019-12-18 10:08:58
问题 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 last year . I am looking for an IDE that does atleast some of the following Code completion when typing variable names and possible functions after pressing . Show a functions signature and docs Navigate to the function/variable/module's definition It would be nice if it could also Warn about errors Code generation Scaffold

How to make phpstorm display line numbers by default?

南楼画角 提交于 2019-12-18 09:56:31
问题 How to make phpstorm display line numbers by default? Couldn't find that option. It's kind of annoying to turn them on manually for each page. 回答1: Settings (or Preferences if you are on Mac) | Editor | General | Appearance and check Show line numbers . 回答2: Just now found where is it on Windows . Its View -> Active Editor -> Show Line Numbers (changes only for current document) and File -> Settings -> Editor -> Appearance -> Show Line Numbers (for all documents) For Mac Version go to

What is an “internal error” and how do I fix it?

只愿长相守 提交于 2019-12-18 09:49:22
问题 I am using a programming tool (a compiler or IDE or other tool) and it reports an "internal error" with some incomprehensible details when I use it. I want to fix this error. What should I do? 回答1: The programming tool has to report errors in your program, such as syntax errors in your code, runtime errors when you run it, and test failures when you test it, so you can fix your code. But that programming tool is itself a computer program, and so itself can have bugs in it. Careful programmers

How can I detect if “Press any key to continue . . .” will be displayed?

与世无争的帅哥 提交于 2019-12-18 07:39:41
问题 When running a console application in Visual Studio, depending on your settings, it will add a prompt after the program exits: Press any key to continue . . . I have found how to detect if I am running under the debugger(use Debugger.IsAttached ), but it isn't helpful. Press CTRL-F5 to Start Without Debugging sets this flag to false , yet still shows the prompt . I want to detect this because I'd like to display my own message and wait for a keypress, but not double up keypress checks . I don