我可以将iex命令别名保存在.iex.exs文件中吗?

发布于 2025-01-20 02:44:16 字数 112 浏览 0 评论 0 原文

在IEX中,我想使用 #IEX:break 突破一个块,但我发现这很烦人。可以别名吗?最好是,我可以将其保存在用户的 .iex.exs 文件中,以备将来使用。

In iex, I'd like to break out of a block using #iex:break, but I find that annoying to type. Can it be aliased? Preferably, I'd be able to save this in my user's .iex.exs file for future use.

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

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

发布评论

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

评论(1

等数载,海棠开 2025-01-27 02:44:16

可以在源代码中看到, #iex:break iex.ex.evaluator 中进行了硬编码,因此无法被替换也不能被替换。

这可能是因为较短的 breaker elixir 代码。

唯一的可能性是修补 iex.ex.ex.evaluator 代码和编译 Elixir 您自己。

As can be seen in the source code, #iex:break is hardcoded in IEx.Evaluator and therefore cannot be neither substituted nor aliased.

That is probably because the shorter breaker would have many false positives in the code.

The only possibility would be to patch IEx.Evaluator code and compile yourself.

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