blob: f0d34ee5a63cf45f68cee18ae7b852019d71cc27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
" Vim filetype plugin file
" Language: Godot shading language
" Maintainer: Maxim Kim <habamax@gmail.com>
" Website: https://github.com/habamax/vim-gdscript
"
" This file has been manually translated from Vim9 script.
if exists("b:did_ftplugin") | finish | endif
let b:did_ftplugin = 1
let b:undo_ftplugin = 'setlocal suffixesadd<'
setlocal suffixesadd=.gdshader
|