annotate runtime/ftplugin/dockerfile.vim @ 17680:55704f587945 v8.1.1837

patch 8.1.1837: popup test fails if clipboard is supported but not working commit https://github.com/vim/vim/commit/4999a7fb6585915b53888c930067b33c01674678 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 10 22:21:48 2019 +0200 patch 8.1.1837: popup test fails if clipboard is supported but not working Problem: Popup test fails if clipboard is supported but not working. Solution: Add the "clipboard_working" feature. Also use Check commands instead of "if" and "throw". And remove stray ch_logfile().
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Aug 2019 22:30:05 +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