mirror of
https://github.com/vim/vim.git
synced 2025-07-24 10:45:12 -04:00
runtime(autohotkey): include initial filetype plugin
closes: #15345 Signed-off-by: Peter Aronoff <peter@aronoff.org> Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
parent
6ed8ae837b
commit
a7295ae7f5
1
.github/MAINTAINERS
vendored
1
.github/MAINTAINERS
vendored
@ -114,6 +114,7 @@ runtime/ftplugin/apache.vim @dubgeiser
|
||||
runtime/ftplugin/arduino.vim @k-takata
|
||||
runtime/ftplugin/astro.vim @romainl
|
||||
runtime/ftplugin/asy.vim @avidseeker
|
||||
runtime/ftplugin/autohotkey.vim @telemachus
|
||||
runtime/ftplugin/awk.vim @dkearns
|
||||
runtime/ftplugin/basic.vim @dkearns
|
||||
runtime/ftplugin/bst.vim @tpope
|
||||
|
16
runtime/ftplugin/autohotkey.vim
Normal file
16
runtime/ftplugin/autohotkey.vim
Normal file
@ -0,0 +1,16 @@
|
||||
" Vim filetype plugin file
|
||||
" Language: AutoHotkey
|
||||
" Maintainer: Peter Aronoff <peteraronoff@fastmail.com>
|
||||
" Last Changed: 2024 Jul 25
|
||||
|
||||
if exists("b:did_ftplugin")
|
||||
finish
|
||||
endif
|
||||
let b:did_ftplugin = 1
|
||||
|
||||
setlocal comments=:;
|
||||
setlocal commentstring=;\ %s
|
||||
|
||||
let b:undo_ftplugin = "setlocal comments< commentstring<"
|
||||
|
||||
" vim: nowrap sw=2 sts=2 ts=8 noet:
|
Loading…
x
Reference in New Issue
Block a user