IntelliJ:如何强制编辑器将文件视为 javascript?
我正在 IntelliJ 10 中创建一个 Grails 应用程序,并有一个动态创建的 javascript 文件,作为 Grails 视图。
因此,javascript 文件不会以“.js”结尾。它以“.gsp”结尾,因为它是一个输出 javascript 的 Groovy 服务器页面。
IntelliJ 不知道它是一个 javascript 文件,因此它不会给我代码完成或警告。
我希望我的代码完整并进行语法检查!有没有办法强制 IntelliJ 将此特定文件视为 Javascript,而不会扰乱 IntelliJ 对其他地方的 .gsp 文件的正确处理?
谢谢!
I'm creating a Grails app in IntelliJ 10 and have a javascript file that is created dynamically, as a Grails view.
For that reason the javascript file doesn't end in '.js'. It ends in '.gsp' because it's a Groovy Server Page that spits out javascript.
IntelliJ doesn't know it's a javascript file so it doesn't give me code completion or warnings.
I want my code complete and syntax checking! Is there a way to force IntelliJ to treat this specific file as Javascript, WITHOUT messing up the IntelliJ's correct treatment of .gsp files everywhere else?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面的答案有点过时了。您可以通过执行以下操作在 IntelliJ 14 中执行相同的操作:
Preferences
(Mac OSX:Cmd + Comma)Editor -> 下文件类型
识别的文件类型
中突出显示JavaScript 文件 (JavaScript)
注册模式
下按+
> 按钮*.js.scala.html
)并按 OK干杯!
The above answer is slightly outdated. You can do the same in IntelliJ 14 by doing the following:
Preferences
(Mac OSX : Cmd + Comma)Editor -> File Types
Recognized File Types
HighlightJavaScript files (JavaScript)
Registered Patterns
press the+
button*.js.scala.html
) and press OKCheers!
您可以在
设置
(Mac 上为首选项
)中向JavaScript 添加其他扩展。文件类型
。另请参阅
设置
|模板数据语言
,您可以将项目中的某些文件配置为生成指定语言的模板,以获得正确的代码完成。You can add additional extensions to the JavaScript in
Settings
(Preferences
on Mac) |File Types
.See also
Settings
|Template Data Languages
where you can configure certain files in the project as templates producing specified language to get proper code completion.