Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions prevent_default.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sublime_plugin
from Default.side_bar import RenamePathCommand
from Default.side_bar import RenamePathCommand as DefaultRenamePathCommand


class NewFileAtCommand(sublime_plugin.WindowCommand):
Expand Down Expand Up @@ -34,7 +34,7 @@ def is_enabled(self):
return False


class RenamePathCommand(RenamePathCommand):
class RenamePathCommand(DefaultRenamePathCommand):
def is_visible(self):
return False

Expand All @@ -47,6 +47,14 @@ def is_enabled(self):
return False


class OpenFolderCommand(sublime_plugin.WindowCommand):
def is_visible(self):
return False

def is_enabled(self):
return False


class OpenContainingFolderCommand(sublime_plugin.WindowCommand):
def is_visible(self):
return False
Expand Down