view runtime/ftplugin/xf86conf.vim @ 23167:2b2561f8602e v8.2.2129

patch 8.2.2129: MS-Windows: Checking if a file name is absolute is slow Commit: https://github.com/vim/vim/commit/0ea7421ae6618fe8efe9e3afc8fdcf7a4d89739a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 11 20:10:50 2020 +0100 patch 8.2.2129: MS-Windows: Checking if a file name is absolute is slow Problem: MS-Windows: Checking if a file name is absolute is slow. Solution: Do not use mch_FullName(). (closes https://github.com/vim/vim/issues/7033)
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Dec 2020 20:15:03 +0100
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             XFree86 Configuration 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