Very very basic inital checkin to show a way to talk to/from a Vim job using python (mainly), and to parse the sort of messages that LSP and VSCode debugger protocol speak (i.e. similar to http messages). Very hacky, sort of holds together for what it is.
40 lines
972 B
VimL
40 lines
972 B
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 = &cpo
|
|
set cpo&vim
|
|
|
|
function! s:restore_cpo()
|
|
let &cpo=s:save_cpo
|
|
unlet s:save_cpo
|
|
endfunction
|
|
|
|
if exists( "g:loaded_vimpector" )
|
|
call s:restore_cpo()
|
|
finish
|
|
|
|
" TODO:
|
|
" - Check Vim version (for jobs)
|
|
" - Check python support
|
|
" - ?
|
|
|
|
endif
|
|
|
|
let g:loaded_vimpector = 1
|
|
"}}}
|
|
|
|
|
|
call s:restore_cpo()
|