blob: 317c10b6f933bb07262f5c363d2e08590d938604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
mnv9script
# MNV filetype plugin file
# Language: Godot shading language
# Maintainer: Maxim Kim <habamax@gmail.com>
# Website: https://github.com/habamax/mnv-gdscript
# Last Update: 2025-06-09
if exists("b:did_ftplugin") | finish | endif
b:did_ftplugin = 1
b:undo_ftplugin = 'setlocal suffixesadd< comments< commentstring<'
setlocal suffixesadd=.gdshader
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
setlocal commentstring=//\ %s
|