是否可以在 RubyMine 实时模板中链接预定义函数?

Is it possible to chain predefined functions in RubyMine live templates?

我希望能够链接实时模板预定义函数,以便一个函数的输出可以用作另一个函数的输入,如下所示:

underscoresToSpaces(fileNameWithoutExtension())

我有一个(也许是错误的)记忆,以前能够做到这一点,但无法让它再次工作。

我正在使用 RubyMine 8.0.3。

在 RubyMine 实时模板中链接预定义函数对我来说非常简单。在 Preferences → Editor → Live Templates

中定义此实时模板

并在编辑器中键入 fws 插入不带空格的文件名。

当前的 RubyMine(我也在使用 8.0.3)有通过在输入表达式后单击确定来解决它。