blob: 74fc1ba099903bc7d41bd090aeaec196dd61b03b (
plain)
1
2
3
4
5
6
7
8
9
10
|
if exists('g:loaded_prr_ui')
finish
endif
let g:loaded_prr_ui = 1
command! PrrStart call prr_ui#StartInteractive()
command! PrrSubmit call prr_ui#Submit()
command! PrrComment call prr_ui#Comment()
command! PrrApprove call prr_ui#Approve()
command! PrrReject call prr_ui#Reject()
|