|
1 | 1 | # -*- encoding: utf-8 -*- |
2 | | -import sublime |
3 | | -import sublime_plugin |
4 | 2 | import os |
5 | | - |
6 | 3 | import imp |
7 | 4 | import sys |
8 | 5 |
|
9 | | -from .sublimefunctions import * |
10 | | -from .FMcommands.copy import FmCopyCommand |
11 | | -from .FMcommands.create import FmCreaterCommand, FmCreateCommand |
12 | | -from .FMcommands.create_from_selection import FmCreateFileFromSelectionCommand |
13 | | -from .FMcommands.delete import FmDeleteCommand |
14 | | -from .FMcommands.duplicate import FmDuplicateCommand |
15 | | -from .FMcommands.editto import FmEditToTheLeftCommand, FmEditToTheRightCommand |
16 | | -from .FMcommands.find_in_files import FmFindInFilesCommand |
17 | | -from .FMcommands.move import FmMoveCommand |
18 | | -from .FMcommands.open_in_explorer import FmOpenInExplorerCommand |
19 | | -from .FMcommands.open_in_browser import FmOpenInBrowserCommand |
20 | | -from .FMcommands.open_terminal import FmOpenTerminalCommand |
21 | | -from .FMcommands.rename import FmRenameCommand |
22 | | -from .FMcommands.open_all import FmOpenAllCommand |
| 6 | +import sublime |
| 7 | +import sublime_plugin |
| 8 | + |
| 9 | +from .libs.sublimefunctions import * |
| 10 | +from .commands.copy import FmCopyCommand |
| 11 | +from .commands.create import FmCreaterCommand, FmCreateCommand |
| 12 | +from .commands.create_from_selection import FmCreateFileFromSelectionCommand |
| 13 | +from .commands.delete import FmDeleteCommand |
| 14 | +from .commands.duplicate import FmDuplicateCommand |
| 15 | +from .commands.editto import FmEditToTheLeftCommand, FmEditToTheRightCommand |
| 16 | +from .commands.find_in_files import FmFindInFilesCommand |
| 17 | +from .commands.move import FmMoveCommand |
| 18 | +from .commands.open_all import FmOpenAllCommand |
| 19 | +from .commands.open_in_browser import FmOpenInBrowserCommand |
| 20 | +from .commands.open_in_explorer import FmOpenInExplorerCommand |
| 21 | +from .commands.open_terminal import FmOpenTerminalCommand |
| 22 | +from .commands.rename import FmRenameCommand |
23 | 23 |
|
24 | 24 | BASE_NAME = os.path.dirname(__file__) |
25 | 25 |
|
|
0 commit comments