neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

openscad.vim (343B)


      1 " Vim filetype plugin file
      2 " Language:    OpenSCAD (https://openscad.org)
      3 " Maintainer:  Zachary Scheiman <me@zacharyscheiman.com>
      4 " Last Change: 2025 Aug 3
      5 
      6 if exists('b:did_ftplugin')
      7  finish
      8 endif
      9 let b:did_ftplugin = 1
     10 
     11 " Comments in openscad follow C/C++ syntax
     12 setlocal commentstring=//\ %s
     13 
     14 let b:undo_ftplugin = 'setl commentstring<'