mirror of
https://github.com/neovim/neovim.git
synced 2026-05-06 16:29:57 -04:00
f038213617
closes: vim/vim#17516 https://github.com/vim/vim/commit/e4c157b9c1225a733a5ff73a5325a35996c07559 Co-authored-by: jtmr05 <62111562+jtmr05@users.noreply.github.com>
20 lines
453 B
VimL
20 lines
453 B
VimL
" Vim syntax file
|
|
" Language: groff(7)
|
|
" Maintainer: Eisuke Kawashima ( e.kawaschima+vim AT gmail.com )
|
|
" Last Change: 2025 Apr 24
|
|
" 2025 Jun 18 by Vim Project: update commentstring option (#17516)
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
|
|
let b:nroff_is_groff = 1
|
|
|
|
runtime! ftplugin/nroff.vim
|
|
|
|
setlocal commentstring=\\#\ %s
|
|
setlocal comments=:\\#,:.\\\",:\\\",:'\\\",:'''
|
|
|
|
let b:undo_ftplugin .= '| unlet! b:nroff_is_groff'
|
|
let b:did_ftplugin = 1
|