aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/git-shortcuts/autoload/git_shortcuts.vim
blob: c478e55581e34a31beb26de5a11382d179268f5a (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, 'bz')
endfunction

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