I found Softwrap in Textmate2. This is very useful but for me it is better to have sudo tabs in adjacent line as follows.
before soft wrap --------------------------------------------------------- class Textmate def initalize(options = {}) xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx if yyyyyy ooooooooooo else cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc end end ---------------------------------------------------------- after soft wrap ---------------------------------------------------------- class Textmate def initalize(options = {}) xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxx if yyyyyy ooooooooooo else ccccccccccccccccccccccccccccccccccccc ccccccccccccccccccccccccccccc end end ---------------------------------------------------------- I think this should be idealy as follows ---------------------------------------------------------- class Textmate def initalize(options = {}) xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxx if yyyyyy ooooooooooo else ccccccccccccccccccccccccccccccccccccc ccccccccccccccccccccccccccccc end end ----------------------------------------------------------
How do you think guys?