jetbrains-ide

Debugger configuration in GoGland

寵の児 提交于 2020-01-15 11:41:53
问题 I want to debug my go application when I send request using curl command. Currently my request is handled by the binary I have. What I want that when I send request using curl command request should be handled by the code I have not by the binary. I did not find any documentation about it, only found this thiswhich is still unanswered. @Zoyd did you found a way to configure it? 回答1: I've made a short video of how debugging works in Gogland and how it should be configured: https://youtu.be

NDK integration in Android studio

妖精的绣舞 提交于 2020-01-11 20:56:10
问题 Today I updated my android studio to 1.3 and I enter the NDK (android-ndk-r10e NDK version) path in local.properties (ndk.dir=C:\AndroidNDK\android-ndk-r10e\android-ndk-r10e) but I got this error. Error:Execution failed for task ':app:compileDebugNdk'. Error: NDK integration is deprecated in the current plugin. Consider trying the new experimental plugin. For details, see http://tools.android.com/tech-docs/new-build-system/gradle-experimental. Set "android.useDeprecatedNdk=true" in gradle

How to run Kotlin + React + Redux using the create-react-kotlin-app?

房东的猫 提交于 2020-01-06 02:49:06
问题 I am using the create-react-kotlin-app and following the instructions on its GitHub page to create a React + Redux app using Kotlin. The first install part works fine: create-react-kotlin-app my-app cd my-app npm start The app works fine, but when I try to add Redux: npm install @jetbrains/kotlin-react-redux npm WARN @jetbrains/kotlin-extensions@1.0.1-pre.49 requires a peer of core-js@^2.5.7 but none is installed. You must install peer dependencies yourself. npm WARN ajv-keywords@3.2.0

Hide JetBrains annotation on popup JavaDoc in IntelliJ

馋奶兔 提交于 2020-01-04 00:41:07
问题 Is there a way to hide or turn off those Inferred Annotations Available when I'm reading the popup documentation from a method. As outlined on the image below. 回答1: There is no setting in IntelliJ IDEA to disable it. I've submitted a request, please vote. 来源: https://stackoverflow.com/questions/46178075/hide-jetbrains-annotation-on-popup-javadoc-in-intellij

Hide JetBrains annotation on popup JavaDoc in IntelliJ

喜夏-厌秋 提交于 2020-01-04 00:40:08
问题 Is there a way to hide or turn off those Inferred Annotations Available when I'm reading the popup documentation from a method. As outlined on the image below. 回答1: There is no setting in IntelliJ IDEA to disable it. I've submitted a request, please vote. 来源: https://stackoverflow.com/questions/46178075/hide-jetbrains-annotation-on-popup-javadoc-in-intellij

WebStorm 8.0.4 FTP Connection Fails

我的梦境 提交于 2020-01-03 08:55:11
问题 I am having same issue reported before in PHPStorm, when connecting with FTP in WebStorm 8.0.4. The error I get is: Could not list contents of the folder "ftp://real-meal.com/ Also tried Pasive and/or Compatibility modes. Working on Windows 8.1 x64. Sometime worked FTP navigation in "Browse Remote Host" menu, but after some playing with options (but restored to original) itsn't working anymore. Here is the Log File: 2014-10-04 20:45:09,933 [14500504] DEBUG - ains.plugins.webDeployment.ftp - >

Phpstorm line numbers column width

我怕爱的太早我们不能终老 提交于 2020-01-01 09:20:38
问题 The numbers column is very wide, and this is bothers me. I want to open more workspaces. Therefore I want it to be narrow. How do I do this? 回答1: I use PHPStorm Version 2017.1.4. In this version there is an option to hide gutter icons, which reduces the line number column width. Even if there are no gutter icons visible, the space is still allocated. If you don't need these icons, you can choose to hide them in the settings and the column width will be reduced. Navigate in settings to: Editor

RubyMine - No Ruby interpreter configured for the project

China☆狼群 提交于 2020-01-01 04:12:06
问题 I go to Settings - Ruby SDK and Gems, and pick out C:\RailsInstaller\Ruby1.9.3\bin\ruby.exe . It loads up a bunch of gems on the right side, and looks like it's going to work. I hit OK, and still have awful syntax highlighting and it still thinks it has no Ruby interpreter. I've tried invalidating the cache, and even downloading a new version of ruby and pointing it to the new binary ruby.exe file. 回答1: I faced this problem when I moved my project to another PC running a different version of

IntelliJ: Error: java: release version 10 not supported

陌路散爱 提交于 2020-01-01 01:01:29
问题 In IntelliJ, I'm getting this strange error message when I try to build from the build menu: Error: java: release version 10 not supported I don't understand this, since in Project Structure, I have these settings set: Project SDK: 9.0 Project Language Level: SDK Default Module Language Level: Project Default (both modules) In my pom.xml files, I have these properties set in both modules: <maven.compiler.source>9</maven.compiler.source> <maven.compiler.target>9</maven.compiler.target> I have

IntelliJ Find Action on Mac opens terminal app by error

落花浮王杯 提交于 2019-12-30 03:43:06
问题 When I press Cmd + Shift + A in IntelliJ it should open the "Find Action..." dialog. Instead it opens Terminal.app with the apropos command. How can I resolve this problem? 回答1: Seems in MacOs 10.14.4 a new default shortcut was enabled - Services -> Search man Page Index in Terminal. It uses the same shortcut as Find Action - Cmd+Shift+A . As a result using Find Action in the IDE could sometimes open terminal window with apropos <smth> command output. 来源: https://stackoverflow.com/questions