annotate runtime/ftplugin/dockerfile.vim @ 32385:49a13ac4a1b1 v9.0.1524

patch 9.0.1524: passing -1 for bool is not always rejected Commit: https://github.com/vim/vim/commit/8cf51376b842e0060edf08bd2e5bd9933c552ecf Author: zeertzjq <zeertzjq@outlook.com> Date: Mon May 8 15:31:38 2023 +0100 patch 9.0.1524: passing -1 for bool is not always rejected Problem: Passing -1 for bool is not always rejected. Solution: Check for error in a better way. (closes https://github.com/vim/vim/issues/12358)
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 May 2023 16:45:03 +0200
parents 6921742f396a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6180
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Language: Dockerfile
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: Honza Pokorny <http://honza.ca>
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Last Change: 2014 Aug 29
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " Only do this when not done yet for this buffer
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 if exists("b:did_ftplugin")
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 finish
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 endif
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 " Don't load another plugin for this buffer
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 let b:did_ftplugin = 1
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 let b:undo_ftplugin = "setl commentstring<"
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15
6921742f396a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 setlocal commentstring=#\ %s