如何修改java語言定義包foldingStartMarker和foldingStopMarker條目以允許摺疊這些類型的註釋塊?TextMate source.java註釋塊摺疊
這是註釋風格:
/** * This is a comment... * Yet another comment... */
我已經試過這樣:
foldingStartMarker = '(\{\s*(//.*)?$|^\s*// \{\{\{|^\s*\/\*\*)'; foldingStopMarker = '^\s*(\}|// \}\}\}$|\*\/)';
我得到的第一個匹配 '/ **' 字符,但我不能讓它找到StopMarker'* /'。
謝謝!