You can find it in Edit>>Line>>Reindent, but it does not have a shortcut by default. You can add a shortcut by going to the menu Preferences - Keybindings-User, then add there (the config file takes as a JSON format): [ { "keys": ["f12"], "command": "reindent"} ] (example of using the F12 key for that functionality) … Continue reading Sublime Text reindent, autoindent, and autocomplete
Sublime Text
How to make a custom build version (e.g., Ruby, Python, etc.) in Sublime Text 3
It looks like Sublime Text 3 uses OSX-default version of Ruby in build mode. I would like to change the version, since I'm using a newer one. I found some answers for privious version of sublime: How to edit a native build system in Sublime Text 2? Setting and changing build systems in Sublime Text … Continue reading How to make a custom build version (e.g., Ruby, Python, etc.) in Sublime Text 3
How to edit Sublime Text build settings?
I want to enable -std=gnu++11 in Sublime Text 3's C++ Single File build on Ubuntu 12.04. I have already upgraded the tool chain to the latest g++ and do not want to see the following error on every build: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This … Continue reading How to edit Sublime Text build settings?