"=============================================================================
" FILE: vimshell.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
" "Software"), to deal in the Software without restriction, including
" without limitation the rights to use, copy, modify, merge, publish,
" distribute, sublicense, and/or sell copies of the Software, and to
" permit persons to whom the Software is furnished to do so, subject to
" the following conditions:
"
" The above copyright notice and this permission notice shall be included
" in all copies or substantial portions of the Software.
"
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
" }}}
"=============================================================================
if exists('g:loaded_vimshell')
finish
elseif v:version < 703
echoerr 'vimshell does not work this version of Vim "' . v:version . '".'
finish
endif
let s:save_cpo = &cpo
set cpo&vim
" Obsolute options check. "{{{
"}}}
" Global options definition. "{{{
let g:vimshell_enable_debug =
\ get(g:, 'vimshell_enable_debug', 0)
let g:vimshell_use_terminal_command =
\ get(g:, 'vimshell_use_terminal_command', '')
let g:vimshell_max_command_history =
\ get(g:, 'vimshell_max_command_history', 1000)
let g:vimshell_max_directory_stack =
\ get(g:, 'vimshell_max_directory_stack', 100)
let g:vimshell_vimshrc_path =
\ substitute(fnamemodify(get(
\ g:, 'vimshell_vimshrc_path',
\ (isdirectory(expand('~/.vim'))
\ && (filereadable(expand('~/.vim/vimshrc'))
\ || !filereadable(expand('~/.vimshrc')))
\ ? '~/.vim/vimshrc' : '~/.vimshrc')),
\ ':p'), '\\', '/', 'g')
let g:vimshell_escape_colors =
\ get(g:, 'vimshell_escape_colors', [
\ '#6c6c6c', '#ff6666', '#66ff66', '#ffd30a',
\ '#1e95fd', '#ff13ff', '#1bc8c8', '#c0c0c0',
\ '#383838', '#ff4444', '#44ff44', '#ffb30a',
\ '#6699ff', '#f820ff', '#4ae2e2', '#ffffff',
\])
let g:vimshell_disable_escape_highlight =
\ get(g:, 'vimshell_disable_escape_highlight', 0)
let g:vimshell_cat_command =
\ get(g:, 'vimshell_cat_command', 'cat')
let g:vimshell_environment_term =
\ get(g:, 'vimshell_environment_term', 'xterm')
let g:vimshell_split_command =
\ get(g:, 'vimshell_split_command', 'nicely')
let g:vimshell_popup_command =
\ get(g:, 'vimshell_popup_command', '')
let g:vimshell_popup_height =
\ get(g:, 'vimshell_popup_height', 30)
let g:vimshell_cd_command =
\ get(g:, 'vimshell_cd_command', 'lcd')
let g:vimshell_external_history_path =
\ get(g:, 'vimshell_external_history_path', '')
let g:vimshell_no_save_history_commands =
\ get(g:, 'vimshell_no_save_history_commands', {
\ 'history' : 1, 'h' : 1, 'histdel' : 1, 'cd' : 1,
\ })
let g:vimshell_scrollback_limit =
\ get(g:, 'vimshell_scrollback_limit', 1000)
let g:vimshell_enable_transient_user_prompt =
\ get(g:, 'vimshell_enable_transient_user_prompt', 0)
let g:vimshell_force_overwrite_statusline =
\ get(g:, 'vimshell_force_overwrite_statusline', 0)
" For interactive commands.
let g:vimshell_interactive_no_save_history_commands =
\ get(g:, 'vimshell_interactive_no_save_history_commands', {})
let g:vimshell_interactive_update_time =
\ get(g:, 'vimshell_interactive_update_time', 200)
let g:vimshell_interactive_command_options =
\ get(g:, 'vimshell_interactive_command_options', {})
let g:vimshell_interactive_interpreter_commands =
\ get(g:, 'vimshell_interactive_interpreter_commands', {})
let g:vimshell_interactive_encodings =
\ get(g:, 'vimshell_interactive_encodings',
\ (has('win32') || has('win64')) ? {
\ '/MinGW/bin/' : 'utf-8', '/msysgit/bin/' : 'utf-8',
\ '/cygwin/bin/' : 'utf-8', 'gosh' : 'utf-8', 'fakecygpty' : 'utf-8',
\ } : {})
let g:vimshell_interactive_prompts =
\ get(g:, 'vimshell_interactive_prompts', {})
let g:vimshell_interactive_echoback_commands =
\ get(g:, 'vimshell_interactive_echoback_commands',
\ (has('win32') || has('win64')) ? {
\ 'bash' : 1, 'bc' : 1,
\ } : {})
let g:vimshell_interactive_monochrome_commands =
\ get(g:, 'vimshell_interactive_monochrome_commands', {})
" For terminal commands.
let g:vimshell_terminal_commands =
\ get(g:, 'vimshell_terminal_commands', {
\ 'more' : 1, 'screen' : 1, 'tmux' : 1,
\ 'vi' : 1, 'emacs' : 1, 'sl' : 1,
\ })
" For Cygwin commands.
let g:vimshell_interactive_cygwin_commands =
\ get(g:, 'vimshell_interactive_cygwin_commands', {})
let g:vimshell_interactive_cygwin_path =
\ get(g:, 'vimshell_interactive_cygwin_path', 'c:/cygwin/bin')
let g:vimshell_interactive_cygwin_home =
\ get(g:, 'vimshell_interactive_cygwin_home', '')
"}}}
command! -nargs=? -complete=customlist,vimshell#complete
\ VimShell
\ call s:call_vimshell({}, <q-args>)
command! -nargs=? -complete=customlist,vimshell#complete
\ VimShellCreate
\ call s:call_vimshell({'create' : 1}, <q-args>)
command! -nargs=? -complete=customlist,vimshell#complete
\ VimShellPop
\ call s:call_vimshell({'toggle' : 1, 'popup' : 1}, <q-args>)
command! -nargs=? -complete=customlist,vimshell#complete
\ VimShellTab
\ tabnew | call s:call_vimshell({'tab' : 1}, <q-args>)
command! -nargs=? -complete=customlist,vimshell#complete
\ VimShellCurrentDir
\ call s:call_vimshell({}, <q-args> . ' ' . getcwd())
command! -nargs=? -complete=customlist,vimshell#complete
\ VimShellBufferDir
\ call s:call_vimshell({}, <q-args> . ' ' .
\ vimshell#util#substitute_path_separator(
\ fnamemodify(bufname('%'), ':p:h')))
command! -nargs=*
\ -complete=customlist,vimshell#helpers#vimshell_execute_complete
\ VimShellExecute
\ call s:vimshell_execute(<q-args>)
command! -nargs=*
\ -complete=customlist,vimshell#helpers#vimshell_execute_complete
\ VimShellInteractive
\ call s:vimshell_interactive(<q-args>)
command! -range -nargs=?
\ VimShellSendString
\ call vimshell#interactive#send_region(<line1>, <line2>, <q-args>)
command! -bar -complete=buffer -nargs=1
\ VimShellSendBuffer
\ call vimshell#interactive#set_send_buffer(<q-args>)
command! -nargs=? -bar
\ VimShellClose
\ call vimshell#view#_close(<q-args>)
" Plugin keymappings "{{{
nnoremap <silent> <Plug>(vimshell_split_switch)
\ :<C-u>call <SID>call_vimshell({'split' : 1}, '')<CR>
nnoremap <silent> <Plug>(vimshell_split_create)
\ :<C-u>call <SID>call_vimshell({'split' : 1, 'create' : 1}, '')<CR>
nnoremap <silent> <Plug>(vimshell_switch)
\ :<C-u>VimShell<CR>
nnoremap <silent> <Plug>(vimshell_create)
\ :<C-u>VimShellCreate<CR>
"}}}
" Command functions:
function! s:vimshell_execute(args) abort "{{{
let context = {
\ 'has_head_spaces' : 0,
\ 'is_interactive' : 0,
\ 'is_single_command' : 1,
\ 'fd' : { 'stdin' : '', 'stdout': '', 'stderr': ''},
\}
call vimshell#set_context(context)
try
let args = vimproc#parser#split_args(a:args)
if empty(args)
let args = [vimshell#util#substitute_path_separator(
\ fnamemodify(expand('%'), ':p'))]
endif
call vimshell#helpers#execute_internal_command('bg', args, context)
catch
let message = (v:exception !~# '^Vim:')?
\ v:exception : v:exception . ' ' . v:throwpoint
call vimshell#error_line(
\ context.fd, printf('%s: %s', a:args, message))
return
endtry
endfunction"}}}
function! s:vimshell_interactive(args) abort "{{{
if a:args == ''
call vimshell#commands#iexe#define()
" Search interpreter.
if &filetype == '' ||
\ !has_key(g:vimshell_interactive_interpreter_commands, &filetype)
call vimshell#echo_error('Interpreter is not found.')
return
endif
let command_line =
\ g:vimshell_interactive_interpreter_commands[&filetype]
else
let command_line = a:args
endif
try
let args = vimproc#parser#split_args(command_line)
let context = {
\ 'has_head_spaces' : 0,
\ 'is_interactive' : 0,
\ 'is_single_command' : 1,
\ 'fd' : { 'stdin' : '', 'stdout': '', 'stderr': ''},
\}
call vimshell#set_context(context)
call vimshell#helpers#execute_internal_command('iexe', args, context)
catch
let message = (v:exception !~# '^Vim:')?
\ v:exception : v:exception . ' ' . v:throwpoint
call vimshell#error_line(
\ context.fd, printf('%s: %s', a:args, message))
return
endtry
endfunction"}}}
function! s:call_vimshell(default, args) abort "{{{
let args = []
let options = a:default
for arg in split(a:args, '\%(\\\@<!\s\)\+')
let arg = substitute(arg, '\\\( \)', '\1', 'g')
let arg_key = substitute(arg, '=\zs.*$', '', '')
let matched_list = filter(vimshell#variables#options(), 'v:val ==# arg_key')
for option in matched_list
let key = substitute(substitute(option, '-', '_', 'g'),
\ '=$', '', '')[1:]
let options[key] = (option =~ '=$') ?
\ arg[len(option) :] : 1
endfor
if empty(matched_list)
call add(args, arg)
endif
endfor
call vimshell#init#_start(join(args), options)
endfunction"}}}
let &cpo = s:save_cpo
unlet s:save_cpo
let g:loaded_vimshell = 1
" vim: foldmethod=marker