答えて

2

、コマンド定義とSide Bar.sublime-menuファイルを作成します。

[ 
    { "caption": "Side Bar Test Dirs", "command": "side_bar_test_dirs", "args": {"dirs": []} }, 
    { "caption": "Side Bar Test Paths", "command": "side_bar_test_paths", "args": {"paths": []} }, 
    { "caption": "Side Bar test Files", "command": "side_bar_test_files", "args": {"files": []} }, 
] 

をそしてコマンド:

import sublime 
import sublime_plugin 

class SideBarTestDirsCommand(sublime_plugin.WindowCommand): 
    def run(self, dirs): 
     print(dirs) 

class SideBarTestPathsCommand(sublime_plugin.WindowCommand): 
    def run(self, paths): 
     print(paths) 

class SideBarTestFilesCommand(sublime_plugin.WindowCommand): 
    def run(self, files): 
     print(files) 

Sublime Text Unofficial Documentaionで、より詳細なドキュメントがあります。

関連する問題