I used to experiment with EAP versions of PhpStorm.
Now I want to stick with the latest stable version, but I still get update notifications for the EAP.
How can I disable this?
Settings | Updates for v8.0.1 and older
Settings | Appearance & Behaviour | System Settings | Updates for v8.0.2 and newer
.. or just use search box and search for "updates" in Settings screen or Search Everywhere functionality
Once there -- change updates channel to a desired one.
NOTE: "Settings" is for Windows/Linux; on Mac it's called "Preferences".
Related
After updating VS Code for the second time, I can now right-click a file and open it with 3 different versions of it: 1.6.1, 1.8.1 & 1.9.0.
How can I either automatically prevent this on an update or remove the old versions after the update? My applications folder only shows one version of it.
Locate the other versions
You can just run each of them, right-click on the Dock icon of the running version and select Options → Show in Finder.
My versions were located here
~/Library/Application Support/com.microsoft.VSCode.ShipIt/update.OhD5XFk
Delete it
Just delete the whole directory update.OhD5XFk
Previously on programmers.stackexchange.com but apparently off-topic for that forum.
I have found people complaining about the issue here: https://blog.jetbrains.com/idea/2016/08/intellij-idea-2016-2-3-update-is-out/
I cannot ctrl+c or alt+3 so keybindings are messed.
Any ideas / temp fixes / resolutions before Jetbrains do a patch?
Workaround from JetBrains:
Masatoshi Iwasaki Kieran Simpson Please, specify this jdk as a boot jdk https://bintray.com/jetbrains/intellij-jdk/download_file?file_path=jbsdk8u112b325_osx_x64.tar.gz
Download the archive
Unpack it
Run "Switch IDE boot JDK" action
Select "..." in the checkbox
Specify the unpacked directory in the file chooser
Reboot
https://youtrack.jetbrains.com/issue/IDEA-160416#comment=27-1594109
You can try using the Standard JDK 1.8_102 I then had the terminal working again, but fonts were ugly.
It is a general issue, I change my update channel to "Early Access Program"
I update to IntelliJ 2016.2.4 (is the last RC) and them I change my channel again, be careful and don't update to IntelliJ 2016.3 except you really want to.
You can do that going to the menu option "check updates" and click in the link updates in the middle of the text.
The close the popup and go to check updates again.
Remember change back your update channel.
I want to configure project home page in Teamcity (I'm using TeamCity Professional 9.1.3 (build 37176)).
There are several default tabs there which we are don't use with current project - Investigations, Muted Problems and so on. I want to completely disable them.
I am able to add new tabs via Administration - Project Settings - Report Tabs, but I cannot find any options to configure default tabs there. Checked also settings for root project, but there are no options there as well.
Is there any way to remove these tabs?
It is impossible to hide these tabs now. You are welcome to add a feature request in our tracker
I have Spring Tool Suite (STS) 3.6.3 installed. On another PC at home I recall being able to add SVN integration into STS by bringing up the Dashboard window, and checking the "Subsclipse" check box on the Extensions tab. However, I don't see this option on my current installation. I am including installed extensions, too, and I do not see Subclipse in the list.
When I select the Project folder in the Project Explorer window, right mouse click → Team → Share Project, I see only CVS and Git as options, but I would like to use SVN.
My experience with all things Java is measured in hours rather than years, so don't assume anything :-)
How do I integrate SVN with STS?
Check once if it's installed properly:
Here is how to add the SVN plugin (Subclipse) to your Spring Tool Suite
Open the Spring Tool Suite and go to the dashboard.
Click on Extensions (It is under the Help and Documentation heading).
Search for Subclipse. Check the checkbox and click Install.
Note: If you do not see Subclipse it implies that it is already installed on your IDE, but you can verify by checking the ‘Show Installed’ beside the search field.
Source URL: http://www.jicdesign.com/blog/web-development/how-to-add-svn-plugin-for-spring-tool-suite.html
Open Spring Tool Suite.
Select menu Help → Install new software
Click on the Add button.
Set the Location field as http://subclipse.tigris.org/update_1.6.x/
Click OK
Select the required components.
Click on Install button.
Select the I accept the terms of the license agreements radio button
Click the Finish button
Click Yes to restart Spring Tool Suite
Subclipse is available in the Eclipse Marketplace and can be installed via the Marketplace Client. It is also available at the following update site URL's.
NOTE: These are update site URL's to be entered inside the Eclipse installation dialog, not your web browser.
Latest - https://dl.bintray.com/subclipse/releases/subclipse/latest/
4.2.x - https://dl.bintray.com/subclipse/releases/subclipse/4.2.x/
The "latest" site will automatically move on to 4.2.1, 4.3.0, 5.0.0 etc. as those releases are produced. Where as the "4.2.x" site will only pick up new releases in the 4.2.x series such as 4.2.1, 4.2.2 etc.
More info at: https://github.com/subclipse/subclipse/wiki
I needed to run with elevated or administrator rights.
I'm new to XCode and Objective-C programming. I have used WebStorm, IntelliJ, Netbeans, and Eclipse. They all support something like this:
Notice the colors on the left that indicate what's changed locally. Clicking on those will show me what it was before and allow me to reset the local copy to what it was before. Very useful and I do it all the time.
Obviously, with iOS programming, I want to use XCode, but I really want to have those indicators. All I see with XCode is this:
Notice that there's no indicator at all...
Note: I am not talking about being able to open a git diff tool, even if it's built into XCode. I am looking for the simplicity that all the other IDEs give me...
The closest thing in Xcode is the version editor. Choose View > Version Editor > Show Version Editor to show the version editor. The version editor shows your local copy and the last committed version of the file side by side and highlights the changes between the two versions.