使用 Komodo Edit 提高 Rails .erb 代码智能?

发布于 2025-01-05 05:27:21 字数 202 浏览 1 评论 0原文

Komodo Edit (6.1) 在很大程度上是用于编辑 Ruby on Rails 代码的一种享受。然而,当涉及到 .erb 文件时,它就缺乏了。似乎完全没有代码智能或完成 <% %> 。或<%=%>。我知道 Komodo 的 Ruby on Rails 扩展,但不幸的是它已经过时了。有谁知道如何让 Komodo Edit 在处理 .erb 文件时变得更智能?

Komodo Edit (6.1) is, for the most part, a treat to use for editing Ruby on Rails code. However, it is lacking when it comes to .erb files. There appears to be absolutely no code intelligence or completion for <% %> or <%= %>. I know about the Ruby on Rails extension for Komodo, but unfortunately it is out of date. Does anyone know of how I can make Komodo Edit a bit smarter when it comes to .erb files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2025-01-12 05:27:21

Ruby 代码完成的一般问题是目前 Komodo 不支持
为块参数分配类型。例如,如果您在“<%”之后键入“for”
您应该会看到以“for”开头的术语列表。假设您选择
“form_for”,最后输入

<% form_for(@item) do |f| %>

<%= f.[|]

其中“[|]”标记光标位置。

此时 Komodo(仍然)没有类型
变量 f,因此它不提供任何属性或方法
“.”后的名称

The problem with Ruby code-completion in general is that currently Komodo doesn't
assign a type to block parameters. So for example, if you type "for" after "<%"
you should see a list of terms that start with "for". Suppose you select
"form_for", and end up typing

<% form_for(@item) do |f| %>

<%= f.[|]

where "[|]" marks the cursor location.

At this point Komodo (still) doesn't have a type for
variable f, so it doesn't offer any property or method
names after the "."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文