Reputation: 737
I have installed Bootstrap 3 Snippets
plugin in Sublime Text 3 to use it when working with Bootstrap as this guy:
https://www.youtube.com/watch?v=VWp6J7Q59KE
but I do not know how to open the completion popup.
How can I show the completion popup in Sublime Text 3, as in the Screen shot, to select Snippat-bs3-html5-template
?
Upvotes: 1
Views: 6433
Reputation: 12882
By default, Sublime Text doesn't show the completion popup when working in the text
scope. There are several ways to you can trigger your snippets:
Show on demand: After typing the "bs3-" prefix for the snippets, you can force the popup to show by pressing Ctrl+Space. Press Tab or Enter to insert the snippet.
Automatically show: Add text.html
to auto_complete_selector
in your user settings and the popup will always show if there's a match, e.g. after typing the "bs3-html" prefix. Press Tab or Enter to insert the snippet.
Use the command palette: It requires some extra-keystrokes, but you can also trigger all snippets from the command palette. Open the command palette (Ctrl+Shift+P) and type "bs3-html" and hit Enter
Upvotes: 1