Flash Builder / Flex:使自动完成像 Flash Develop 一样工作(字符串模式)
是否有某种方法可以使 Flash Builder / Flex 的自动完成行为与 Flash Develop 在您键入的 var/method/property 中获取模式的智能方式(即使不完全相同)类似?
例如,当前 Flash Builder 和 Flex 要求您逐个字符地键入要使用的类名、属性或方法:
/*
still won't read your mind whether you're looking for URLRequest or URLLoader at
this point, might even be an UncaughtError perhaps?
*/
var myURL:U... [???]
但在 FlashDevelop 方式中,您可以键入一部分,但它仍然可以让您了解所要使用的内容。正在尝试完成并过滤自动完成列表以仅显示最相关的项目:
/*
Hurray! Only had to type "UReq" and it automatically picks it up as we expected.
*/
var myURL:UReq... [URLRequest]
var myURL2:Req... [URLRequest, maybe some other classes...]
var myURL3:quest... [URLRequest, and maybe some other 'quest' matches...]
Flash Builder、Flex 或 Eclipse 中是否有任何插件可以通过这种方式扩展自动完成功能?
谢谢!
Is there some way to make the Auto-Completion of Flash Builder / Flex behave similarly, if not exactly the same, as Flash Develop's smart way of picking up the patterns in the var/method/property that you type?
For instance, currently Flash Builder and Flex requires you to type character-for-character the class name, property or method that you want to use:
/*
still won't read your mind whether you're looking for URLRequest or URLLoader at
this point, might even be an UncaughtError perhaps?
*/
var myURL:U... [???]
But the FlashDevelop way, you could type a portion and it would still make some sense of what you're attempting to complete and filters the auto-complete list to show only the most relevant items:
/*
Hurray! Only had to type "UReq" and it automatically picks it up as we expected.
*/
var myURL:UReq... [URLRequest]
var myURL2:Req... [URLRequest, maybe some other classes...]
var myURL3:quest... [URLRequest, and maybe some other 'quest' matches...]
Is there any plugins available in Flash Builder, Flex or Eclipse to extend the Auto-Completion functionality this way?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,Flash Builder 仍然缺少很多功能。如果您需要其他 IDE,您可能需要考虑 FDT 或 IntelliJ。或者你也可以看看SourceMate,一个非常好的Flash Builder插件,可以添加你需要的FB没有的功能不给你:)
Yeah, still a lot of features lacking in Flash Builder. You might want to look at FDT or IntelliJ if you want another IDE. Or you can also look at SourceMate, a very good Flash Builder plugin to add the features you need that FB doesn't give you :)