gpt4 book ai didi

vim - 在 vim 中,如何让文件在上次关闭的行号处打开?

转载 作者:行者123 更新时间:2023-12-03 03:45:41 29 4
gpt4 key购买 nike

我想配置 vim 在我上次离开的位置打开一个文件。

最佳答案

在 Ubuntu 的 /etc/vim/vimrc 文件中,这个例子被注释掉了:

" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
\| exe "normal! g'\"" | endif
endif

如果这不起作用,一个常见的问题是没有 ~/.viminfo 文件的所有权。如果是这种情况,请运行:

sudo chown user:group ~/.viminfo

其中 user 是您的用户名group 通常与您的用户名相同。

关于vim - 在 vim 中,如何让文件在上次关闭的行号处打开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/774560/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com