Created
          September 17, 2012 11:11 
        
      - 
      
 - 
        
Save carusog/3736733 to your computer and use it in GitHub Desktop.  
    Switch between buffers using alt+left/right arrow in Vim
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | " Switch between buffers using alt+left/right arrow | |
| nnoremap <silent><A-Right> :bn<CR> | |
| inoremap <silent><A-Right> <C-O>:bn<CR> | |
| nnoremap <silent><A-Left> :bp<CR> | |
| inoremap <silent><A-Left> <C-O>:bp<CR> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment