2011-10-29 6 views
2

私はWindows Vistaでインディゴリリースを実行しています。
一般 - >エディタ - >テキストエディタで印刷マージンとJava - >コードスタイル - >フォーマッタの最大線幅を100文字に設定しましたが、まだコメントは80列目に折り返します。Eclipse 3.7ラインラップの早期コメント

これは私のファイルの先頭に入力される。例えば


// This comment is over 80 characters long, but it is in no way over 100 characters long. 
/* 
* The same problem occurs in block comments as well. True, neither problem is code breaking, 
* but it certainly is annoying all the same. 
*/ 

それがフォーマットさ(最長の線が、それぞれ、90及び94文字である):
(株である73と79の文字がそれぞれ)

// This comment is over 80 characters long, but it is in no way over 100 
// characters long. 
/* 
* The same problem occurs in block comments as well. True, neither problem is 
* code breaking, 
* but it certainly is annoying all the same. 
*/ 

私はJavaを再起動しようとしましたが、私が見つけることができるすべての "適用"ボタンをヒットしましたが、役に立たない。リリースノートには既知の問題として記載されていないようです。私は行方不明のものがありますか?おそらく単純な何か?

答えて

2

少なくともEclipse Helios(3.6)には、独自の「コメントの最大行幅」を設定したFormatter設定に別の「コメント」タブがあります。

+0

3.7の[コメント]タブに線幅の設定がないか、少なくとも私はそれを見ません。とにかくありがとう。 – Obbl

関連する問題