LoginSignup
12
15

More than 5 years have passed since last update.

eclipseの半角スペース表示をuから・に変更する

Last updated at Posted at 2017-07-29

eclipseバージョン

バージョンによって変わるかも知れないので、試したバージョンを記載しておく。

  • Eclipse 4.7 Oxygen

半角スペース表示をuでなくす

数年ぶりにeclipseを使用して、半角スペース表示をONにしたところ、"u"の文字に置き換わっていた。
非常に見づらかったので、変更方法を備忘録として残しておく。

以下へ編集するだけ。

vim [eclipseインストールパス]/plugins/jp.sourceforge.mergedoc.pleiades/conf/pleiades-config.xml
$3  = $3.equals("·"  ) ? "ᴜ"     // 半角空白 例:▫ᵁᐡᶸᓑᴜՍ
↓
$3  = $3.equals(""  ) ? "ᴜ"       // 半角空白 例:▫ᵁᐡᶸᓑᴜՍ

日本語使用フォント

日本語の等幅フォントをいつも忘れるので、ついでにメモ。

  • 「DejaVu Sans Mono Book」を使う。

参考URL

12
15
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
12
15