Add customisation of signs

This commit is contained in:
Ben Jackson 2020-01-26 22:57:56 +00:00
commit b8d2b548d8
4 changed files with 64 additions and 5 deletions

View file

@ -50,7 +50,8 @@ class CodeView( object ):
vim.command( 'nnoremenu WinBar.Restart :call vimspector#Restart()<CR>' )
vim.command( 'nnoremenu WinBar.Reset :call vimspector#Reset()<CR>' )
vim.command( 'sign define vimspectorPC text=-> texthl=Search' )
if not utils.SignDefined( 'vimspectorPC' ):
vim.command( 'sign define vimspectorPC text=-> texthl=Search' )
def SetCurrentFrame( self, frame ):