Skip to content

Commit bce44d8

Browse files
lervagrbong
authored andcommitted
fix: missing CR on three FlogRebase mappings
fixes: #85
1 parent fb13770 commit bce44d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ftplugin/floggraph.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,17 +339,17 @@ nnoremap <buffer> <silent> <Plug>(FlogRebaseEditTodo) :<C-U>call flog#run_comman
339339
if !hasmapto('<Plug>(FlogRebaseInteractiveReword)')
340340
nmap <buffer> rw <Plug>(FlogRebaseInteractiveReword)
341341
endif
342-
nnoremap <buffer> <silent> <Plug>(FlogRebaseInteractiveReword) :<C-U>call flog#run_command('Git rebase --interactive %H^ \| s/^pick/reword/e', 1, 1)
342+
nnoremap <buffer> <silent> <Plug>(FlogRebaseInteractiveReword) :<C-U>call flog#run_command('Git rebase --interactive %H^ \| s/^pick/reword/e', 1, 1)<CR>
343343
344344
if !hasmapto('<Plug>(FlogRebaseInteractiveEdit)')
345345
nmap <buffer> rm <Plug>(FlogRebaseInteractiveEdit)
346346
endif
347-
nnoremap <buffer> <silent> <Plug>(FlogRebaseInteractiveEdit) :<C-U>call flog#run_command('Git rebase --interactive %H^ \| s/^pick/edit/e', 1, 1)
347+
nnoremap <buffer> <silent> <Plug>(FlogRebaseInteractiveEdit) :<C-U>call flog#run_command('Git rebase --interactive %H^ \| s/^pick/edit/e', 1, 1)<CR>
348348
349349
if !hasmapto('<Plug>(FlogRebaseInteractiveDrop)')
350350
nmap <buffer> rd <Plug>(FlogRebaseInteractiveDrop)
351351
endif
352-
nnoremap <buffer> <silent> <Plug>(FlogRebaseInteractiveDrop) :<C-U>call flog#run_command('Git rebase --interactive %H^ \| s/^pick/drop/e', 1, 1)
352+
nnoremap <buffer> <silent> <Plug>(FlogRebaseInteractiveDrop) :<C-U>call flog#run_command('Git rebase --interactive %H^ \| s/^pick/drop/e', 1, 1)<CR>
353353
354354
if !hasmapto('<Plug>(FlogGitRebase)')
355355
nmap <buffer> r<Space> <Plug>(FlogGitRebase)

0 commit comments

Comments
 (0)