VScodeでJavaのインポート文をFixしたい

VScode で Java 開発、快適です。

で、import文を自動でフィックスしたい場合。
Eclipse だと Ctrl + Shift + O でできるじゃん?

VScode の場合は Alt + Shift + O でした。
キーボードショートカットの editor.action.organizeImports に登録されています。

{  
  "key": "shift+alt+o",  
  "command": "editor.action.organizeImports",  
  "when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)source\\.organizeImports\\b/"  
}  

ショートカットを覚えてさらに快適に!

参考サイト

Does Visual Studio Code have an auto-import feature for Java?? - stackoverflow
https://stackoverflow.com/questions/53534584/does-visual-studio-code-have-an-auto-import-feature-for-java/56972128#56972128?newreg=ed3958eb34b54c0da55f2fdc28a1cd43

Subscribe to 猫好きが猫以外のことも書く

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe