1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Eclipseの細かな環境設定

Last updated at Posted at 2016-07-10

正規表現をヘルプを表示

Ctrl + space 正規表現のヘルプが表示

引用元:Eclipseのファイル編集中に正規表現のヘルプを表示する方法 - Tbpgr Blog

入力補完

「syso」Ctrl+space 「System.out.println();」
「「main」Ctrl+space public static void main(String[] args) {}」
Alt+Shift+s ゲッターセッターの取得
Ctrl + 1 クイックフィックス

インデント

Ctrl+Shift+f インデントのフォーマットを整える

Javadoc

alt+↓ コメントアウトを開く

エディターフル表示

Ctrl + m エディターの最大化表示

コメント

Ctrl+Shift+c コメントの追加・削除

インポート

Ctrl + Shift + o インポート最適化

コンソールに移動

Ctrl + Shift + qの後にc コンソールに移動

引用元:Eclipseショートカット・移動・ワークベンチ - Strategic Choice

正規表現

[] カッコ内のいずれかの文字列

引用元:【Java】正規表現って何? | 一番かんたんなJava入門

引用元:プログラミングが劇的高速化!Eclipseで必ず設定したい基本キーバインドまとめ(テキスト編集編)

検索

Alt + a の後にf ファイル検索
Alt + a の後にj Java検索
Ctrl + h プロジェクト横断のファイル検索機能
Ctrl + Shift + r 今開いているリソースを開く。(java、クラスファイル)
Ctrl + Shift + t クラスを開く
Ctrl + e 開いているファイルから検索
  • パッケージ検索
    • [検索] パッケージを選択→[制限] すべての出現箇所を選択→目的のパッケージで「Alt + shift + w」でパッケージ・エクスプローラーを選択。

引用元:瞬間移動でストレスフリー!Eclipse 移動系ショートカット集 – OTCHY.NET

調べた単語

インクリメンタルサーチ(incremental search)

アプリケーションにおける検索方法のひとつ。 検索したい単語をすべて入力した上で検索するのではなく、入力のたびごとに即座に候補を表示させる。 逐語検索、逐次検索とも。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?