In Vim, the vim module is always imported by magic in the global scope, but the docs suggest that you're supposed to import it anyway. In NeoVim it's never imported so we were relying on some other plugins having already imported it.
39 lines
1 KiB
VimL
39 lines
1 KiB
VimL
" vimspector - A multi-language debugging system for Vim
|
|
" Copyright 2018 Ben Jackson
|
|
"
|
|
" Licensed under the Apache License, Version 2.0 (the "License");
|
|
" you may not use this file except in compliance with the License.
|
|
" You may obtain a copy of the License at
|
|
"
|
|
" http://www.apache.org/licenses/LICENSE-2.0
|
|
"
|
|
" Unless required by applicable law or agreed to in writing, software
|
|
" distributed under the License is distributed on an "AS IS" BASIS,
|
|
" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
" See the License for the specific language governing permissions and
|
|
" limitations under the License.
|
|
|
|
|
|
" Boilerplate {{{
|
|
let s:save_cpo = &cpoptions
|
|
set cpoptions&vim
|
|
" }}}
|
|
|
|
let s:is_neovim = has( 'nvim' )
|
|
|
|
function! vimspector#internal#state#Reset() abort
|
|
let prefix = ''
|
|
if s:is_neovim
|
|
let prefix='neo'
|
|
endif
|
|
py3 << EOF
|
|
import vim
|
|
from vimspector import debug_session
|
|
_vimspector_session = debug_session.DebugSession( vim.eval( 'prefix' ) )
|
|
EOF
|
|
endfunction
|
|
|
|
" Boilerplate {{{
|
|
let &cpoptions=s:save_cpo
|
|
unlet s:save_cpo
|
|
" }}}
|