view runtime/ftplugin/gyp.vim @ 30908:11115c806541 v9.0.0788

patch 9.0.0788: ModeChanged autocmd not executed when Visual ends with CTRL-C Commit: https://github.com/vim/vim/commit/61c4b04799bf114cadc3bbf212ae8b2ad22a6980 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 18 15:10:11 2022 +0100 patch 9.0.0788: ModeChanged autocmd not executed when Visual ends with CTRL-C Problem: ModeChanged autocmd not executed when Visual mode is ended with CTRL-C. Solution: Do not trigger the autocmd when got_int is set. (closes #11394)
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Oct 2022 16:15:04 +0200
parents 1e91e26ceebf
children
line wrap: on
line source

" Vim filetype plugin
" Language:	GYP
" Maintainer:	ObserverOfTime <chronobserver@disroot.org>
" Last Change:	2022 Sep 27

if exists('b:did_ftplugin')
  finish
endif
let b:did_ftplugin = 1

setlocal formatoptions-=t
setlocal commentstring=#\ %s comments=b:#,fb:-

let b:undo_ftplugin = 'setlocal fo< cms< com<'