1" Vim filetype plugin 2" Language: JSON 3" Maintainer: David Barnett <[email protected]> 4" Last Change: 2014 Jul 16 5 6if exists('b:did_ftplugin') 7 finish 8endif 9let b:did_ftplugin = 1 10 11let b:undo_ftplugin = 'setlocal formatoptions< comments< commentstring<' 12 13setlocal formatoptions-=t 14 15" JSON has no comments. 16setlocal comments= 17setlocal commentstring= 18