aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/git-shortcuts/autoload/git_shortcuts.vim
blob: bcd32d904557462ff2c04771ada6c60ca6554a17 (plain)
1
2
3
4
5
6
7
8
9
10
let s:COMMIT_START_PATTERN = '^commit'


function! git_shortcuts#CommitBackward()
	call search(s:COMMIT_START_PATTERN, 'b')
endfunction

function! git_shortcuts#CommitForward()
	call search(s:COMMIT_START_PATTERN)
endfunction