neovim

Personal neovim configuration files
git clone git://gtms.dev/neovim
Log | Files | Refs

dap-repl.vim (583B)


      1 " Start: Standard vim script cruft {{{2
      2 let s:cpo_save = &cpo
      3 set cpo&vim
      4 
      5 scriptencoding utf8
      6 if version < 600
      7     syn clear
      8 elseif exists("b:current_syntax")
      9     finish
     10 endif
     11 
     12 " I've been debating whether or not to enumerate the possibilities or just hide
     13 " them all with ^[\[[0-9:;]*m, because it might overshadow cases I don't cover,
     14 " but I think that concealing anyway is a good idea.
     15 syn match TerminalCSIColorCode /\[[:;0-9]*m/ conceal
     16 
     17 " Set the syntax variable
     18 let b:current_syntax="terminal"
     19 
     20 " End: Standard vim script cruft {{{2
     21 let &cpo = s:cpo_save
     22 unlet s:cpo_save
     23