コード例 #1
0
ファイル: actions.py プロジェクト: SlashRoot/ninja-ide
 def editor_replace_tabs_with_spaces(self):
     """Replace the Tabs with Spaces in the current editor."""
     editorWidget = self.ide.mainContainer.get_actual_editor()
     if editorWidget:
         helpers.replace_tabs_with_spaces(editorWidget)
コード例 #2
0
ファイル: __main_container.py プロジェクト: cnmade/ninja-ide
 def editor_replace_tabs_with_spaces(self):
     """Replace the Tabs with Spaces in the current editor."""
     editorWidget = self.get_current_editor()
     if editorWidget:
         helpers.replace_tabs_with_spaces(editorWidget)
コード例 #3
0
ファイル: main_container.py プロジェクト: pdorrell/ninja-ide
 def editor_replace_tabs_with_spaces(self):
     """Replace the Tabs with Spaces in the current editor."""
     editorWidget = self.get_current_editor()
     if editorWidget:
         helpers.replace_tabs_with_spaces(editorWidget)
コード例 #4
0
 def editor_replace_tabs_with_spaces(self):
     """Replace the Tabs with Spaces in the current editor."""
     editorWidget = self.ide.mainContainer.get_actual_editor()
     if editorWidget:
         helpers.replace_tabs_with_spaces(editorWidget)
コード例 #5
0
ファイル: actions.py プロジェクト: sanyaade/ninja-ide
 def editor_replace_tabs_with_spaces(self):
     editorWidget = self.ide.mainContainer.get_actual_editor()
     if editorWidget:
         helpers.replace_tabs_with_spaces(editorWidget)
コード例 #6
0
 def editor_replace_tabs_with_spaces(self):
     editorWidget = self.ide.mainContainer.get_actual_editor()
     if editorWidget:
         helpers.replace_tabs_with_spaces(editorWidget)