如何让 Notepad++ 在 Ruby 中使用“end”字自动完成?

如何让 Notepad++ 在 Ruby 中使用“end”字自动完成?

是否可以设置 Notepad++end在我打印class指令后自动放置:

class MyClass  // right after I print the first whitespace after 'class' instruction...
end  // ...NP++ automatically puts 'end' on the next line OR on the same line (let it be as an option)

指令词也是一样def

def method // a whitespace after 'def'...
end  // ...'end' immediatly appears on the next or on the same line

还有其他用 C 编写的编辑器可以end为 Ruby 提供自动完成功能吗?

答案1

虽然我没有在 Notepad++ 中发现任何东西,但也许你可能想看看带有 Aptana 插件的 Eclipse(我已经验证它为类和方法添加了“结束”)。

相关内容