]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Remove mac only settings.
authorSimon Ruderich <simon@ruderich.org>
Tue, 3 Jan 2012 13:20:20 +0000 (14:20 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 3 Jan 2012 13:20:20 +0000 (14:20 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 86a6cc9f908045740ad5d70275927b47bc9ca88e..28803a1330197303f73ec91747ed7ea8688ef231 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -315,19 +315,6 @@ else
         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
 endif
 
-" Make sure xa0 (alt + space) is automatically changed to a normal whitespace
-" if pressed accidentally while in insert mode (happens on Mac when alt
-" doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
-" no longer set on the console.
-if has('mac') || filereadable('/Users/.localized')
-    inoremap <Char-0xa0> <Space>
-endif
-
-" Disable Apple style movements in MacVim.
-if has('gui_macvim')
-    let g:macvim_skip_cmd_opt_movement = 1
-endif
-
 " In case 'hlsearch' is used disable it with <C-L>. Thanks to frogonwheels and
 " vimgor (bot) in #vim on Freenode (2010-03-30 05:58 CEST).
 noremap <silent> <C-L> :nohlsearch<CR><C-L>