소스 검색

Fix nvim warning for alt key on mac

Andrew Swistak 6 년 전
부모
커밋
9c05a02b43
1개의 변경된 파일8개의 추가작업 그리고 6개의 파일을 삭제
  1. 8 6
      vimrc

+ 8 - 6
vimrc

@@ -359,12 +359,14 @@ au BufWrite * :call DeleteTrailingWS()
 au FileType go let b:noStrip=1
 
 " Allow the use of ALT as a function key.
-let c='a'
-while c <= 'z'
-  exec "set <A-".c.">=\e".c
-  exec "imap \e".c." <A-".c.">"
-  let c = nr2char(1+char2nr(c))
-endw
+if !has('nvim')
+  let c='a'
+  while c <= 'z'
+    exec "set <A-".c.">=\e".c
+    exec "imap \e".c." <A-".c.">"
+    let c = nr2char(1+char2nr(c))
+  endw
+endif
 
 " Smart indent when entering insert mode with i on empty lines
 function! IndentWithI()