1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
" vint: -ProhibitImplicitScopeVariable
function! linkvim#scratch#new(opts) abort
let l:buf = extend(deepcopy(s:scratch), a:opts)
call l:buf.open()
endfunction
let s:scratch = {
\ 'name' : 'LinkVimScratch'
\}
function! s:scratch.open() abort dict
let l:bufnr = bufnr('')
let l:wiki = get(b:, 'wiki', {})
silent execute 'keepalt edit' escape(self.name, ' ')
let self.prev_bufnr = l:bufnr
let b:scratch = self
let b:wiki = l:wiki
setlocal bufhidden=wipe
setlocal buftype=nofile
setlocal concealcursor=nvic
setlocal conceallevel=0
setlocal nobuflisted
setlocal nolist
setlocal nospell
setlocal noswapfile
setlocal nowrap
setlocal tabstop=8
nnoremap <silent><nowait><buffer> q :call b:scratch.close()<cr>
nnoremap <silent><nowait><buffer> <esc> :call b:scratch.close()<cr>
nnoremap <silent><nowait><buffer> <c-6> :call b:scratch.close()<cr>
nnoremap <silent><nowait><buffer> <c-^> :call b:scratch.close()<cr>
nnoremap <silent><nowait><buffer> <c-e> :call b:scratch.close()<cr>
if has_key(self, 'syntax')
call self.syntax()
endif
if has_key(self, 'post_init')
call self.post_init()
endif
call self.fill()
endfunction
function! s:scratch.close() abort dict
silent execute 'keepalt buffer' self.prev_bufnr
endfunction
function! s:scratch.fill() abort dict
setlocal modifiable
%delete
call self.print_content()
0delete _
setlocal nomodifiable
endfunction
" vint: +ProhibitImplicitScopeVariable
|