-
Notifications
You must be signed in to change notification settings - Fork 351
Sublime Text 3
DProBoy edited this page Jun 5, 2018
·
1 revision
You can also use Sublime Text 3 as your code editor , Just make sure to install the following Packages :
- Babel: For Javascript usage in Sublime Text 3
- Microsoft Typescript : Used for autocompletion
After installing the packages mentioned above , You can start coding :
- Open the scripts folder in Sublime Text 3 (either via toolbar , or dragging it)
- Place your bootstrap.js file in your scripts folder if you haven't done that before (you can just copy the contents and create a new script)
- Create a script with the extension ".js"
- Open your Command Pallet (Ctrl + Shift + P) , and while your script is open , Type in in the command pallet : Set Syntax Typescript (This would enable Autocompletion for that specific file)
- Paste in the top of that file , the following :
/// <reference path="typings/ue.d.ts">/>
Now you can code in Sublime Text 3 and use Autocompletion ! NOTE : Autocompletion here is Context Insensitive , But you can go through those typescript typings to learn more. TODO : Video explaining steps