File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed
Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11from . import add
22from . import check_migrate
3- from . import copy
43from . import default
54from . import list
65from . import migrate
7- from . import open
86from . import rename
97from . import rm
108from . import show
1311commands = [
1412 add ,
1513 check_migrate ,
16- copy ,
1714 default ,
1815 list ,
1916 migrate ,
20- open ,
2117 rename ,
2218 rm ,
2319 show ,
Original file line number Diff line number Diff line change 11import webbrowser
22from ..gotomagic .utils import is_file
33from ..gotomagic .text import GotoWarning , GotoError
4- from . import open
4+ from .. plugins import open
55
66
77def help ():
Original file line number Diff line number Diff line change 11name = 'plugins'
22
3+ from . import copy
34from . import intellij
5+ from . import open
46from . import subl
57from . import vscode
68
79plugins = [
10+ copy ,
811 intellij ,
12+ open ,
913 subl ,
1014 vscode
1115]
File renamed without changes.
Original file line number Diff line number Diff line change 77
88
99def help ():
10- return "{0:10 }{1}" .format ('idea' , 'Opens IntelliJ in code folder' )
10+ return "{0:40 }{1}" .format ('idea' , 'Opens IntelliJ in code folder' )
1111
1212
1313def names ():
File renamed without changes.
Original file line number Diff line number Diff line change 66
77
88def help ():
9- return "{0:10 }{1}" .format ('subl' , 'Opens Sublime Text in code folder' )
9+ return "{0:40 }{1}" .format ('subl' , 'Opens Sublime Text in code folder' )
1010
1111
1212def names ():
Original file line number Diff line number Diff line change 66
77
88def help ():
9- return "{0:10 }{1}" .format ('vscode' , 'Opens Visual Studio Code in code folder' )
9+ return "{0:40 }{1}" .format ('vscode' , 'Opens Visual Studio Code in code folder' )
1010
1111
1212def names ():
You can’t perform that action at this time.
0 commit comments