1" Vim filetype plugin file 2" Language: meson 3" License: VIM License 4" Maintainer: Liam Beguin <[email protected]> 5" Original Author: Laurent Pinchart <[email protected]> 6" Last Change: 2018 Nov 27 7 8if exists("b:did_ftplugin") | finish | endif 9let b:did_ftplugin = 1 10let s:keepcpo= &cpo 11set cpo&vim 12 13setlocal commentstring=#\ %s 14setlocal comments=:# 15 16setlocal shiftwidth=2 17setlocal softtabstop=2 18 19let &cpo = s:keepcpo 20unlet s:keepcpo 21