同じ問題があり、小さなスニペットを書きました。これはキーバインディングであるため、.sublime-keymapファイルに保存する必要があります。Mac を使用している場合は、Sublime Text 2 > Preferences > Key Bindings - Userに移動するか、他の OS で同様の操作を行います。
ここに私のコードがあります:
[
{"keys": ["enter"], "command": "insert", "args" : {"characters": "\n * "}, "context": [
{"key": "selection_empty", "operator": "equal", "operand": true},
{"key": "preceding_text", "operator": "regex_contains", "operand": "\\/\\*\\*$", "match_all": true}
]},
{"keys": ["enter"], "command": "insert", "args" : {"characters": "\n* "}, "context": [
//{"key": "selection_empty", "operator": "equal", "operand": true},
{"key": "preceding_text", "operator": "regex_contains", "operand": "^[\t ]*\\*[^\\/]", "match_all": true}
]}
]