view runtime/ftplugin/xmodmap.vim @ 15792:920c1e26c8aa v8.1.0903

patch 8.1.0903: struct uses more bytes than needed commit https://github.com/vim/vim/commit/beb7574d6b0eea1cae70aa2913a690da56de5307 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 12 22:33:00 2019 +0100 patch 8.1.0903: struct uses more bytes than needed Problem: Struct uses more bytes than needed. Solution: Reorder members of regitem_S. (Dominique Pelle, closes https://github.com/vim/vim/issues/3936)
author Bram Moolenaar <Bram@vim.org>
date Tue, 12 Feb 2019 22:45:05 +0100
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             xmodmap(1) definition file
" Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
" Latest Revision:      2008-07-09

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

let s:cpo_save = &cpo
set cpo&vim

let b:undo_ftplugin = "setl com< cms< fo<"

setlocal comments=:! commentstring=!\ %s formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save