Search code examples
titaniumkeyboard-shortcutsappcelerator

Keyboard shortcuts for Titanium IDE in MAC


I'm new to appcelerator titanium IDE, previously I was working on Xcode.

In xcode I'm relied on the keyboard shortcuts for saving my coding time.

Now I'm struggling with titanium, because I don't know any keyboard shortcuts in titanium IDE. In Xcode commenting a block of code (cmd+\), shifting them to left(cmd+}) or right(cmd+{) was very easy. In titanium now I'm manually doing it for each line of code !

Can anybody help me to find the shortcuts for titanium IDE in MAC ?

If this is not the right place to ask this question. please pardon me


Solution

  • Midhun, Titanium IDE is just same as Eclipse IDE and simple. I've given some important shortcuts below

    • cmd + / for commenting a block of code
    • tab for moving a block of statement to right
    • shift + tab for move a block of code to left
    • cmd + shift + F11 for run your project
    • cmd + F11 for debug your project
    • cmd + shift + B for toggle breakpoint
    • cmd + F Find and Replace

    You can use this link to modify your keyboard shortcuts for Titanium Studio in windows and in editor window, you can press Shift + Cmd + L to see all available shortcuts. Comment, uncomment and toggle comment are there. It tells all the shortcut for titanium studio

    Happy programming:)