katapedia

JetBrains IDEA

IntelliJ IDEA

ショートカット

表示系

現在の単語をハイライト: Ctrl+Shift+F7

テスト系

プラグイン

必須

C++

Tips

Proxyに阻まれてGradleが使えない

環境変数、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管轄(個別でテストを実行する等)とすれば止まるようになる

Linuxで日本語入力できない

export GTK_IM_MODULE=fcitx

export QT_IM_MODULE=fcitx

export XMODIFIERS=”@im=fcitx”

を追加する

TroubleShooting

Generateしたときに画面が固まる

save action pluginがおかしい模様。アンインストールしたら直った

Help->Show log fileでなにがおかしいかわかる。

Linuxでi3wmを使うとうまくウィンドウにフォーカスしない

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

CLion

Tips

外部ライブラリのソースをFilesなどの検索対象に入るようにする

    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 時点でやりたいけどできない動作

Pycharm

Tips

ideavimのEscの効きが悪い

https://qiita.com/sifue/items/471ac01f413baf7b46a1