condemil / gist

Sublime Text plugin for creating new Gists from selected text
MIT License
725 stars 136 forks source link

"include_orgs": set to false and orgs still appear in gist listings #85

Closed xiaogwu closed 11 years ago

xiaogwu commented 11 years ago

In Gist.sublime-settings

I have set my "include_orgs": to false but when I open the gists associated with my account I still see the organization that I also belong to as the first item in the list of Gists.

// Show GitHub organizations "include_orgs": false, // "include_orgs": ["company1", "company2"],

shapov commented 11 years ago

Instead of setting it to false, you need to set it to an empty array.

Use this:

"include_orgs": [],
xiaogwu commented 11 years ago

Thanks.