ide

How to disable removing unused imports?

一曲冷凌霜 提交于 2019-12-06 11:17:06
I use goimports to automatically reformat my code and make it clean and also keep import in order. But sometimes it works in an incomfortable way together with IDE autosave. Like in this scenario: I want to add new package to my code. Then I install it with dep ensure and refresh my IDE cache. I can comfortably use the package with IDE autocomplete and navigation. What happens with goimports and IDE? I add new package In order to run dep ensure I have to save a file goimports finds unused package and removes it from imports. Not good. Workaround: A. Add new package manually with dep ensure

What are some pros and cons of the various PHP IDEs? [closed]

匆匆过客 提交于 2019-12-06 11:06:12
问题 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 . This isn't a "Which IDE should I use?" question and I'm not interested in text editors no matter how awesome they may be (and I don't

JS correcting syntax in Sublime Text 3

孤街醉人 提交于 2019-12-06 11:03:37
问题 Im new to to Sublime Text 3. I used to use Netbeans which had a great syntax correcting system for JavaScript and PHP. So far, Sublime has great features. Its fast and beautiful, but it does not have syntax correcting errors when I create JS files. Is it a possibility to get this working? I read a bit on "SublimeLinter" but when I installed it, it seems to not work correctly. Can anyone help? 回答1: Have you try to install SublimeLinter for Sublime Text 3? (I don't think this package is

JavaScript IDE/Compiler

旧城冷巷雨未停 提交于 2019-12-06 10:41:23
Now, I hope some of you people will understand what I'm asking. I'm new to programming. I got introduced to JavaScript on Codecademy.com I use labs.codecademy.com for my JavaScript writing, but it's limited. What IDE/Compiler can I use that's pretty simplistic in terms of being new to programming. Where I'm not surrounded by buttons that I don't know how to use yet. Does this even exist? A simple IDE? I think these two editors/IDEs are simple and good for beginners: nodepad++ (with Plugins ) sublimetext (with Plugins ) More "complicated", but good javascript support: netbeans This is very

For the pycharm IDE how would I open a terminal in the IDE that uses an identical project environment

不打扰是莪最后的温柔 提交于 2019-12-06 09:20:52
Currently when I open a terminal in or out of pycharm the path has it open up python2.7.8. My project interpreter in python points to another version installed on my system (python2.6) it all works fine except when I open a terminal from within pycharm it still points to python2.7.8. I know about .pycharmrc, but how would I have the pycharm terminal point to the project python interpreter? Is there an an easy way? 来源: https://stackoverflow.com/questions/24809181/for-the-pycharm-ide-how-would-i-open-a-terminal-in-the-ide-that-uses-an-identica

How to set terminal in Qt Creator?

 ̄綄美尐妖づ 提交于 2019-12-06 08:42:56
I have a plain C++ project automatically created by the Qt Creator wizard(just the "Hello World!" one). When I press F5 to debug, there's an error in the terminal: Cannot connect creator comm socket /tmp/qt_temp.HP2094/stub-socket: No such file or directory I have searched for solutions in the Internet and tried this one: change the terminal value from x-terminal-emulator -e to /usr/bin/xterm -e Unfortunately, it doesn't work for me. A message box pops up saying "ptrace: Operation not permitted". How to make my Qt Creator console application function normally? PS: My Qt creator version is the

theme for python eric ide

北慕城南 提交于 2019-12-06 08:09:38
I want to change my background IDE in eric but when I do this in preferences>editor>style nothing change in background color, just font styles changed. Is there any solution for this? cause white color make a huge damage in editor when working lots of hours Short version: [ Settings > preferences > Editor > Style ] ... is only for unrecognised languages. [ Settings > Preferences > Highlighters > Styles ] ... is for each separate recognized language. Longer version: Changing the background using [ Settings > Preferences > Editor > Style ] works fine. ... Well kinda. 1) This particular

Using Docker for development and sharing dependencies for features such as IDE auto-completion

…衆ロ難τιáo~ 提交于 2019-12-06 07:59:55
问题 Say we have a Docker container with all the dependencies that our application needs, and the code for the application lives on a shared volume. This seems to be a common setup to reasonably isolate the application and its dependencies. Now say we edit the code located on the shared volume using a locally installed IDE. How can the IDE find the dependencies (which are not installed on the shared volume) for features such as auto-completion to work? I'm aware of certain IDEs such as PyCharm

How to setup a new language IDE

余生颓废 提交于 2019-12-06 07:58:01
At work we are using a proprietary language and to program we are using Notepad++ with a simple code highlight. That is really annoying so, what I want to do is to invest some time to setup a text editor or an existing IDE to support my language. I've googled a lot and there are so many options and before starting to work I wanna ask to you what is the best choice. What I want to do is to have, like an IDE, a syntax highlight, a window with the function list tree, with the local function variables inside the same subtree, maybe text autocomplete (if I type "pro" I would like to see the

How to Fix Module Not Installed Error in BB10 IDE

≡放荡痞女 提交于 2019-12-06 07:10:37
问题 Is it possible to fix module not installed error in BB10 IDE? Attached is screenshot of error to explain it a bit. Note: There is a similar question on SO which is kind of asking the same question (still not found correct answer yet) - blackberry cascades mapview 回答1: This is a currently a known issue with the QML preview in the Momentics IDE. It only supports the core cascades components. I answered a similar question here: blackberry 10 Unresolved inclusion <QObject> 来源: https:/