2011-08-26 60 views

回答

4

當前解決方案是使用標準Unicode符號從supplementary arrows組:2925和2926

可以通過經由idea.editor.wrap.soft.before.codeidea.editor.wrap.soft.after.code性質idea.properties文件中指定其它的unicode(十六進制)的代碼修改。請注意,有必要定義兩個符號,例如添加到idea.properties類似如下:

idea.editor.wrap.soft.before.code=2906 
idea.editor.wrap.soft.after.code=2907 

請注意,並非所有的字體包含所有的Unicode字符,所以你必須選擇正確的字體在Settings | Editor | Colors & Fonts並指定您正在使用的字體中存在的符號代碼。

0

要澄清一下CrazyCoder說:

在Mac上,你需要進入取景器和「顯示包內容」上的IntelliJ IDEA.app,那麼你可以添加行到idea.properties文件在「bin」文件夾中。這是我跟去的箭頭代碼:

idea.editor.wrap.soft.before.code=219e 
idea.editor.wrap.soft.after.code=21a0 

不要忘了,你也可以改變他們在程序的喜好顏色在「編輯>顏色和字體>常規>軟套牌」。

相關問題