Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 658 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 658 Bytes

CommentFold

A Sublime Text plugin to give an overview of your file's structure by folding all other code but comments.

Comment Fold Preview

Default key binding

Use "ctrl+alt+/" to fold all other code and see your comments only for an overview of you file's structure. Use "shift+ctrl+alt+/" to unfold all your code and get back to the normal view.

Feel free to override these in Sublime Text -> Preferences -> Key Bindings by adding the following lines and change as preferred:

{
    "keys": ["ctrl+alt+/"],
    "command": "comment_fold"
	},
{
    "keys": ["shift+ctrl+alt+/"],
    "command": "comment_unfold"
	}