Skip to content

Commit ffa8c84

Browse files
committed
devListener: update to work with new structure
Should probably use a real package to reload packages rather my own custom solution.
1 parent 492cf24 commit ffa8c84

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

FileManager.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .commands.open_in_browser import FmOpenInBrowserCommand
2020
from .commands.open_in_explorer import FmOpenInExplorerCommand
2121
from .commands.open_terminal import FmOpenTerminalCommand
22-
from .commands.rename import FmRenameCommand
22+
from .commands.rename import FmRenameCommand, FmRenamePathCommand
2323

2424
BASE_NAME = os.path.dirname(__file__)
2525

@@ -69,12 +69,7 @@ def on_post_save(self, view):
6969
):
7070
return
7171
sublime.run_command(
72-
"reload_plugin",
73-
{
74-
"main": __file__,
75-
"folders": ["FMcommands"],
76-
"scripts": ["input_for_path", "sublimefunctions", "pathhelper"],
77-
},
72+
"reload_plugin", {"main": __file__, "folders": ["commands", "libs"],},
7873
)
7974

8075

0 commit comments

Comments
 (0)