diff --git a/runtime/ftplugin/uc.vim b/runtime/ftplugin/uc.vim new file mode 100644 index 0000000000..3845e94ee7 --- /dev/null +++ b/runtime/ftplugin/uc.vim @@ -0,0 +1,14 @@ +" Vim filetype plugin +" Language: UnrealScript +" Maintainer: Riley Bruins +" Last Change: 2025 Jul 19 + +if exists('b:did_ftplugin') + finish +endif +let b:did_ftplugin = 1 + +setl comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:// +setl commentstring=//\ %s + +let b:undo_ftplugin = 'setl com< cms<'