blob: 5d156c3479f9d0160e282ecb218734ff212be268 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
" Ensure python3 is available
if !has('python3')
echoerr "Python 3 support is required for vim-ai plugin"
finish
endif
" detect if a visual selection is pending: https://stackoverflow.com/a/20133772
let g:vim_ai_is_selection_pending = 0
augroup vim_ai
autocmd!
autocmd CursorMoved *
\ let g:vim_ai_is_selection_pending = mode() =~# "^[vV\<C-v>]"
augroup END
command! -range -nargs=? AI <line1>,<line2>call vim_ai#AIRun({}, <q-args>)
command! -range -nargs=? AIEdit <line1>,<line2>call vim_ai#AIEditRun({}, <q-args>)
" Whereas AI and AIEdit default to passing the current line as range
" AIChat defaults to passing nothing which is achieved by -range=0 and passing
" <count> as described at https://stackoverflow.com/a/20133772
command! -range=0 -nargs=? AIChat <line1>,<line2>call vim_ai#AIChatRun(<count>, {}, <q-args>)
command! -nargs=? AINewChat call vim_ai#AINewChatRun(<q-args>)
command! AIRedo call vim_ai#AIRedoRun()
|