在典型的智能手机上与 SSH 一起使用的优秀 Unix 编辑器是什么?
我是一名 emacs 用户,正在考虑购买智能手机。我注意到很多手机键盘没有扩展键盘键(我的意思是像 ctr 和 esc 这样)。如果您必须通过 ssh 连接到服务器并进行紧急修复,那么智能手机用户会使用什么编辑器?我认为 VI 将是一个不错的选择,因为您大多只需要“esc”,并且您可能可以将其他内容映射到它。
我不打算开始通过电话进行所有开发,但当它是唯一选择时,我需要一个好的编辑器。
请提出建议!
I'm an emacs user considering getting a smartphone. I notice that a lot of the phone keyboards don't have extended keyboard keys (I mean thinks like ctr and esc). What editors do you smartphone people use if you have to connect to the server by ssh and do an emergency repair? I was thinking VI would be a good choice since you mostly just need "esc" and you might be able to map something else to it.
I'm not looking to start doing all my development over the phone, but I need a good editor for those times when it's the only option.
Suggestions please!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果您真的很硬核,您可以学习如何使用
ex
,它是 vi 的非可视化版本。您甚至不需要任何转义键或控制键即可进行编辑。您不必依赖终端仿真器来正确模拟终端。您可以附加文本或使用s///
更改行内的文本。例如:
If you're really hardcore, you can learn how to use
ex
, which is a non-visual version of vi. You do not even need any escape or control keys to edit. You don't have to rely on your terminal emulator emulating a terminal correctly. You can append text or uses///
to change text within lines.For example: