2016-05-22 16 views
0

ich die folgenden Einstellungen auf Unix haben:Wie könnte ich Unix gVim Einstellungen unter Windows verwenden?

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 

Aber ich schaffe es nicht auf die Verwendung von Windows 7. Kann mir jemand bitte sagen, wie es funktioniert?

Antwort

1

Die Einstellungen müssen geändert werden, bevor es von Unix auf Windows migrieren wie folgt:

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 

Als nächstes es $VIMRUNTIME/XXX.vim speichern (wo XXX ein Platzhalter ist), und es dann in Ihrer _vimrc Datei beziehen.

+0

Vielen Dank! –