minor problem with actionscript code formatting
object = new Object();
Alt+Enter -> "Create variable object" creates the following lines
var object:Object;
object = new Object();
==========================
Is it possible to get one line???
var object:Object = new Object();
Thanks!
请先登录再写评论。
Type only following:
and invoke 'Introduce variable' refactoring (Ctrl+Alt+V on Windows). You'll get
with 'live' variable name. Press Enter or Esc to accept suggested variable name or just type other name.
Alexander, thanks a lot, it works.