我如何在 Windows 上使用 Unix gVim 设置?
How could I use Unix gVim settings on Windows?
我在 Unix 上有以下设置:
au BufNewFile,BufRead *.py
\ set tabstop=4
\ set softtabstop=4
\ set shiftwidth=4
\ set textwidth=79
\ set expandtab
\ set autoindent
\ set fileformat=unix
au BufNewFile,BufRead *.js, *.html, *.css
\ set tabstop=2
\ set softtabstop=2
\ set shiftwidth=2
但是我没能在 Windows 上使用它 7. 谁能告诉我如何让它工作?
在将其从 Unix 迁移到 Windows 之前必须修改设置,如下所示:
au BufNewFile,BufRead *.py
\ set tabstop=4
\ softtabstop=4
\ shiftwidth=4
\ textwidth=79
\ expandtab
\ autoindent
\ fileformat=unix
au BufNewFile,BufRead *.html
\ set tabstop=2
\ softtabstop=2
\ shiftwidth=2
au BufNewFile,BufRead *.css
\ set tabstop=2
\ softtabstop=2
\ shiftwidth=2
au BufNewFile,BufRead *.js
\ set tabstop=2
\ softtabstop=2
\ shiftwidth=2
接下来,将其保存到 $VIMRUNTIME/XXX.vim
(其中 XXX
是一个占位符),然后将其作为 _vimrc
文件的来源。
我在 Unix 上有以下设置:
au BufNewFile,BufRead *.py
\ set tabstop=4
\ set softtabstop=4
\ set shiftwidth=4
\ set textwidth=79
\ set expandtab
\ set autoindent
\ set fileformat=unix
au BufNewFile,BufRead *.js, *.html, *.css
\ set tabstop=2
\ set softtabstop=2
\ set shiftwidth=2
但是我没能在 Windows 上使用它 7. 谁能告诉我如何让它工作?
在将其从 Unix 迁移到 Windows 之前必须修改设置,如下所示:
au BufNewFile,BufRead *.py
\ set tabstop=4
\ softtabstop=4
\ shiftwidth=4
\ textwidth=79
\ expandtab
\ autoindent
\ fileformat=unix
au BufNewFile,BufRead *.html
\ set tabstop=2
\ softtabstop=2
\ shiftwidth=2
au BufNewFile,BufRead *.css
\ set tabstop=2
\ softtabstop=2
\ shiftwidth=2
au BufNewFile,BufRead *.js
\ set tabstop=2
\ softtabstop=2
\ shiftwidth=2
接下来,将其保存到 $VIMRUNTIME/XXX.vim
(其中 XXX
是一个占位符),然后将其作为 _vimrc
文件的来源。