Skip to content

Instantly share code, notes, and snippets.

@Raimondi
Created June 9, 2010 06:08
Show Gist options
  • Save Raimondi/431124 to your computer and use it in GitHub Desktop.
Save Raimondi/431124 to your computer and use it in GitHub Desktop.
Enter insert with the appropiate indentation.
function! IndentWithI()
if len(getline('.')) == 0
return "ix\<Esc>==s"
else
return "i"
endif
endfunction
nnoremap <expr> i IndentWithI()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment