Sublime Forum

Special ident

#1

Hello sublime text rocks !!! …thanks for this great editor
i can’t find on the web or here in the forum
how i can make this indentation:

<?php
   $sublimeText = true;
   $textMate = false;
   $notePadPlusPlus = false;
   $eclipse = false;
<?

And with some combination of keyboard keys, convert to:

<?php
   $sublimeText     = true;
   $textMate        = false;
   $notePadPlusPlus = false;
   $eclipse         = false;
<?

Thanks, bye

0 Likes

#2

one of the packages available does this - http://wbond.net/sublime_packages/alignment

0 Likes

#3

Thanks …works great, the key word was “Aligment”

0 Likes