-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautorunner.vim
15 lines (14 loc) · 941 Bytes
/
autorunner.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" nvim-autorunner
" Author: Kushashwa Ravi Shrimali ([email protected])
command! AutoRunnerRun lua require('autorunner').run()
command! AutoRunnerToggle lua require('autorunner').toggle()
command! AutoRunnerEditFile lua require('autorunner').edit_file()
command! AutoRunnerClearBuffer lua require('autorunner').clear_buffer()
command! AutoRunnerAddCommand lua require('autorunner').add_command()
command! AutoRunnerClearAll lua require('autorunner').clear_command_and_buffer()
command! AutoRunnerPrintCommand lua require('autorunner').print_command()
command! AutoRunnerTermRun lua require('autorunner').term_run()
command! AutoRunnerTermToggle lua require('autorunner').term_toggle()
command! AutoRunnerTermSetSize lua require('autorunner').set_term_size()
command! AutoRunnerTermSetDirection lua require('autorunner').set_term_direction()
command! AutoRunnerTermGetProperties lua require('autorunner').get_term_properties()