Develop prompt view in sublime text 3
suoyong
#2
I wanna to develop a prompt view like above. which method and class should I use. thanks advance
0 Likes
kingkeith
#3
using information from your question here: http://stackoverflow.com/questions/40305121/how-to-develop-sublime-text-3-plugins-that-use-for-popup-prompt-for-user
it looks like you basically want this with some tweaks to the prefix and competions:
Basically, you need to use the on_query_completions
method of an EventListener
class instance. Then you can check whether the prefix is h
, and if so, show hello
and Hello
.
1 Like
suoyong
#4
that much more appreciated with you apply. I already link this to my stackoverflow. thanks~
0 Likes