view runtime/ftplugin/elinks.vim @ 17924:dbe02cca67aa v8.1.1958

patch 8.1.1958: old style comments taking up space Commit: https://github.com/vim/vim/commit/c33083592846c8d4b2d6fae499536b9d578fe10d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 1 16:24:56 2019 +0200 patch 8.1.1958: old style comments taking up space Problem: Old style comments taking up space. Solution: Change to new style comments.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Sep 2019 16:30:03 +0200
parents 1218c5353e2b
children
line wrap: on
line source

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