view runtime/ftplugin/jsonnet.vim @ 30632:8c0232ab725c v9.0.0651

patch 9.0.0651: build fails without the +conceal feature Commit: https://github.com/vim/vim/commit/eb47d6d20a47707d810360fd1684b21f67d5dec8 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 3 17:45:55 2022 +0100 patch 9.0.0651: build fails without the +conceal feature Problem: Build fails without the +conceal feature. Solution: Rename called function.
author Bram Moolenaar <Bram@vim.org>
date Mon, 03 Oct 2022 19:00:03 +0200
parents fee9eccee266
children
line wrap: on
line source

" Vim filetype plugin
" Language:        Jsonnet
" Maintainer:      Cezary Drożak <cezary@drozak.net>
" URL:             https://github.com/google/vim-jsonnet
" Last Change:     2022-09-08

" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
  finish
endif

" Don't load another plugin for this buffer
let b:did_ftplugin = 1

setlocal commentstring=//\ %s

let b:undo_ftplugin = "setlocal commentstring<"