vim-patch:9c4d14dbb4ba

runtime(prisma): include basic prisma ftplugin file (vim/vim#14807)

Reference: https://www.prisma.io/docs/orm/prisma-schema/overview#comments

9c4d14dbb4

Co-authored-by: Riley Bruins <ribru17@hotmail.com>
This commit is contained in:
Christian Clason 2024-05-20 14:07:44 +02:00
parent 31ca341d92
commit 27a3e92a87

View File

@ -0,0 +1,13 @@
" Vim filetype plugin
" Language: prisma
" Maintainer: Riley Bruins <ribru17@gmail.com>
" Last Change: 2024 May 19
if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
setl comments=:///,:// commentstring=//\ %s
let b:undo_ftplugin = 'setl com< cms<'