We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb2bd2b commit 73ad408Copy full SHA for 73ad408
1 file changed
plugin/utils/FileBufferData.py
@@ -161,11 +161,11 @@ def _load_headers(self):
161
key = '{}@{}'.format(username, hostname)
162
settings = sublime.load_settings(g_CLARA_SETTINGS)
163
headers = settings.get(key)
164
- global _loaded_headers_atleast_once
+ global g_loaded_headers_atleast_once
165
if headers is not None:
166
return headers
167
- elif not _loaded_headers_atleast_once:
168
- _loaded_headers_atleast_once = True
+ elif not g_loaded_headers_atleast_once:
+ g_loaded_headers_atleast_once = True
169
if sublime.ok_cancel_dialog('You do not yet have headers set up. '
170
'Do you want to generate them now?'):
171
sublime.run_command('generate_system_headers')
0 commit comments