From 9ad5ed96fdc13ffee14780272b0495b2319cd847 Mon Sep 17 00:00:00 2001 From: darkelfe Date: Thu, 7 Nov 2013 17:49:38 +0100 Subject: [PATCH] =?UTF-8?q?[vim]=20Couper=20(surplant=C3=A9=20raccourci=20?= =?UTF-8?q?KDE)=20/=20Copier=20/=20Coller=20avec=20F10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vim/vimrc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 59f2064..ec8ed45 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -172,7 +172,7 @@ function! MyFoldFunction() "Calculate lines in folded text let lines = v:foldend - v:foldstart + 1 - return sub.' {...'.lines.' lignes...}' + return sub.' {...'.lines.' lignes...} ' endfunction set foldtext=MyFoldFunction() @@ -203,17 +203,17 @@ endfunction " Couper, copier et coller avec le presse-papier du système if has('x11') && has('clipboard') - :nmap "+dd - :nmap "+yy - :nmap "+p + :nmap "+dd + :nmap "+yy + :nmap "+p - :vmap "+d - :vmap "+ygv - :vmap "+p + :vmap "+d + :vmap "+ygv + :vmap "+p - :imap "+ddi - :imap "+yyi - :imap "+pi + :imap "+ddi + :imap "+yyi + :imap "+pi endif "=====================================================================