maintainer will do with your changes and under what license they
will be distributed is negotiable. If there has been no negotiation
then this license, or a later version, also applies to your changes.
- The current maintainer is Bram Moolenaar <Bram@vim.org>. If this
- changes it will be announced in appropriate places (most likely
+ The current maintainers are listed here: https://github.com/orgs/vim/people.
+ If this changes it will be announced in appropriate places (most likely
vim.sf.net, www.vim.org and/or comp.editors). When it is completely
impossible to contact the maintainer, the obligation to send him
your changes ceases. Once the maintainer has confirmed that he has
lists to discuss them with Vim users and developers:
https://www.vim.org/maillist.php
-If nothing else works, report bugs directly:
- Bram Moolenaar <Bram@vim.org>
+If nothing else works, report bugs directly to the vim-dev mailing list:
+ <vim-dev@vim.org>
## Main author ##
-Send any other comments, patches, flowers and suggestions to:
- Bram Moolenaar <Bram@vim.org>
+Send any other comments, patches, flowers and suggestions to the vim-dev mailing list:
+ <vim-dev@vim.org>
This is `README.md` for version 9.0 of Vim: Vi IMproved.
lists to discuss them with Vim users and developers:
https://www.vim.org/maillist.php
-If nothing else works, report bugs directly:
- Bram Moolenaar <Bram@vim.org>
+If nothing else works, report bugs directly to the vim-dev mailing list:
+ <vim-dev@vim.org>
MAIN AUTHOR
-Send any other comments, patches, flowers and suggestions to:
+Send any other comments, patches, flowers and suggestions to the vim-dev mailing list:
- Bram Moolenaar E-mail: Bram@vim.org
+ <vim-dev@vim.org>
vim9script noclear
# Vim completion script
-# Language: C
-# Maintainer: Bram Moolenaar <Bram@vim.org>
+# Language: C
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
# Rewritten in Vim9 script by github user lacygoill
-# Last Change: 2022 Jan 31
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
var prepended: string
var grepCache: dict<list<dict<any>>>
# Vim functions for file type detection
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last Change: 2023 Jun 09
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
# These functions are moved here from runtime/filetype.vim to make startup
# faster.
# Vim function for detecting a filetype from the file contents.
# Invoked from "scripts.vim" in 'runtimepath'
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last Change: 2023 Jun 09
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
export def DetectFiletype()
var line1 = getline(1)
" Vim autoload file for editing compressed files.
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2016 Sep 28
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" These functions are used by the gzip plugin.
" Vim support file to help with paste mappings and menus
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2019 Jan 27
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Define the string to use for items that are present both in Edit, Popup and
" Toolbar menu. Also used in mswin.vim and macmap.vim.
" Vim script to download a missing spell file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Jul 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if !exists('g:spellfile_URL')
" Always use https:// because it's secure. The certificate is for nluug.nl,
:" Use this script to create the file "bugreport.txt", which contains
:" information about the environment of a possible bug in Vim.
:"
-:" Maintainer: Bram Moolenaar <Bram@vim.org>
-:" Last change: 2019 Jan 27
+:" Maintainer: The Vim Project <https://github.com/vim/vim>
+:" Last change: 2023 Aug 10
+:" Former Maintainer: Bram Moolenaar <Bram@vim.org>
:"
:" To use inside Vim:
:" :so $VIMRUNTIME/bugreport.vim
" Vim color file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2001 Jul 23
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This is the default color scheme. It doesn't define the Normal
" highlighting, it uses whatever the colors used to be.
for how to do it, the format is simple.
If you think a compiler plugin you have written is useful for others, please
-send it to Bram@vim.org.
+send it to the vim-dev mailing list: <vim-dev@vim.org>
" Vim compiler file
" Compiler: Microsoft Visual C
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2014 Sep 20
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("current_compiler")
finish
" The default vimrc file.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2023 May 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
"
" This is loaded if no vimrc file was found.
" Except when Vim is run with "-u NONE" or "-C".
" This Vim script deletes all the menus, so that they can be redefined.
" Warning: This also deletes all menus defined by the user!
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2019 Dec 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
aunmenu *
tlunmenu *
-*intro.txt* For Vim version 9.0. Last change: 2022 Nov 20
+*intro.txt* For Vim version 9.0. Last change: 2023 Aug 09
VIM REFERENCE MANUAL by Bram Moolenaar
3. Send bug reports to: Vim Developers <vim-dev@vim.org>
This is a maillist, you need to become a member first and many people will
see the message. If you don't want that, e.g. because it is a security
- issue, send it to <bugs@vim.org>, this only goes to the Vim maintainer
- (that's Bram).
+ issue, please contact any of the current Vim maintainers
+ https://github.com/orgs/vim/people (but not Bram or the vim-dev ML).
+ In the future, a proper process for handling security issues will be setup.
Please be brief; all the time that is spent on answering mail is subtracted
from the time that is spent on improving Vim! Always give a reproducible
introduce Y2K problems, but those are not really part of Vim itself.
==============================================================================
-3. Credits *credits* *author* *Bram* *Moolenaar*
+3. Credits *credits* *author*
-Most of Vim was created by Bram Moolenaar <Bram@vim.org>.
+Most of Vim was created by Bram Moolenaar <Bram@vim.org> |Bram-Moolenaar|
Parts of the documentation come from several Vi manuals, written by:
W.N. Joy
Bill Foster Athena GUI port (later removed)
Google Lets me work on Vim one day a week
Loic Grenie xvim (ideas for multi windows version)
- Sven Guckes Vim promoter and previous WWW page maintainer
+ Sven Guckes Vim promoter and previous WWW page maintainer |Sven-Guckes|
Darren Hiebert Exuberant ctags
Jason Hildebrand GTK+ 2 port
Bruce Hunsaker improvements for VMS port
Blob eval.txt /*Blob*
Blobs eval.txt /*Blobs*
Boolean eval.txt /*Boolean*
-Bram intro.txt /*Bram*
+Bram version9.txt /*Bram*
+Bram-Moolenaar version9.txt /*Bram-Moolenaar*
BufAdd autocmd.txt /*BufAdd*
BufCreate autocmd.txt /*BufCreate*
BufDelete autocmd.txt /*BufDelete*
MenuPopup autocmd.txt /*MenuPopup*
MiNT os_mint.txt /*MiNT*
ModeChanged autocmd.txt /*ModeChanged*
-Moolenaar intro.txt /*Moolenaar*
+Moolenaar version9.txt /*Moolenaar*
MorphOS os_amiga.txt /*MorphOS*
Motif gui_x11.txt /*Motif*
Myspell spell.txt /*Myspell*
maintainer will do with your changes and under what license they
will be distributed is negotiable. If there has been no negotiation
then this license, or a later version, also applies to your changes.
- The current maintainer is Bram Moolenaar <Bram@vim.org>. If this
- changes it will be announced in appropriate places (most likely
+ The current maintainers are listed here: https://github.com/orgs/vim/people.
+ If this changes it will be announced in appropriate places (most likely
vim.sf.net, www.vim.org and/or comp.editors). When it is completely
impossible to contact the maintainer, the obligation to send him
your changes ceases. Once the maintainer has confirmed that he has
-*version9.txt* For Vim version 9.0. Last change: 2022 Nov 23
+*version9.txt* For Vim version 9.0. Last change: 2023 Aug 09
VIM REFERENCE MANUAL by Bram Moolenaar
He registered the vim.org domain and created the first Vim website. We will
remember him!
+ *Bram* *Moolenaar* *Bram-Moolenaar*
+Vim version 9.1 is dedicated to Bram Moolenaar, who passed away on August 3rd 2023
+while still working full-time on Vim. The Vim project would not exist without
+his ongoing passion to lead and develop Vim and the community for more than 30
+years. Bram was also passionate about his |ICCF| foundation to help children
+in Uganda. If you enjoy using Vim, please consider donating!
+We will miss his guidance, passion and leadership.
+
+Obituary Articles: https://github.com/vim/vim/discussions/12742
+Say Farewell: https://github.com/vim/vim/discussions/12737
+
==============================================================================
NEW FEATURES *new-9*
" Vim script for Evim key bindings
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 May 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Don't use Vi-compatible mode.
set nocompatible
" Vim support file to detect file types
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2023 Jun 09
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Listen very carefully, I will say this only once
if exists("did_load_filetypes")
" Vim support file to switch off detection of file types
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2001 Jun 11
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_load_filetypes")
unlet did_load_filetypes
# Vim support file to switch on loading plugins for file types
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last change: 2022 Feb 11
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("g:did_load_ftplugin")
finish
" Vim filetype plugin file
" Language: Aap recipe
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2021 Nov 14
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: BTM
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2004 Jul 06
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: C
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Apr 08
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: C++
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Jul 26
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: Diff
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2021 Nov 14
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: Mail
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2021 Oct 23
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: Make
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Oct 16
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: Objective C
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2003 Jan 15
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin
" Language: Vim
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2023 Feb 07
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
" Vim filetype plugin file
" Language: Zimbu
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Sep 07
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
# Vim support file to switch off loading plugins for file types
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last Change: 2022 Feb 09
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("g:did_load_ftplugin")
unlet g:did_load_ftplugin
" The commands in this are executed when the GUI is started, after the vimrc
" has been executed.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2016 Apr 05
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
"
" To use it, copy it to
" for Unix: ~/.gvimrc
" Vim support file to switch on loading indent files for file types
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Feb 11
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_indent_on")
finish
inspiration.
If you make a new indent file which would be useful for others, please send it
-to Bram@vim.org. Include instructions for detecting the file type for this
-language, by file name extension or by checking a few lines in the file.
-And please stick to the rules below.
+to the vim-dev mailing list <vim-dev@vim.org>. Include instructions for
+detecting the file type for this language, by file name extension or by
+checking a few lines in the file. And please stick to the rules below.
If you have remarks about an existing file, send them to the maintainer of
that file. Only when you get no response send a message to Bram@vim.org.
" Vim indent file
" Language: Aap recipe
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Jun 24
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
" Vim indent file
" Language: C
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Mar 27
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
" Vim indent file
" Language: C++
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2008 Nov 29
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
" Vim indent file
" Language: CUDA
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2008 Nov 29
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
" Vim indent file
-" Language: Python
-" Maintainer: Bram Moolenaar <Bram@vim.org>
+" Language: Python
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Original Author: David Bustos <bustos@caltech.edu>
-" Last Change: 2021 Sep 26
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
# Vim indent file
# Language: Vim script
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last Change: 2023 Feb 02
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
# Only load this indent file when no other was loaded.
if exists('b:did_indent')
" Vim indent file
" Language: XHTML
-" Maintainer: Bram Moolenaar <Bram@vim.org> (for now)
-" Last Change: 2005 Jun 24
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
" Vim indent file
" Language: Zimbu
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2021 Sep 26
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
" Vim support file to switch off loading indent files for file types
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2001 Jun 11
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_indent_on")
unlet did_indent_on
" Vim script to work like "less"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Dec 17
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Avoid loading this file twice, allow the user to define his own script.
if exists("loaded_less")
vim9script
# Script to define the syntax menu in synmenu.vim
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last Change: 2022 Jun 27
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
# This is used by "make menu" in the src directory.
edit <sfile>:p:h/synmenu.vim
" Vim support file to define the default menus
" You can also use this as a start for your own set of menus.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2023 May 03
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Note that ":an" (short for ":anoremenu") is often used to make a menu work
" in all modes and avoid side effects from mappings defined by the user.
" Set options and add mapping such that Vim behaves a lot like MS-Windows
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2018 Dec 07
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Bail out if this isn't wanted.
if exists("g:skip_loading_mswin") && g:skip_loading_mswin
" These commands create the option window.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Dec 16
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" If there already is an option window, jump to that one.
let buf = bufnr('option-window')
" Vim plugin for editing compressed files.
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2016 Oct 30
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Exit quickly when:
" - this plugin was already loaded
" Vim plugin for showing matching parens
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Dec 01
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Exit quickly when:
" - this plugin was already loaded (or disabled)
" Vim plugin for downloading spell files
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2006 Feb 01
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Exit quickly when:
" - this plugin was already loaded
" Vim support file to detect file types in scripts
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2023 Jun 08
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file is called by an autocommand for every file that has just been
" loaded into a buffer. It checks if the type of file can be recognized by
" Vim support file to define the syntax selection menu
" This file is normally sourced from menu.vim.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Oct 04
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Define the SetSyn function, used for the Syntax menu entries.
" Set 'filetype' and also 'syntax' if it is manually selected.
If you want to write a syntax file, read the docs at ":help usr_44.txt".
If you make a new syntax file which would be useful for others, please send it
-to Bram@vim.org. Include instructions for detecting the file type for this
-language, by file name extension or by checking a few lines in the file.
-And please write the file in a portable way, see ":help 44.12".
+to the vim-dev mailing list <vim-dev@vim.org>. Include instructions for
+detecting the file type for this language, by file name extension or by
+checking a few lines in the file. And please write the file in a portable way,
+see ":help 44.12".
If you have remarks about an existing file, send them to the maintainer of
that file. Only when you get no response send a message to Bram@vim.org.
" Vim syntax file
" Language: A-A-P recipe
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2004 Jun 13
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a syntax file was already loaded
if exists("b:current_syntax")
" Vim syntax file
" Language: C
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2023 Mar 08
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
" Vim script for testing colors
-" Maintainer: Bram Moolenaar <Bram@vim.org>
+" Maintainer: The Vim Project <https://github.com/vim/vim>
" Contributors: Rafael Garcia-Suarez, Charles Campbell
-" Last Change: 2008 Jun 04
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" edit this file, then do ":source %", and check if the colors match
" Vim syntax file
" Language: generic configure file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2021 May 01
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
" Vim syntax file
" Language: CTRL-H (e.g., ASCII manpages)
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Jun 20
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Existing syntax is kept, this file can be used as an addition
" Vim syntax file
" Language: Diff (context or unified)
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Translations by Jakson Alves de Aquino.
-" Last Change: 2020 Dec 30
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Translations by Jakson Alves de Aquino.
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
" Vim syntax file
" Language: Vim help file
-" Maintainer: Bram Moolenaar (Bram@vim.org)
-" Last Change: 2022 Nov 13
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
" Vim syntax support file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2016 Feb 01
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file is used for ":syntax manual".
" It installs the Syntax autocommands, but no the FileType autocommands.
" Vim syntax file
" Language: Model
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Jun 20
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" very basic things only (based on the vgrindefs file).
" If you use this language, please improve it, and send me the patches!
" Vim syntax support file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2006 Apr 16
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file is used for ":syntax off".
" It removes the autocommands and stops highlighting for all buffers.
" Vim syntax file
" Language: Quickfix window
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2001 Jan 15
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a syntax file was already loaded
if exists("b:current_syntax")
" Vim syntax support file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Feb 13
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file sets up the default methods for highlighting.
" It is loaded from "synload.vim" and from Vim for ":syntax reset".
" Vim syntax support file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Apr 12
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file sets up for syntax highlighting.
" It is loaded from "syntax.vim" and "manual.vim".
" Vim syntax support file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Apr 12
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file is used for ":syntax on".
" It installs the autocommands and starts highlighting for all buffers.
" Vim syntax file
" Language: Generic template
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2019 May 06
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
" Vim syntax file
" Language: Vgrindefs
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Jun 20
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" The Vgrindefs file is used to specify a language for vgrind
" Vim syntax file
" Language: Vim .viminfo file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2016 Jun 05
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
#
# Demonstration of a termcap file (for the Amiga and Archimedes)
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last change: 1999 Feb 02
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
#
sx|ansi|any ansi terminal with pessimistic assumptions:\
:co#80:li#24:cl=50\E[;H\E[2J:bs:am:cm=\E[%i%d;%dH:\
" An example for a vimrc file.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2019 Dec 17
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
"
" To use it, copy it to
" for Unix: ~/.vimrc
# something wrong you may need to change one of the other files. If
# you find a clean way to fix the problem, consider sending a note to
# the author of autoconf (bug-gnu-utils@prep.ai.mit.edu) or Vim
-# (Bram@vim.org). Don't bother to do that when you made a hack
+# (vim-dev@vim.org). Don't bother to do that when you made a hack
# solution for a non-standard system.
#
# 4. "make test" {{{1
msg_attr(
// Translator: Please replace the name and email address
// with the appropriate text for your translation.
- _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
+ _("Messages maintainer: The Vim Project"),
HL_ATTR(HLF_T));
}
Remove the "#, fuzzy" line after adding the translation.
There is one special message:
- msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+ msgid "Messages maintainer: The Vim Project"
You should include your name and E-mail address instead, for example:
msgstr "Berichten übersetzt bei: John Doe <john@doe.org>"
Remove "#~" and "#, fuzzy" after adding the translation.
There is one special message:
- msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+ msgid "Messages maintainer: The Vim Project"
You should include your name and E-mail address instead, for example:
msgstr "Berichten übersetzt bei: John Doe <john@doe.org>"
msgid "line %4ld:"
msgstr "reël %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Boodskappe onderhouers: Danie Roux en Jean Jordaan <droux@tuks.co.za>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "línia %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Traducció dels missatges: Ernest Adrogué <nr9@posteo.net>"
msgid "Interrupt: "
msgid "[string too long]"
msgstr "[pøíli\9a dlouhý øetìzec]"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Správce zpráv: Jiøí Pavlovský <jpavlovsky@mbox.vol.cz>"
msgid "Interrupt: "
msgid "[string too long]"
msgstr "[pøíli¹ dlouhý øetìzec]"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Správce zpráv: Jiøí Pavlovský <jpavlovsky@mbox.vol.cz>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Ugyldigt registernavn: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Oversætter: scootergrisen"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "Zeile %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Übersetzt von Christian Brabandt <cb@256bit.org>"
msgid "Interrupt: "
msgid "+reverse\t\tDon't use reverse video (also: +rv)"
msgstr "+reverse\t\tDo not use reverse video (also: +rv)"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Messages maintainer: Mike Williams <mrw@eandem.co.uk>"
msgid "VIM: Can't open window!\n"
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Nevalida nomo de reĝistro: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Flegado de mesaĝoj: Dominique PELLÉ <dominique.pelle@gmail.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "línea %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"Traducción: Proyecto vim-doc-es <https://www.assembla.com/wiki/show/vim-doc-"
"es>, Victorhck <victorhck@opensuse.org>"
msgid "line %4ld:"
msgstr "rivi %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Käännöksen ylläpitäjä: Flammie Pirinen <flammie@iki.fi>"
msgid "Interrupt: "
msgstr "E354: Nom de registre invalide : '%s'"
# DB - todo : mettre à jour ?
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Maintenance des messages : Dominique Pellé <dominique.pelle@gmail.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "líne %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"Cothaitheoir na dteachtaireachtaí: Kevin P. Scannell <kscanne@gmail.com>"
#. Translator: Please replace the name and email address
#. with the appropriate text for your translation.
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Manutentore messaggi: Antonio Colombo <azc100@gmail.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "¹Ô %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "ÆüËܸì¥á¥Ã¥»¡¼¥¸ËÝÌõ/´Æ½¤: ¼²¬ ÂÀϺ <koron.kaoriya@gmail.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "行 %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "日本語メッセージ翻訳/監修: 村岡 太郎 <koron.kaoriya@gmail.com>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: 잘못된 레지스터 이름: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "메시지 관리자: SungHyun Nam <goweol@gmail.com>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: À߸øµÈ ·¹Áö½ºÅÍ À̸§: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "¸Þ½ÃÁö °ü¸®ÀÚ: SungHyun Nam <goweol@gmail.com>"
msgid "Interrupt: "
msgid "E304: ml_upd_block0(): Didn't get block 0??"
msgstr "E304: ml_upd_block0(): Neizdevās iegūt bloku 0??"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Messages maintainer: Valdis Vitolins <valdis.vitolins@odo.lv>"
msgid "Keys don't match!"
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Ugyldig registernavn: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"Vedlikeholder for norsk oversettelse: Øyvind A. Holm <sunny@sunbase.org>"
#~ msgid "E354: Invalid register name: '%s'"
#~ msgstr ""
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Vertaald door: Erwin Poeze <erwin.poeze@gmail.com>"
#~ msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Ugyldig registernavn: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"Vedlikeholder for norsk oversettelse: Øyvind A. Holm <sunny@sunbase.org>"
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Niewłaściwa nazwa rejestru: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Opiekun komunikatów: Mikołaj Machowski <mikmach@wp.pl>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Niew³a\9cciwa nazwa rejestru: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Opiekun komunikatów: Miko³aj Machowski <mikmach@wp.pl>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Niew³a¶ciwa nazwa rejestru: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Opiekun komunikatów: Miko³aj Machowski <mikmach@wp.pl>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Nome de registrador inválido: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Tradutor das mensagens: Eduardo Dobay <edudobay@gmail.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "ñòðîêà %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"Ïåðåâîä ñîîáùåíèé íà ðóññêèé ÿçûê: Âàñèëèé Ðàãîçèí <vrr@users.sourceforge."
"net>, Ñåðãåé Àë¸øèí <alyoshin.s@gmail.com>, Ìàòâåé Òàðàñîâ "
msgid "line %4ld:"
msgstr "строка %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"Перевод сообщений на русский язык: Василий Рагозин <vrr@users.sourceforge."
"net>, Сергей Алёшин <alyoshin.s@gmail.com>, Матвей Тарасов "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: '%s' nie je prístupné meno registru"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Správca prekladu: Lubomir Host <rajo@platon.sk>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: '%s' nie je prístupné meno registru"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Správca prekladu: Lubomir Host <rajo@platon.sk>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "линија %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Поруке одржава: Иван Пешић <ivan.pesic@gmail.com>"
msgid "Interrupt: "
msgid "E354: Invalid register name: '%s'"
msgstr "E354: Otillåtet registernamn: '%s'"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Meddelandeansvarig: Johan Svedberg <johan@svedberg.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "satır %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Türkçeye çeviren: Emir SARI <emir_sari@icloud.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "ðÿäîê %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Óêðà¿í³çàö³ÿ: Àíàòîë³é Ñàõí³ê <sakhnik@gmail.com>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "рядок %4ld:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "Українізація: Анатолій Сахнік <sakhnik@gmail.com>"
msgid "Interrupt: "
msgid "[string too long]"
msgstr "[chuỗi quá dài]"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"Bản dịch các thông báo sang tiếng Việt: Phan Vĩnh Thịnh <teppi@vnlinux.org>"
msgid "line %4ld:"
msgstr "第 %4ld 行:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "简体中文消息维护者: Yuheng Xie <elephant@linux.net.cn>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "µÚ %4ld ÐÐ:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "¼òÌåÖÐÎÄÏûϢά»¤Õß: Yuheng Xie <elephant@linux.net.cn>"
msgid "Interrupt: "
msgid "line %4ld:"
msgstr "µÚ %4ld ÐÐ:"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr "¼òÌåÖÐÎÄÏûϢά»¤Õß: Yuheng Xie <elephant@linux.net.cn>"
msgid "Interrupt: "
msgid "[string too long]"
msgstr "[此行過長]"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"正體中文訊息維護者: Francis S.Lin <piaip@csie.ntu.edu."
"tw>, Cecil Sheng <b7506022@csie.ntu.edu.tw>"
msgid "[string too long]"
msgstr "[¦¹¦æ¹Lªø]"
-msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>"
+msgid "Messages maintainer: The Vim Project"
msgstr ""
"¥¿Å餤¤å°T®§ºûÅ@ªÌ: Francis S.Lin <piaip@csie.ntu.edu."
"tw>, Cecil Sheng <b7506022@csie.ntu.edu.tw>"