annotate runtime/ftplugin/dockerfile.vim @ 19419:c6c9d91d8290 v8.2.0267

patch 8.2.0267: no check for a following cmd when calling a function fails Commit: https://github.com/vim/vim/commit/e51bb17dd0d51384375830ee2a1df30c08121443 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 16 19:42:23 2020 +0100 patch 8.2.0267: no check for a following cmd when calling a function fails Problem: No check for a following command when calling a function fails. Solution: Also check for a following command when inside a try block. (closes #5642)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Feb 2020 19:45:04 +0100
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