現在の単語をハイライト: Ctrl+Shift+F7
環境変数、GRADLE_HOMEを設定して、~/.gradle/gradle.properties に
systemProp.http.proxyHost=ip
systemProp.http.proxyPort=port
systemProp.http.nonProxyHosts=192.168.1.*|192.168.2.*|localhost
systemProp.https.proxyHost=ip
systemProp.https.proxyPort=port
systemProp.https.nonProxyHosts=192.168.1.*|192.168.2.*|localhost
を追加する
Gradle VM optionsに-Dhttp.proxyHost=ip -Dhttp.proxyPort=port -Dhttps.proxyHost=ip -Dhttps.proxyPort=port
ではうまくいかなかった
https://stackoverflow.com/questions/37704239/intellij-http-proxy-works-but-fails-at-gradle-dependencies
Gradleが別プログラム(intellijの管轄外)として動いていたことが原因。intellij管轄(個別でテストを実行する等)とすれば止まるようになる
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS=”@im=fcitx”
を追加する
save action pluginがおかしい模様。アンインストールしたら直った
Help->Show log fileでなにがおかしいかわかる。
2019.2でなおった模様
それ以前の場合は以下
~/.xxx/config/idea.properties (Help->Edit Custom Properties) に
suppress.focus.stealing=false
#focus.follows.mouse.workarounds=true
#idea.popup.weight=medium
#actionSystem.xWindow.remove.focus.from.nonFocusable.popups=false
if (CMAKE_BUILD_TYPE STREQUAL Debug)
FILE(GLOB_RECURSE LIB_SRCS "/xxx/src/**/*.cpp" "/yyy/src/**/*.cpp")
list(APPEND PROJECT_SRCS ${LIB_SRCS})
endif()
ADD_EXECUTABLE(${EXECUTABLE_TARGET} ${PROJECT_SRCS})
2019/03/21 時点でやりたいけどできない動作
https://qiita.com/sifue/items/471ac01f413baf7b46a1