aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundle/prr-ui/autoload/prr_ui.vim5
-rw-r--r--bundle/prr-ui/plugin/prr_ui.vim1
2 files changed, 6 insertions, 0 deletions
diff --git a/bundle/prr-ui/autoload/prr_ui.vim b/bundle/prr-ui/autoload/prr_ui.vim
index a60e5ce..8e35a50 100644
--- a/bundle/prr-ui/autoload/prr_ui.vim
+++ b/bundle/prr-ui/autoload/prr_ui.vim
@@ -860,3 +860,8 @@ function! prr_ui#RandomEmoji()
let l:index = rand() % s:emoji_list_length
return s:emoji[l:index]
endfunction
+
+
+" Comment on the current line.
+function! prr_ui#Comment()
+endfunction
diff --git a/bundle/prr-ui/plugin/prr_ui.vim b/bundle/prr-ui/plugin/prr_ui.vim
index 1aaf457..892a774 100644
--- a/bundle/prr-ui/plugin/prr_ui.vim
+++ b/bundle/prr-ui/plugin/prr_ui.vim
@@ -5,3 +5,4 @@ let g:loaded_prr_ui = 1
command! PrrStart execute 'vsplit ' . system('prr-start --print')
command! PrrSubmit update | !prr-submit
+command! PrrComment call prr_ui#Comment()