view runtime/ftplugin/sshconfig.vim @ 22578:381bd66762ea v8.2.1837

patch 8.2.1837: using "gn" after "gN" does not work Commit: https://github.com/vim/vim/commit/c07b7f701fb30d26112051e4ec737c7e3db72357 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 11 20:44:15 2020 +0200 patch 8.2.1837: using "gn" after "gN" does not work Problem: Using "gn" after "gN" does not work. Solution: Extend the other end of the Visual area. (closes https://github.com/vim/vim/issues/7109)
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Oct 2020 20:45:03 +0200
parents 1218c5353e2b
children d23645a0aca8
line wrap: on
line source

" Vim filetype plugin file
" Language:             OpenSSH client 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