本文整理汇总了Python中sidebar.SideBarItem.SideBarItem类的典型用法代码示例。如果您正苦于以下问题:Python SideBarItem类的具体用法?Python SideBarItem怎么用?Python SideBarItem使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SideBarItem类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: on_done
def on_done(self, old, new):
print 'on done'
if s.get('close_affected_buffers_when_deleting_even_if_dirty', False):
item = SideBarItem(new, os.path.isdir(new))
item.close_associated_buffers()
print 'closed associated buffers'
self.remove(new)
SideBarProject().refresh();
示例2: on_done
def on_done(self, old, new):
item = SideBarItem(old, os.path.isdir(old))
try:
if not item.move(new):
sublime.error_message("Unable to move, destination exists.")
self.run([old], new)
return
except:
sublime.error_message("Unable to move:\n\n"+old+"\n\nto\n\n"+new)
self.run([old], new)
return
SideBarProject().refresh();
示例3: on_done
def on_done(self, paths, relative_to_project, name):
if relative_to_project and s.get('new_files_relative_to_project_root'):
paths = SideBarProject().getDirectories()
if paths:
paths = [SideBarItem(paths[0], False)]
if not paths:
paths = SideBarSelection(paths).getSelectedDirectoriesOrDirnames()
else:
paths = SideBarSelection(paths).getSelectedDirectoriesOrDirnames()
if not paths:
paths = SideBarProject().getDirectories()
if paths:
paths = [SideBarItem(paths[0], False)]
if not paths:
sublime.active_window().new_file()
else:
for item in paths:
item = SideBarItem(item.join(name), False)
if item.exists():
sublime.error_message("Unable to create file, file or folder exists.")
self.run(paths, name)
return
else:
try:
item.create()
item.edit()
except:
sublime.error_message("Unable to create file:\n\n"+item.path())
self.run(paths, name)
return
SideBarProject().refresh();
示例4: run
def run(self, paths = []):
item = SideBarItem(os.path.join(sublime.packages_path(), 'User', 'SideBarEnhancements', 'Open With', 'Side Bar.sublime-menu'), False)
if not item.exists():
item.create()
item.write("""[
{"id": "side-bar-files-open-with",
"children":
[
//application 1
{
"caption": "Photoshop",
"id": "side-bar-files-open-with-photoshop",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Adobe Photoshop CS5.app", // OSX
"extensions":"psd|png|jpg|jpeg" //any file with these extensions
}
},
{"caption":"-"}
]
}
]""");
item.edit()
示例5: run
def run(self, paths = []):
item = SideBarItem(os.path.join(sublime.packages_path(), 'User', 'SideBarEnhancements', 'Open With', 'Side Bar.sublime-menu'), False)
if not item.exists():
item.create()
item.write("""[
{"id": "side-bar-files-open-with",
"children":
[
//application 1
{
"caption": "Photoshop",
"id": "side-bar-files-open-with-photoshop",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Adobe Photoshop CS5.app", // OSX
"extensions":"psd|png|jpg|jpeg" //any file with these extensions
}
},
//separator
{"caption":"-"},
//application 2
{
"caption": "SeaMonkey",
"id": "side-bar-files-open-with-seamonkey",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\\\Archivos de programa\\\\SeaMonkey\\\\seamonkey.exe", // WINNT
"extensions":"" //open all even folders
}
},
//application n
{
"caption": "Chrome",
"id": "side-bar-files-open-with-chrome",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\\\Documents and Settings\\\\tito\\\\Configuración local\\\\Datos de programa\\\\Google\\\\Chrome\\\\Application\\\\chrome.exe",
"extensions":".*" //any file with extension
}
},
{"caption":"-"}
]
}
]""");
item.edit()
示例6: on_done
def on_done(self, old, new):
item = SideBarItem(old, os.path.isdir(old))
try:
if not item.copy(new):
sublime.error_message("Unable to duplicate, destination exists.")
self.run([old], new)
return
except:
sublime.error_message("Unable to copy:\n\n"+old+"\n\nto\n\n"+new)
self.run([old], new)
return
item = SideBarItem(new, os.path.isdir(new))
if item.isFile():
item.edit();
SideBarProject().refresh();
示例7: on_done
def on_done(self, paths, name):
for folder_item in SideBarSelection(paths).getSelectedDirectoriesOrDirnames():
folder_item = SideBarItem(folder_item.join(name), True)
if folder_item.exists():
sublime.error_message("Unable to create folder, folder or file exists.")
self.run(paths, name)
return
else:
try:
folder_item.create()
init_item = SideBarItem(folder_item.join('__init__.py'), False)
init_item.create()
except:
sublime.error_message("Unable to create file:\n\n" + init_item.path())
self.run(paths, name)
return
if not folder_item.exists():
sublime.error_message("Unable to create folder:\n\n" + folder_item.path())
self.run(paths, name)
return
SideBarProject().refresh()