blob: 488cb51bfdecaf662853c87bd70645eb949f1053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
let b:undo_ftplugin = ''
" TODO: Pick an emoji at random from a pre-defined list.
command! -buffer PrrApprove normal! ggOLooks good <CR><CR>@prr approve<CR><Esc>gg
command! -buffer PrrReject normal! ggO<CR><CR>@prr reject<CR><Esc>gg
let b:undo_ftplugin .= '| delcommand -buffer PrrApprove'
let b:undo_ftplugin .= '| delcommand -buffer PrrReject'
" Educate quotes.
if !exists('b:textobj_quote_educate_mapped')
\ || b:textobj_quote_educate_mapped == 0
Educate
let b:undo_ftplugin .= '| NoEducate'
endif
|