如何暂时退出vim并返回

如何暂时退出vim并返回我怎么能退出Vim,而不是:q,然后回去继续编辑?

大家好,又见面了,我是你们的朋友全栈君。

本文翻译自:How to temporarily exit vim and go back

我怎么能退出Vim,而不是:q,然后回去继续编辑?


#1楼

参考:https://stackoom.com/question/7SRZ/如何暂时退出vim并返回


#2楼

You can switch to shell mode temporarily by: 您可以通过以下方式暂时切换到shell模式:

:! <command>

such as

:! ls

#3楼

If you are on a unix system, ctrl-Z will suspend vim and give you a shell. 如果你在unix系统上, ctrl-Z将暂停vim并给你一个shell。 Type fg to go back. 输入fg返回。 Note that vim creates a swap file while editing, and suspending vim wouldn’t delete that file (you aren’t exiting vim after all). 请注意, vim在编辑时会创建一个交换文件,暂停vim不会删除该文件(毕竟你不会退出vim)。 On dumb terminals, this method was pretty standard for edit-compile-edit cycles using vi . 在哑终端上,这种方法对于使用vi编辑 – 编译 – 编辑循环来说是非常标准的。 I just found out that for me, gvim minimizes on typing ctrl-Z . 我刚刚发现,对我来说, gvim最小化输入ctrl-Z


#4楼

Assuming terminal vim on a flavor of *nix: 假设终端vim的风格为* nix:

To suspend your running vim 暂停正在运行的vim

Ctrl + Z Ctrl + Z.

will suspend the process and get back to your shell 将暂停该过程并返回到您的shell

fg

will resume (bring to f ore g round) your suspended vim 将恢复(带至f矿石轮)暂停的VIM

To start a new shell 开始一个新的shell

start a subshell using: 使用以下命令启动子shell:

:sh

(as configured by) (由配置)

:set shell?

or 要么

:!bash

followed by: 其次是:

Ctrl + D (or exit , but why type so much?) Ctrl + D (或exit ,但为什么键入这么多?)

to kill the shell and return to vim 杀死shell并返回vim


#5楼

There are several ways to exit vim and have every thing the same when you return. 有几种方法可以退出vim,并在返回时让每件事情都相同。 There is very good documentation within vim itself explaining the various ways this can be done. 在vim中有非常好的文档,解释了可以这样做的各种方法。 You can use the following command within vim to access the relevant help page: :help usr_21 您可以在vim中使用以下命令来访问相关的帮助页面:help usr_21

To give you a brief summary, here are the different methods of quitting and returning with your session intact: 为了给您一个简短的总结,以下是您的会话完好不同的退出和退货方法:

  1. Suspend and resume – You don’t actually quit vim with this, you simply hide your session in the background until you need it. 暂停和恢复 – 你实际上并没有退出vim,你只需在后台隐藏你的会话,直到你需要它为止。 If you reset your computer or issue a kill command to vim, you will lose your session. 如果您重置计算机或向vim发出kill命令,则会丢失会话。 This is good for when you want to switch to another task temporarily, but if this is the case, then you might want to look into using the GNU Screen utility instead. 当你想暂时切换到另一个任务时,这很有用,但如果是这种情况,那么你可能需要考虑使用GNU Screen实用程序

  2. Sessions – This is the true way of saving your session between instances of vim. 会话 – 这是在vim实例之间保存会话的真正方法。 Even if you truly quit vim, your session will be there for you when you return. 即使你真的放弃了vim,当你回来时,你的会话也会在那里。 This is probably what you are looking for. 这可能就是你要找的东西。


#6楼

您可以使用:sh退出到您的默认shell,然后在shell提示符下键入$ exit将返回到vim。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/140551.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • idea202112激活码下载[最新免费获取]

    (idea202112激活码下载)好多小伙伴总是说激活码老是失效,太麻烦,关注/收藏全栈君太难教程,2021永久激活的方法等着你。IntelliJ2021最新激活注册码,破解教程可免费永久激活,亲测有效,下面是详细链接哦~https://javaforall.net/100143.htmlS32PGH0SQB-eyJsaWNlbnNlSWQi…

    2022年3月25日
    54
  • workflow开发_php工作流引擎

    workflow开发_php工作流引擎给大家介绍一款.net流程引擎WikeFlow.微软官方的WorkFlow入门要求比较高,所以我们萌生了开发一个简单的工作流引擎,帮助.Netcoder们解决软件项目中流程的处理。实现写最少的代码,实现最炫酷的功能。WikeFlow官网:www.wikesoft.cnWikeFlow演示地址:workflow.wikesoft.com流程设计器实际运用…

    2022年10月20日
    0
  • Linux-权限管理(你听过777、755、644吗)

    Linux-权限管理(你听过777、755、644吗)你听过777、755、644吗?文章目录组rwx权限修改权限-chmod修改文件所有者-chown修改文件所在组-chgrp

    2022年6月17日
    32
  • java用什么编译器_Java用Java编译「建议收藏」

    java用什么编译器_Java用Java编译「建议收藏」java用什么编译器在上一篇文章中,我写了关于如何在运行时生成代理的内容,我们已经了解到生成Java源代码的程度。但是,要使用该类,必须对其进行编译,并将生成的字节码加载到内存中。那是“编译”时间。幸运的是,从Java1.6开始,我们可以在运行时访问Java编译器,因此可以将编译时与运行时混淆。尽管在这种非常特殊的情况下,这可能会导致过多的麻烦事情,通常导致无法维护的自我修改代码,…

    2022年5月6日
    41
  • 下载mysql驱动jar包

    下载mysql驱动jar包MYSQL官网历史驱动Jar包下载地址:https://downloads.mysql.com/archives/c-j/ProductVersion选择mysql版本,OperatingSystem选择PlatformIndepen,然后下载即可

    2022年5月11日
    39
  • html字体属性控制,水平线,上下标,插入图片

    html字体属性控制,水平线,上下标,插入图片

    2021年9月9日
    81

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号