How to autocomplete HTML tags in Sublime Text 3?

Yeah you can try Auto Close. This will fullfill your requirement. If you don’t know how to install package. You can follow following steps. First open package manager ctrl+shift+p Search and select Add Repository. Then paste the github link. After that again open package manager. Search and select Install Package. Search and select Auto Close Then your … Read more

Autoindent on Sublime Text

That’s quite simple in Sublime. Just Ctrl+Shift+P (or Command+Shift+P on MacOS) to open the tools pallet, type reindent, and pick Indentation: Reindent Lines. It should reindent all the file you are in, just remember to save before running the command, or it may not appear.

Unregistered Sublime Text

Sublime Text is fully functional in it’s unregistered evaluation mode with the exception that: It reminds you every few saves to purchase it if you’re going to use it for an extended purpose (i.e. it’s not free to use forever, despite what many web pages and users claim) You cannot turn off update checks at … Read more

Anyone know how to solve the error of “collect2.exe: error: ld returned 1 exit status” when a program in C is running?

Overall, your problem is that you’re trying to run a program that is interactive from within Sublime; it doesn’t support that. Sublime captures output your program sends to stdout and stderr and displays it in the output panel, but it does’t connect the panel to stdin. So, the scenario you’re encountering works like this: You run your program, which is … Read more

What is the default font of Sublime Text?

On Linux it’s Monospace 10 pt. (the exact monospace font used may vary on different Linux distributions or versions), on Windows it’s Consolas 10 pt., and on OS X it’s Menlo Regular 12 pt. (The color scheme is Neon, the syntax highlighting is from PackageDev, and the font is Liberation Mono This information is found in the Packages/Default directory (where Packages is the directory opened by the Preferences → … Read more