mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 02:34:59 -07:00
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:
parent
31ca341d92
commit
27a3e92a87
13
runtime/ftplugin/prisma.vim
Normal file
13
runtime/ftplugin/prisma.vim
Normal 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<'
|
Loading…
Reference in New Issue
Block a user