]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Fix inserting xa0 on Mac.
authorSimon Ruderich <simon@ruderich.org>
Tue, 17 Feb 2009 10:52:01 +0000 (11:52 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 17 Feb 2009 13:00:21 +0000 (14:00 +0100)
This happens sometimes when pressing alt-space on Mac. As the character is not
a space but displayed like one it can cause some problems.

vimrc

diff --git a/vimrc b/vimrc
index 985042c13bc666a172f8c2e67400062ef55562f2..e44b0217d50d37d2431069f16286d27d3532b8b7 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -136,6 +136,12 @@ else
         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
 endif
 
+" Make sure xa0 (alt + space) is automatically changed to a normal whitespace
+" if pressed accidentally while in insert mode (happens on Mac sometimes).
+if has("mac")
+    imap <Char-0xa0> <Space>
+endif
+
 " Disable Apple style movements in MacVim.
 if has("gui_macvim")
     let macvim_skip_cmd_opt_movement = 1