I was wondering if it's possible to use a Perl RegEx in a .vim syntax file instead of Vim Speak.
If I have a syntax file such as
/usr/share/vim/vim80/syntax/none.vim
" Vim syntax file
" Language:     Custom None
" Maintainer:   Nobody
if exists("b:current_syntax")
  finish
endif
syn match noneIndentError "*Some Vim Speak RegEx*"
hi def link noneIndentError Error
let b:current_syntax = "none"
Is it possible to use a Perl RegEx inside of the syn match instead of a Vim Speak one? My RegEx is written for Perl and I can't seem to get it to work in Vim Speak
(?:^)(?: {4})*+( {1,})
The RegEx just tests for spaces that aren't included in the indented 4 spaces, you can see it here if you'd like


*+*+. It's just an optimization for Perl. A plain old*would work fine.