Depending on exactly what you want to do, one of the following should work:
:syntax enable
:syntax on
:syntax off | syntax on
see :help :syn-qstart
Best regards,
Tony.
--
You will lose your present job and have to become a door to door
mayonnaise salesman.
Should be quite simple:
Either reload the file
:e
or explicitly set the syntax (given your filetype is named "gobo")
:set syn=gobo
Doesn't that work? Or do it even "more manually":
:syn clear
:source {somepath}/syntax/gobo.vim
The latter requires that all syntax definitions are in one file.
If you're editing {somepath}/after/syntax/gobo.vim then at least two
files need to be sourced (the original and the "after" syntax file):
:syn clear
:runtime! syntax/gobo.vim
Hint: The :runtime command doesn't complain if it can't find any files.
Try :verb runtime! syntax/gobo.vim to get a message in that case.
In the help:
:h 'syn
:h :syn-clear
:h after
...
--
Andy