Navigation Menu

Skip to content

Commit

Permalink
Fix <Space> mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
tpope committed Sep 10, 2011
1 parent 5e17214 commit 844d167
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/unimpaired.vim
Expand Up @@ -103,13 +103,13 @@ omap ]> V:call search('^>>>>>>>','W')<CR>
" Line operations {{{1 " Line operations {{{1


function! s:BlankUp(count) abort function! s:BlankUp(count) abort
put!=repeat("\n", a:count) put!=repeat(nr2char(10), a:count)
']+1 ']+1
call repeat#set("\<Plug>unimpairedBlankUp", a:count) call repeat#set("\<Plug>unimpairedBlankUp", a:count)
endfunction endfunction


function! s:BlankDown(count) abort function! s:BlankDown(count) abort
put =repeat("\n", a:count) put =repeat(nr2char(10), a:count)
'[-1 '[-1
call repeat#set("\<Plug>unimpairedBlankDown", a:count) call repeat#set("\<Plug>unimpairedBlankDown", a:count)
endfunction endfunction
Expand Down

0 comments on commit 844d167

Please sign in to comment.