view runtime/ftplugin/logindefs.vim @ 31075:9fe10dc9aeec v9.0.0872

patch 9.0.0872: code is indented more than needed Commit: https://github.com/vim/vim/commit/623e94e13810e109c6aa201bcf3a8278429502f3 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Nov 13 18:11:17 2022 +0000 patch 9.0.0872: code is indented more than needed Problem: Code is indented more than needed. Solution: Return early. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/11538)
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Nov 2022 19:15:04 +0100
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             login.defs(5) 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