Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Toggle comments with Command-/ (taken from C Bundle) #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Toggle comments with Command-/ (taken from C Bundle) #4

wants to merge 1 commit into from

Conversation

nathany
Copy link

@nathany nathany commented Aug 19, 2015

For some reason the settings file is in a binary format (TextMate version 2.0-beta.7.4). There must be a way to use text instead.

{   shellVariables = (
        {   name = 'TM_COMMENT_START';
            value = '// ';
        },
        {   name = 'TM_COMMENT_START_2';
            value = '////';
        },
        {   name = 'TM_COMMENT_END_2';
            value = '////';
        },
        {   name = 'TM_COMMENT_DISABLE_INDENT_2';
            value = 'yes';
        },
    );
}

I don't know what TM_COMMENT_DISABLE_INDENT_2 does.

```
{	shellVariables = (
		{	name = 'TM_COMMENT_START';
			value = '// ';
		},
		{	name = 'TM_COMMENT_START_2';
			value = '////';
		},
		{	name = 'TM_COMMENT_END_2';
			value = '////';
		},
		{	name = 'TM_COMMENT_DISABLE_INDENT_2';
			value = 'yes';
		},
	);
}
```
@mattneub
Copy link
Owner

This is a great idea. Let me try it out.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants