08-08-2008, 02:52 PM
viM 7.1
Bref rien de bien faulichon ... surtout que je suis au boulot ^^
kéké
Code :
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
" robin
set nobackup
"set nowrap!
"scrollbar horizontale
set guioptions+=b
set lines=40
set columns=124
" set nu
set shiftwidth=3
set tabstop=3
" position de la fenêtre
winpos 1 28
set diffexpr=MyDiff()
function MyDiff()
let opt = ''
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
silent execute '!C:\Vim\vim62\diff -a ' . opt . '"' . v:fname_in . '" "' . v:fname_new . '" > "' . v:fname_out . '"'
endfunction
Bref rien de bien faulichon ... surtout que je suis au boulot ^^
kéké