Skip to content

Commit

Permalink
fix broken patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed Mar 20, 2015
1 parent fd4baef commit e55240f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patches/man_fix_broken_new_line_deletion.patch
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ Index: .vim/ftplugin/man.vim
" Remove blank lines from top and bottom.
while getline(1) =~ '^\s*$'
- silent keepj norm ggdd
+ silent keepj norm 1d
+ 1d
endwhile
while getline('$') =~ '^\s*$'
- silent keepj norm Gdd
+ silent keepj norm 1d
+ $d
endwhile
1
setl ft=man nomod

0 comments on commit e55240f

Please sign in to comment.