예제 #1
0
 def active_sheet_in_group(self, group):
     sheet_id = sublime_api.window_active_sheet_in_group(
         self.window_id, group)
     if sheet_id == 0:
         return None
     else:
         return Sheet(sheet_id)
예제 #2
0
 def active_sheet_in_group(self, group):
     sheet_id = sublime_api.window_active_sheet_in_group(self.window_id, group)
     if sheet_id == 0:
         return None
     else:
         return Sheet(sheet_id)