资 源 简 介
Adjust the line width with usefull tool for coding style.
The following text:
» select¶ » » COLUMN1, » » COLUMN2·+·COLUMN3,¶ » from¶ » » TABLE1¶
becomes:
····select···············¶········COLUMN1,·········¶········COLUMN2·+·COLUMN3¶····from·················¶········TABLE1···········¶
and there is a per-line prefix and sufix option that allow you to do the following code:
mySQL += "····select···············¶";mySQL += "········COLUMN1,·········¶";mySQL += "········COLUMN2·+·COLUMN3¶";mySQL += "····from·················¶";mySQL += "········TABLE1···········¶";