aboutsummaryrefslogtreecommitdiffstats
path: root/autoload/grappele.vim
blob: e111409c556fdea449be6813f08ff52ec7ce74f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function! grappele#Grappele(line)
	if a:line !=# 0
		let s:line = a:line
	endif

	return 'G'
endfunction

function! grappele#Recall()
	if exists('s:line')
		return s:line . 'G'
	endif
endfunction

function! grappele#ORecall()
	if exists('s:line')
		return ':normal! V' . s:line . "G\<cr>"
	endif
endfunction