Sublime Forum

How to add third-party Python libraries in Sublime console

#1

How to add third-party Python libraries in Sublime consoleimage I want to develop a drop-down box that supports multiple selection show_quick_panel Method can only support one option

0 Likes

#2

tkinter is not included for plugins. What are you trying to do?

0 Likes

#3

Hello, I want to develop a drop-down box that supports multiple selection,Currently the “show_quick_panel” method only supports one option

0 Likes

#4

Hello, I want to develop a drop-down box that supports multiple selection,Currently the “show_quick_panel” method only supports one option

0 Likes

#5

have you considering using a ListInputHandler, like Sublime Merge does when staging etc?

0 Likes

#6

Thank you, I now use “show_quick_panel”, combined with recursion to achieve multiple selection of the drop-down box. I will try your suggestions!

0 Likes