view runtime/ftplugin/lftp.vim @ 31972:4e59c4260d84 v9.0.1318

patch 9.0.1318: code style test fails Commit: https://github.com/vim/vim/commit/f2017f255ddceaad88a951adc6a2c190d3a18ebf Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 17 21:29:57 2023 +0000 patch 9.0.1318: code style test fails Problem: Code style test fails. Solution: Remove trailing white space.
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Feb 2023 22:45:03 +0100
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             lftp(1) 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