eclipse カスタマイズ記録

plugin_customization.ini は
plugins\org.eclipse.platform_3.*.*.v************\plugin_customization.ini
のバックアップです。

plugin_customization.ini は eclipse 本体をバージョン・アップすると消されてしまうので
バックアップを用意しています。

eclipse-clean.bat で元の場所に上書きするようにしています。

カスタマイズとして下記を追加しています。

# Custom
※eclipseテキスト・エディターのデフォルト値の変更
org.eclipse.ui.editors/lineNumberRuler=true
		「行番号の表示」
org.eclipse.ui.editors/spellingEnabled=false
		「スペルチェックを使用可能にする」

※AnyEditプラグインのデフォルト値の変更
de.loskutov.anyedit.AnyEditTools/saveAndAddLine=false
		自動-変換「ファイルの最後に改行を追加する」
de.loskutov.anyedit.AnyEditTools/saveAndTrim=false
		自動-変換「行末の空白を排除」
de.loskutov.anyedit.AnyEditTools/saveAndConvert=false
		自動-変換「タブ<->空白変換を行う」
de.loskutov.anyedit.AnyEditTools/org.eclipse.jdt.ui.editor.tab.width=4
		変換「タブ幅／タブの桁数」
de.loskutov.anyedit.AnyEditTools/removeTrailingSpaces=false
		変換「"変換"中に末尾の空白を除去」
de.loskutov.anyedit.AnyEditTools/addNewLine=false
		変換「Create new line at the end of file while "convert" actions」

※zigen DBViewerのデフォルト値の変更
zigen.plugin.db/PreferencePage.SqlFileCharset=UTF-8
		「SQLファイル エンコード」
zigen.plugin.db/CSVPreferencePage.Encoding=UTF-8
		「CSVファイル エンコード」
zigen.plugin.db/SQLEditorPreferencePage.SqlDemiliter=;
		SQLエディター「SQL区切り文字」

※subclipseのデフォルト値の変更
org.tigris.subversion.subclipse.ui/pref_console_show_on_message=true
		「コマンド実行時にSVNコンソールを自動表示」 http://trac.l2jserver.com/wiki/Eclipse

2011.05.15