comparison runtime/filetype.vim @ 28393:860c2c6bcdfd v8.2.4721

patch 8.2.4721: cooklang files are not recognized Commit: https://github.com/vim/vim/commit/36951ed1dab2b2e816dc8959c72b5732f36d9e3b Author: =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com> Date: Sat Apr 9 16:08:08 2022 +0100 patch 8.2.4721: cooklang files are not recognized Problem: Cooklang files are not recognized. Solution: recognize *.cook files. (Goc Dundar, closes https://github.com/vim/vim/issues/10120)
author Bram Moolenaar <Bram@vim.org>
date Sat, 09 Apr 2022 17:15:03 +0200
parents cc4d3ded4004
children e11641c05602
comparison
equal deleted inserted replaced
28392:f77b9d4cb007 28393:860c2c6bcdfd
392 au BufNewFile,BufRead *.cfm,*.cfi,*.cfc setf cf 392 au BufNewFile,BufRead *.cfm,*.cfi,*.cfc setf cf
393 393
394 " Configure scripts 394 " Configure scripts
395 au BufNewFile,BufRead configure.in,configure.ac setf config 395 au BufNewFile,BufRead configure.in,configure.ac setf config
396 396
397 " Cooklang
398 au BufNewFile,BufRead *.cook setf cook
399
397 " CUDA Compute Unified Device Architecture 400 " CUDA Compute Unified Device Architecture
398 au BufNewFile,BufRead *.cu,*.cuh setf cuda 401 au BufNewFile,BufRead *.cu,*.cuh setf cuda
399 402
400 " Dockerfile; Podman uses the same syntax with name Containerfile 403 " Dockerfile; Podman uses the same syntax with name Containerfile
401 " Also see Dockerfile.* below. 404 " Also see Dockerfile.* below.