mirror of
https://github.com/vim/vim
synced 2025-07-16 09:12:00 +00:00
updated for version 7.0c02
This commit is contained in:
1
Filelist
1
Filelist
@ -362,6 +362,7 @@ SRC_MAC = \
|
||||
src/dehqx.py \
|
||||
src/gui_mac.c \
|
||||
src/gui_mac.icns \
|
||||
src/doc-txt.icns \
|
||||
src/os_mac.h \
|
||||
src/os_mac.rsr.hqx \
|
||||
src/os_mac_conv.c \
|
||||
|
@ -1,4 +1,4 @@
|
||||
*insert.txt* For Vim version 7.0c. Last change: 2006 Mar 21
|
||||
*insert.txt* For Vim version 7.0c. Last change: 2006 Mar 28
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
@ -304,9 +304,11 @@ insert mode:
|
||||
|
||||
*i_CTRL-X_CTRL-E*
|
||||
CTRL-X CTRL-E scroll window one line up.
|
||||
When doing completion look here: |complete_CTRL-E|
|
||||
|
||||
*i_CTRL-X_CTRL-Y*
|
||||
CTRL-X CTRL-Y scroll window one line down.
|
||||
When doing completion look here: |complete_CTRL-Y|
|
||||
|
||||
After CTRL-X is pressed, each CTRL-E (CTRL-Y) scrolls the window up (down) by
|
||||
one line unless that would cause the cursor to move from its current position
|
||||
@ -590,6 +592,16 @@ and CTRL-P (previous).
|
||||
|
||||
Also see the 'infercase' option if you want to adjust the case of the match.
|
||||
|
||||
*complete_CTRL-E*
|
||||
When completion is active you can use CTRL-E to stop it and go back to the
|
||||
orignally typed text. The CTRL-E will not be inserted.
|
||||
|
||||
*complete_CTRL-Y*
|
||||
When the popup menu is displayed you can use CTRL-Y to stop completion and
|
||||
accept the currently selected entry. The CTRL-Y is not inserted. Typing a
|
||||
space, Enter, or some other unprintable character will leave completion mode
|
||||
and insert that typed character.
|
||||
|
||||
Note: The keys that are valid in CTRL-X mode are not mapped. This allows for
|
||||
":map ^F ^X^F" to work (where ^F is CTRL-F and ^X is CTRL-X). The key that
|
||||
ends CTRL-X mode (any key that is not a valid CTRL-X mode command) is mapped.
|
||||
@ -1121,7 +1133,8 @@ any printable, non-white character:
|
||||
Add this character and reduce the number of matches.
|
||||
|
||||
In both states these can be used:
|
||||
<CR> and <Enter> Accept the currently selected match and stop completion.
|
||||
CTRL-Y Yes: Accept the currently selected match and stop completion.
|
||||
CTRL-E End completion, go back to what was typed.
|
||||
<PageUp> Select a match several entries back, but don't insert it.
|
||||
<PageDown> Select a match several entries further, but don't insert it.
|
||||
<Up> Select the previous match, as if CTRL-P was used, but don't
|
||||
|
@ -1,4 +1,4 @@
|
||||
*syntax.txt* For Vim version 7.0c. Last change: 2006 Mar 12
|
||||
*syntax.txt* For Vim version 7.0c. Last change: 2006 Mar 28
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
@ -1945,6 +1945,19 @@ x > 0 to sync at least x lines backwards,
|
||||
x = 0 to sync from start.
|
||||
|
||||
|
||||
PLAINTEX *plaintex.vim* *ft-plaintex-syntax*
|
||||
|
||||
TeX is a typesetting language, and plaintex is the file type for the "plain"
|
||||
variant of TeX. If you never want your *.tex files recognized as plain TeX,
|
||||
see |ft-tex-plugin|.
|
||||
|
||||
This syntax file has the option >
|
||||
|
||||
let g:plaintex_delimiters = 1
|
||||
|
||||
if you want to highlight brackets "[]" and braces "{}".
|
||||
|
||||
|
||||
PPWIZARD *ppwiz.vim* *ft-ppwiz-syntax*
|
||||
|
||||
PPWizard is a preprocessor for HTML and OS/2 INF files
|
||||
|
@ -4720,6 +4720,8 @@ compl-whole-line insert.txt /*compl-whole-line*
|
||||
complete() eval.txt /*complete()*
|
||||
complete-functions insert.txt /*complete-functions*
|
||||
complete-items insert.txt /*complete-items*
|
||||
complete_CTRL-E insert.txt /*complete_CTRL-E*
|
||||
complete_CTRL-Y insert.txt /*complete_CTRL-Y*
|
||||
complete_add() eval.txt /*complete_add()*
|
||||
complete_check() eval.txt /*complete_check()*
|
||||
complex-change change.txt /*complex-change*
|
||||
@ -5285,6 +5287,7 @@ ft-php-omni insert.txt /*ft-php-omni*
|
||||
ft-php-syntax syntax.txt /*ft-php-syntax*
|
||||
ft-php3-syntax syntax.txt /*ft-php3-syntax*
|
||||
ft-phtml-syntax syntax.txt /*ft-phtml-syntax*
|
||||
ft-plaintex-syntax syntax.txt /*ft-plaintex-syntax*
|
||||
ft-postscr-syntax syntax.txt /*ft-postscr-syntax*
|
||||
ft-ppwiz-syntax syntax.txt /*ft-ppwiz-syntax*
|
||||
ft-printcap-syntax syntax.txt /*ft-printcap-syntax*
|
||||
@ -6465,6 +6468,7 @@ pi_gzip.txt pi_gzip.txt /*pi_gzip.txt*
|
||||
pi_netrw.txt pi_netrw.txt /*pi_netrw.txt*
|
||||
pi_paren.txt pi_paren.txt /*pi_paren.txt*
|
||||
pi_spec.txt pi_spec.txt /*pi_spec.txt*
|
||||
plaintex.vim syntax.txt /*plaintex.vim*
|
||||
plsql sql.txt /*plsql*
|
||||
plugin usr_05.txt /*plugin*
|
||||
plugin-details filetype.txt /*plugin-details*
|
||||
|
@ -1,4 +1,4 @@
|
||||
*todo.txt* For Vim version 7.0c. Last change: 2006 Mar 27
|
||||
*todo.txt* For Vim version 7.0c. Last change: 2006 Mar 28
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
@ -30,12 +30,11 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
|
||||
*known-bugs*
|
||||
-------------------- Known bugs and current work -----------------------
|
||||
|
||||
In completion using Enter to accept the current match causes trouble.
|
||||
Leave it out? Typing a space already works
|
||||
|
||||
The 16 bit DOS version compiles now, but it's still too low on memory, writing
|
||||
a file fails when 'writebackup' is set.
|
||||
|
||||
Have argv() return the arguments in a List.
|
||||
|
||||
New Hungarian dictionary. (Laci Nemeth)
|
||||
test COMPOUNDFORBIDFLAG
|
||||
implement use of COMPOUNDPERMITFLAG
|
||||
@ -43,10 +42,16 @@ New Hungarian dictionary. (Laci Nemeth)
|
||||
implement using CHECKCOMPOUNDPATTERN: match words with sl_comppat[].
|
||||
explain the use of affix flags, replace |spell-affix-rare|
|
||||
|
||||
Mac: When started from finder path isn't set and curdir is /.
|
||||
Benji Fisher suggests using system() (2006 Mar 26)
|
||||
|
||||
Mac: reported default for $VIM is /Applications/share/vim
|
||||
- Set user variables to the names of the actually used user vimrc file,
|
||||
the first directory looked for user plugins/syntax files.
|
||||
$MYVIMRC for .vimrc, $MYGVIMRC for .gvimrc, $MYRUNTIME/plugin for
|
||||
runtime files?
|
||||
Also: when the environment variable exists, use it. If it doesn't
|
||||
exist, set it. Requires good names: $VIM_USER_VIMRC $VIM_USER_DIR
|
||||
Add a menu item "Preferences" that does "sp $MYVIMRC".
|
||||
- The Replace dialog takes "\r" literal, unless "replace all" is used.
|
||||
Need to escape backslashes.
|
||||
Win32: the text to replace with isn't remembered.
|
||||
|
||||
Add more tests for all new functionality in Vim 7. Especially new functions.
|
||||
|
||||
@ -132,16 +137,6 @@ Awaiting updated patches:
|
||||
- findmatch() should be adjusted for Lisp. See remark at
|
||||
get_lisp_indent(). Esp. \( and \) should be skipped. (Dorai Sitaram,
|
||||
incomplete patch Mar 18)
|
||||
- Set user variables to the names of the actually used user vimrc file,
|
||||
the first directory looked for user plugins/syntax files.
|
||||
$MYVIMRC for .vimrc, $MYGVIMRC for .gvimrc, $MYRUNTIME/plugin for
|
||||
runtime files?
|
||||
Also: when the environment variable exists, use it. If it doesn't
|
||||
exist, set it. Requires good names: $VIM_USER_VIMRC $VIM_USER_DIR
|
||||
Add a menu item "Preferences" that does "sp $MYVIMRC".
|
||||
- The Replace dialog takes "\r" literal, unless "replace all" is used.
|
||||
Need to escape backslashes.
|
||||
Win32: the text to replace with isn't remembered.
|
||||
- For GUI Find/Replace dialog support using a regexp. Patch for Motif
|
||||
and GTK by degreneir (nov 10 and nov 18).
|
||||
- Patch for "paranoid mode" by Kevin Collins, March 7. Needs much more work.
|
||||
|
@ -1,4 +1,4 @@
|
||||
*version7.txt* For Vim version 7.0c. Last change: 2006 Mar 27
|
||||
*version7.txt* For Vim version 7.0c. Last change: 2006 Mar 28
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
@ -77,6 +77,9 @@ was being edited by another Vim. Vim now gives an error message |E768|.
|
||||
|
||||
The support for Mac OS 9 has been removed.
|
||||
|
||||
Files ending in .tex now have 'filetype' set to "context", "plaintex", or
|
||||
"tex". |ft-tex-plugin|
|
||||
|
||||
|
||||
Minor incompatibilities:
|
||||
|
||||
@ -876,6 +879,7 @@ context syntax and ftplugin file. (Nikolai Weibull)
|
||||
CRM114 ftplugin file. (Nikolai Weibull)
|
||||
cvs RC ftplugin file. (Nikolai Weibull)
|
||||
D indent file. (Jason Mills)
|
||||
Debian Sources.list syntax file. (Matthijs Mohlmann)
|
||||
dictconf and dictdconf syntax, indent and ftplugin files. (Nikolai Weibull)
|
||||
diff ftplugin file. (Bram Moolenaar)
|
||||
dircolors ftplugin file. (Nikolai Weibull)
|
||||
@ -917,7 +921,7 @@ Pascal indent file. (Neil Carter)
|
||||
passwd syntax and ftplugin file. (Nikolai Weibull)
|
||||
PHP compiler plugin. (Doug Kearns)
|
||||
pinfo ftplugin file. (Nikolai Weibull)
|
||||
plaintex ftplugin file. (Benji Fisher)
|
||||
plaintex syntax and ftplugin files. (Nikolai Weibull, Benji Fisher)
|
||||
procmail ftplugin file. (Nikolai Weibull)
|
||||
prolog ftplugin file. (Nikolai Weibull)
|
||||
protocols syntax and ftplugin file. (Nikolai Weibull)
|
||||
@ -997,6 +1001,9 @@ Mac: better integration with Xcode. Post a fake mouse-up event after the odoc
|
||||
event and the drag receive handler to work around a stall after Vim loads a
|
||||
file. Fixed an off-by-one line number error. (Da Woon Jung)
|
||||
|
||||
Mac: When started from Finder change directory to the file being edited or the
|
||||
user home directory.
|
||||
|
||||
Added the t_SI and t_EI escape sequences for starting and ending Insert mode.
|
||||
GUI font selector for Motif. (Marcin Dalecki)
|
||||
|
||||
@ -2223,5 +2230,13 @@ change.
|
||||
|
||||
Win32: added menu to GUI tab pages line. (Yegappan Lakshmanan)
|
||||
|
||||
Mac: Added document icons. (Benji Fisher)
|
||||
|
||||
Insert mode completion: Using Enter to accept the current match causes
|
||||
confusion. Use CTRL-Y instead. Also, use CTRL-E to go back to the typed
|
||||
text.
|
||||
|
||||
GUI: When there are left and righ scrollbars, ":tabedit" kept them instead of
|
||||
using the one that isn't needed.
|
||||
|
||||
vim:tw=78:ts=8:ft=help:norl:
|
||||
|
@ -1,7 +1,7 @@
|
||||
" Vim support file to detect file types
|
||||
"
|
||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||
" Last Change: 2006 Mar 26
|
||||
" Last Change: 2006 Mar 28
|
||||
|
||||
" Listen very carefully, I will say this only once
|
||||
if exists("did_load_filetypes")
|
||||
@ -475,6 +475,9 @@ au BufNewFile,BufRead *.si setf cuplsim
|
||||
" Debian Control
|
||||
au BufNewFile,BufRead */debian/control setf debcontrol
|
||||
|
||||
" Debian Sources.list
|
||||
au BufNewFile,BufRead /etc/apt/sources.list setf debsources
|
||||
|
||||
" ROCKLinux package description
|
||||
au BufNewFile,BufRead *.desc setf desc
|
||||
|
||||
@ -2005,6 +2008,9 @@ au BufNewFile,BufRead [cC]hange[lL]og*
|
||||
" Crontab
|
||||
au BufNewFile,BufRead crontab,crontab.* call s:StarSetf('crontab')
|
||||
|
||||
" Debian Sources.list
|
||||
au BufNewFile,BufRead /etc/apt/sources.list.d/* call s:StarSetf('debsources')
|
||||
|
||||
" Dracula
|
||||
au BufNewFile,BufRead drac.* call s:StarSetf('dracula')
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
" Vim filetype plugin file
|
||||
" Language: man
|
||||
" Maintainer: Nam SungHyun <namsh@kldp.org>
|
||||
" Last Change: 2003 Dec 24
|
||||
" Last Change: 2006 Mar 28
|
||||
|
||||
" To make the ":Man" command available before editing a manual page, source
|
||||
" this script from your startup vimrc file.
|
||||
@ -23,7 +23,7 @@ if &filetype == "man"
|
||||
if !hasmapto('<Plug>ManBS')
|
||||
nmap <buffer> <LocalLeader>h <Plug>ManBS
|
||||
endif
|
||||
nnoremap <buffer> <Plug>ManBS :%s/.\b//g<CR>:set nomod<CR>''
|
||||
nnoremap <buffer> <Plug>ManBS :%s/.\b//g<CR>:setl nomod<CR>''
|
||||
|
||||
nnoremap <buffer> <c-]> :call <SID>PreGetPage(v:count)<CR>
|
||||
nnoremap <buffer> <c-t> :call <SID>PopPage()<CR>
|
||||
@ -137,9 +137,9 @@ func <SID>GetPage(...)
|
||||
endif
|
||||
silent exec "edit $HOME/".page.".".sect."~"
|
||||
" Avoid warning for editing the dummy file twice
|
||||
set buftype=nofile noswapfile
|
||||
setl buftype=nofile noswapfile
|
||||
|
||||
set ma
|
||||
setl ma
|
||||
silent exec "norm 1GdG"
|
||||
let $MANWIDTH = winwidth(0)
|
||||
silent exec "r!/usr/bin/man ".s:GetCmdArg(sect, page)." | col -b"
|
||||
|
@ -2,7 +2,7 @@
|
||||
"
|
||||
" Menu Translations: Japanese (EUC-JP)
|
||||
" Translated By: MURAOKA Taro <koron@tka.att.ne.jp>
|
||||
" Last Change: 04-Feb-2006.
|
||||
" Last Change: 28-Mar-2006.
|
||||
|
||||
" Quit when menu translations have already been done.
|
||||
if exists("did_menu_trans")
|
||||
@ -30,6 +30,7 @@ let g:menutrans_help_dialog = "
|
||||
menutrans &File <09>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&F)
|
||||
menutrans &Open\.\.\.<Tab>:e <09><><EFBFBD><EFBFBD>(&O)\.\.\.<Tab>:e
|
||||
menutrans Sp&lit-Open\.\.\.<Tab>:sp ʬ<EFBFBD>䤷<EFBFBD>Ƴ<EFBFBD><EFBFBD><EFBFBD>(&L)\.\.\.<Tab>:sp
|
||||
menutrans Open\ Tab\.\.\.<Tab>:tabnew <09><><EFBFBD>֥ڡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>dz<EFBFBD><EFBFBD><EFBFBD><Tab>:tabnew
|
||||
menutrans &New<Tab>:enew <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&N)<Tab>:enew
|
||||
menutrans &Close<Tab>:close <09>Ĥ<EFBFBD><EFBFBD><EFBFBD>(&C)<Tab>:close
|
||||
menutrans &Save<Tab>:w <09><>¸(&S)<Tab>:w
|
||||
@ -51,7 +52,7 @@ menutrans &Paste<Tab>"+gP Ž
|
||||
menutrans Put\ &Before<Tab>[p <09><><EFBFBD><EFBFBD>Ž<EFBFBD><EFBFBD>(&B)<Tab>[p
|
||||
menutrans Put\ &After<Tab>]p <09><><EFBFBD><EFBFBD>Ž<EFBFBD><EFBFBD>(&A)<Tab>]p
|
||||
menutrans &Delete<Tab>x <09>ä<EFBFBD>(&D)<Tab>x
|
||||
menutrans &Select\ All<Tab>ggVG <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&S)<Tab>ggvG
|
||||
menutrans &Select\ All<Tab>ggVG <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&S)<Tab>ggVG
|
||||
menutrans &Find\.\.\. <09><><EFBFBD><EFBFBD>(&F)\.\.\.
|
||||
menutrans &Find<Tab>/ <09><><EFBFBD><EFBFBD>(&F)<Tab>/
|
||||
menutrans Find\ and\ Rep&lace\.\.\. <09>ִ<EFBFBD>(&L)\.\.\.
|
||||
@ -150,7 +151,7 @@ menutrans &Spell\ Check\ On
|
||||
menutrans Spell\ Check\ &Off <09><><EFBFBD>ڥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD>ͭ<EFBFBD><EFBFBD>(&O)
|
||||
menutrans To\ &Next\ error<Tab>]s <09><><EFBFBD>Υ<EFBFBD><EFBFBD>顼(&N)<Tab>]s
|
||||
menutrans To\ &Previous\ error<Tab>[s <09><><EFBFBD>Υ<EFBFBD><EFBFBD>顼(&P)<Tab>[s
|
||||
menutrans Suggest\ &Corrections<Tab>z? <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&C)<Tab>z?
|
||||
menutrans Suggest\ &Corrections<Tab>z= <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&C)<Tab>z=
|
||||
menutrans &Repeat\ correction<Tab>:spellrepall <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F2B7ABA4>֤<EFBFBD>(&R)<Tab>:spellrepall
|
||||
menutrans Set\ language\ to\ "en" <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ "en"\ <20><><EFBFBD><EFBFBD><EFBFBD>ꤹ<EFBFBD><EFBFBD>
|
||||
menutrans Set\ language\ to\ "en_au" <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ "en_au"\ <20><><EFBFBD><EFBFBD><EFBFBD>ꤹ<EFBFBD><EFBFBD>
|
||||
|
@ -2,7 +2,7 @@
|
||||
"
|
||||
" Menu Translations: Japanese (UTF-8)
|
||||
" Translated By: MURAOKA Taro <koron@tka.att.ne.jp>
|
||||
" Last Change: 04-Feb-2006.
|
||||
" Last Change: 06-Feb-2006.
|
||||
|
||||
" Quit when menu translations have already been done.
|
||||
if exists("did_menu_trans")
|
||||
@ -30,6 +30,7 @@ let g:menutrans_help_dialog = "ヘルプを検索したいコマンドもしく
|
||||
menutrans &File ファイル(&F)
|
||||
menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e
|
||||
menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp
|
||||
menutrans Open\ Tab\.\.\.<Tab>:tabnew タブページで開く<Tab>:tabnew
|
||||
menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew
|
||||
menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close
|
||||
menutrans &Save<Tab>:w 保存(&S)<Tab>:w
|
||||
@ -51,7 +52,7 @@ menutrans &Paste<Tab>"+gP 貼り付け(&P)<Tab>"+gP
|
||||
menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p
|
||||
menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p
|
||||
menutrans &Delete<Tab>x 消す(&D)<Tab>x
|
||||
menutrans &Select\ All<Tab>ggVG 全て選択(&S)<Tab>ggvG
|
||||
menutrans &Select\ All<Tab>ggVG 全て選択(&S)<Tab>ggVG
|
||||
menutrans &Find\.\.\. 検索(&F)\.\.\.
|
||||
menutrans &Find<Tab>/ 検索(&F)<Tab>/
|
||||
menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\.
|
||||
@ -150,7 +151,7 @@ menutrans &Spell\ Check\ On スペルチェック有効(&S)
|
||||
menutrans Spell\ Check\ &Off スペルチェック有効(&O)
|
||||
menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s
|
||||
menutrans To\ &Previous\ error<Tab>[s 前のエラー(&P)<Tab>[s
|
||||
menutrans Suggest\ &Corrections<Tab>z? 修正候補(&C)<Tab>z?
|
||||
menutrans Suggest\ &Corrections<Tab>z= 修正候補(&C)<Tab>z=
|
||||
menutrans &Repeat\ correction<Tab>:spellrepall 修正を繰り返す(&R)<Tab>:spellrepall
|
||||
menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する
|
||||
menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する
|
||||
|
@ -2,7 +2,7 @@
|
||||
"
|
||||
" Menu Translations: Japanese (CP932)
|
||||
" Translated By: MURAOKA Taro <koron@tka.att.ne.jp>
|
||||
" Last Change: 04-Feb-2006.
|
||||
" Last Change: 28-Mar-2006.
|
||||
|
||||
" Quit when menu translations have already been done.
|
||||
if exists("did_menu_trans")
|
||||
@ -30,6 +30,7 @@ let g:menutrans_help_dialog = "
|
||||
menutrans &File <09>t<EFBFBD>@<40>C<EFBFBD><EFBFBD>(&F)
|
||||
menutrans &Open\.\.\.<Tab>:e <09>J<EFBFBD><EFBFBD>(&O)\.\.\.<Tab>:e
|
||||
menutrans Sp&lit-Open\.\.\.<Tab>:sp <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĊJ<EFBFBD><EFBFBD>(&L)\.\.\.<Tab>:sp
|
||||
menutrans Open\ Tab\.\.\.<Tab>:tabnew <09>^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD>ŊJ<EFBFBD><EFBFBD><Tab>:tabnew
|
||||
menutrans &New<Tab>:enew <09>V<EFBFBD>K<EFBFBD>쐬(&N)<Tab>:enew
|
||||
menutrans &Close<Tab>:close <09><EFBFBD><C282><EFBFBD>(&C)<Tab>:close
|
||||
menutrans &Save<Tab>:w <09>ۑ<EFBFBD>(&S)<Tab>:w
|
||||
@ -51,7 +52,7 @@ menutrans &Paste<Tab>"+gP
|
||||
menutrans Put\ &Before<Tab>[p <09>O<EFBFBD>ɓ\<5C><>(&B)<Tab>[p
|
||||
menutrans Put\ &After<Tab>]p <09><><EFBFBD>ɓ\<5C><>(&A)<Tab>]p
|
||||
menutrans &Delete<Tab>x <09><><EFBFBD><EFBFBD>(&D)<Tab>x
|
||||
menutrans &Select\ All<Tab>ggVG <09>S<EFBFBD>đI<EFBFBD><EFBFBD>(&S)<Tab>ggvG
|
||||
menutrans &Select\ All<Tab>ggVG <09>S<EFBFBD>đI<EFBFBD><EFBFBD>(&S)<Tab>ggVG
|
||||
menutrans &Find\.\.\. <09><><EFBFBD><EFBFBD>(&F)\.\.\.
|
||||
menutrans &Find<Tab>/ <09><><EFBFBD><EFBFBD>(&F)<Tab>/
|
||||
menutrans Find\ and\ Rep&lace\.\.\. <09>u<EFBFBD><EFBFBD>(&L)\.\.\.
|
||||
@ -150,7 +151,7 @@ menutrans &Spell\ Check\ On
|
||||
menutrans Spell\ Check\ &Off <09>X<EFBFBD>y<EFBFBD><EFBFBD><EFBFBD>`<60>F<EFBFBD>b<EFBFBD>N<EFBFBD>L<EFBFBD><EFBFBD>(&O)
|
||||
menutrans To\ &Next\ error<Tab>]s <09><><EFBFBD>̃G<EFBFBD><EFBFBD><EFBFBD>[(&N)<Tab>]s
|
||||
menutrans To\ &Previous\ error<Tab>[s <09>O<EFBFBD>̃G<EFBFBD><EFBFBD><EFBFBD>[(&P)<Tab>[s
|
||||
menutrans Suggest\ &Corrections<Tab>z? <09>C<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&C)<Tab>z?
|
||||
menutrans Suggest\ &Corrections<Tab>z= <09>C<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(&C)<Tab>z=
|
||||
menutrans &Repeat\ correction<Tab>:spellrepall <09>C<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>J<EFBFBD><EFBFBD><EFBFBD>Ԃ<EFBFBD>(&R)<Tab>:spellrepall
|
||||
menutrans Set\ language\ to\ "en" <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ "en"\ <20>ɐݒ肷<EFBFBD><EFBFBD>
|
||||
menutrans Set\ language\ to\ "en_au" <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\ "en_au"\ <20>ɐݒ肷<EFBFBD><EFBFBD>
|
||||
|
@ -1,7 +1,7 @@
|
||||
" Set options and add mapping such that Vim behaves a lot like MS-Windows
|
||||
"
|
||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||
" Last change: 2006 Mar 09
|
||||
" Last change: 2006 Mar 28
|
||||
|
||||
" bail out if this isn't wanted (mrsvim.vim uses this).
|
||||
if exists("g:skip_loading_mswin") && g:skip_loading_mswin
|
||||
@ -82,16 +82,19 @@ endif
|
||||
noremap <C-A> gggH<C-O>G
|
||||
inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
|
||||
cnoremap <C-A> <C-C>gggH<C-O>G
|
||||
onoremap <C-A> <C-C>gggH<C-O>G
|
||||
|
||||
" CTRL-Tab is Next window
|
||||
noremap <C-Tab> <C-W>w
|
||||
inoremap <C-Tab> <C-O><C-W>w
|
||||
cnoremap <C-Tab> <C-C><C-W>w
|
||||
onoremap <C-Tab> <C-C><C-W>w
|
||||
|
||||
" CTRL-F4 is Close window
|
||||
noremap <C-F4> <C-W>c
|
||||
inoremap <C-F4> <C-O><C-W>c
|
||||
cnoremap <C-F4> <C-C><C-W>c
|
||||
onoremap <C-F4> <C-C><C-W>c
|
||||
|
||||
" restore 'cpoptions'
|
||||
set cpo&
|
||||
|
@ -1,7 +1,7 @@
|
||||
" Vim support file to detect file types in scripts
|
||||
"
|
||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||
" Last change: 2006 Mar 25
|
||||
" Last change: 2006 Mar 28
|
||||
|
||||
" 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
|
||||
@ -185,11 +185,14 @@ else
|
||||
" - "# It was generated by makepatch " in the second line (makepatch diff).
|
||||
" - "Index: <filename>" in the first line (CVS file)
|
||||
" - "=== ", line of "=", "---", "+++ " (SVK diff)
|
||||
" - "=== ", "--- ", "+++ " (bzr diff, common case)
|
||||
" - "=== (removed|added|renamed|modified)" (bzr diff, alternative)
|
||||
elseif s:line1 =~ '^\(diff\>\|Only in \|\d\+\(,\d\+\)\=[cda]\d\+\>\|# It was generated by makepatch \|Index:\s\+\f\+\r\=$\|===== \f\+ \d\+\.\d\+ vs edited\|==== //\f\+#\d\+\)'
|
||||
\ || (s:line1 =~ '^--- ' && s:line2 =~ '^+++ ')
|
||||
\ || (s:line1 =~ '^\* looking for ' && s:line2 =~ '^\* comparing to ')
|
||||
\ || (s:line1 =~ '^\*\*\* ' && s:line2 =~ '^--- ')
|
||||
\ || (s:line1 =~ '^=== ' && s:line2 =~ '^=\{66\}' && s:line3 =~ '^--- ' && s:line4 =~ '^+++')
|
||||
\ || (s:line1 =~ '^=== ' && ((s:line2 =~ '^=\{66\}' && s:line3 =~ '^--- ' && s:line4 =~ '^+++') || (s:line2 =~ '^--- ' && s:line3 =~ '^+++ ')))
|
||||
\ || (s:line1 =~ '^=== \(removed\|added\|renamed\|modified\)')
|
||||
set ft=diff
|
||||
|
||||
" PostScript Files (must have %!PS as the first line, like a2ps output)
|
||||
|
@ -116,40 +116,41 @@ an 50.20.390 &Syntax.C.CVS.cvsrc :cal SetSyn("cvsrc")<CR>
|
||||
an 50.30.100 &Syntax.DE.D :cal SetSyn("d")<CR>
|
||||
an 50.30.110 &Syntax.DE.Debian.Debian\ ChangeLog :cal SetSyn("debchangelog")<CR>
|
||||
an 50.30.120 &Syntax.DE.Debian.Debian\ Control :cal SetSyn("debcontrol")<CR>
|
||||
an 50.30.130 &Syntax.DE.Desktop :cal SetSyn("desktop")<CR>
|
||||
an 50.30.140 &Syntax.DE.Dict\ config :cal SetSyn("dictconf")<CR>
|
||||
an 50.30.150 &Syntax.DE.Dictd\ config :cal SetSyn("dictdconf")<CR>
|
||||
an 50.30.160 &Syntax.DE.Diff :cal SetSyn("diff")<CR>
|
||||
an 50.30.170 &Syntax.DE.Digital\ Command\ Lang :cal SetSyn("dcl")<CR>
|
||||
an 50.30.180 &Syntax.DE.Dircolors :cal SetSyn("dircolors")<CR>
|
||||
an 50.30.190 &Syntax.DE.Django\ template :cal SetSyn("django")<CR>
|
||||
an 50.30.200 &Syntax.DE.DNS/BIND\ zone :cal SetSyn("bindzone")<CR>
|
||||
an 50.30.210 &Syntax.DE.DocBook.auto-detect :cal SetSyn("docbk")<CR>
|
||||
an 50.30.220 &Syntax.DE.DocBook.SGML :cal SetSyn("docbksgml")<CR>
|
||||
an 50.30.230 &Syntax.DE.DocBook.XML :cal SetSyn("docbkxml")<CR>
|
||||
an 50.30.240 &Syntax.DE.Dot :cal SetSyn("dot")<CR>
|
||||
an 50.30.250 &Syntax.DE.Dracula :cal SetSyn("dracula")<CR>
|
||||
an 50.30.260 &Syntax.DE.DSSSL :cal SetSyn("dsl")<CR>
|
||||
an 50.30.270 &Syntax.DE.DTD :cal SetSyn("dtd")<CR>
|
||||
an 50.30.280 &Syntax.DE.DTML\ (Zope) :cal SetSyn("dtml")<CR>
|
||||
an 50.30.290 &Syntax.DE.Dylan.Dylan :cal SetSyn("dylan")<CR>
|
||||
an 50.30.300 &Syntax.DE.Dylan.Dylan\ interface :cal SetSyn("dylanintr")<CR>
|
||||
an 50.30.310 &Syntax.DE.Dylan.Dylan\ lid :cal SetSyn("dylanlid")<CR>
|
||||
an 50.30.330 &Syntax.DE.EDIF :cal SetSyn("edif")<CR>
|
||||
an 50.30.340 &Syntax.DE.Eiffel :cal SetSyn("eiffel")<CR>
|
||||
an 50.30.350 &Syntax.DE.Elinks\ config :cal SetSyn("elinks")<CR>
|
||||
an 50.30.360 &Syntax.DE.Elm\ filter\ rules :cal SetSyn("elmfilt")<CR>
|
||||
an 50.30.370 &Syntax.DE.Embedix\ Component\ Description :cal SetSyn("ecd")<CR>
|
||||
an 50.30.380 &Syntax.DE.ERicsson\ LANGuage :cal SetSyn("erlang")<CR>
|
||||
an 50.30.390 &Syntax.DE.ESMTP\ rc :cal SetSyn("esmtprc")<CR>
|
||||
an 50.30.400 &Syntax.DE.ESQL-C :cal SetSyn("esqlc")<CR>
|
||||
an 50.30.410 &Syntax.DE.Essbase\ script :cal SetSyn("csc")<CR>
|
||||
an 50.30.420 &Syntax.DE.Esterel :cal SetSyn("esterel")<CR>
|
||||
an 50.30.430 &Syntax.DE.Eterm\ config :cal SetSyn("eterm")<CR>
|
||||
an 50.30.440 &Syntax.DE.Eviews :cal SetSyn("eviews")<CR>
|
||||
an 50.30.450 &Syntax.DE.Exim\ conf :cal SetSyn("exim")<CR>
|
||||
an 50.30.460 &Syntax.DE.Expect :cal SetSyn("expect")<CR>
|
||||
an 50.30.470 &Syntax.DE.Exports :cal SetSyn("exports")<CR>
|
||||
an 50.30.130 &Syntax.DE.Debian.Debian\ Sources\.list :cal SetSyn("debsources")<CR>
|
||||
an 50.30.140 &Syntax.DE.Desktop :cal SetSyn("desktop")<CR>
|
||||
an 50.30.150 &Syntax.DE.Dict\ config :cal SetSyn("dictconf")<CR>
|
||||
an 50.30.160 &Syntax.DE.Dictd\ config :cal SetSyn("dictdconf")<CR>
|
||||
an 50.30.170 &Syntax.DE.Diff :cal SetSyn("diff")<CR>
|
||||
an 50.30.180 &Syntax.DE.Digital\ Command\ Lang :cal SetSyn("dcl")<CR>
|
||||
an 50.30.190 &Syntax.DE.Dircolors :cal SetSyn("dircolors")<CR>
|
||||
an 50.30.200 &Syntax.DE.Django\ template :cal SetSyn("django")<CR>
|
||||
an 50.30.210 &Syntax.DE.DNS/BIND\ zone :cal SetSyn("bindzone")<CR>
|
||||
an 50.30.220 &Syntax.DE.DocBook.auto-detect :cal SetSyn("docbk")<CR>
|
||||
an 50.30.230 &Syntax.DE.DocBook.SGML :cal SetSyn("docbksgml")<CR>
|
||||
an 50.30.240 &Syntax.DE.DocBook.XML :cal SetSyn("docbkxml")<CR>
|
||||
an 50.30.250 &Syntax.DE.Dot :cal SetSyn("dot")<CR>
|
||||
an 50.30.260 &Syntax.DE.Dracula :cal SetSyn("dracula")<CR>
|
||||
an 50.30.270 &Syntax.DE.DSSSL :cal SetSyn("dsl")<CR>
|
||||
an 50.30.280 &Syntax.DE.DTD :cal SetSyn("dtd")<CR>
|
||||
an 50.30.290 &Syntax.DE.DTML\ (Zope) :cal SetSyn("dtml")<CR>
|
||||
an 50.30.300 &Syntax.DE.Dylan.Dylan :cal SetSyn("dylan")<CR>
|
||||
an 50.30.310 &Syntax.DE.Dylan.Dylan\ interface :cal SetSyn("dylanintr")<CR>
|
||||
an 50.30.320 &Syntax.DE.Dylan.Dylan\ lid :cal SetSyn("dylanlid")<CR>
|
||||
an 50.30.340 &Syntax.DE.EDIF :cal SetSyn("edif")<CR>
|
||||
an 50.30.350 &Syntax.DE.Eiffel :cal SetSyn("eiffel")<CR>
|
||||
an 50.30.360 &Syntax.DE.Elinks\ config :cal SetSyn("elinks")<CR>
|
||||
an 50.30.370 &Syntax.DE.Elm\ filter\ rules :cal SetSyn("elmfilt")<CR>
|
||||
an 50.30.380 &Syntax.DE.Embedix\ Component\ Description :cal SetSyn("ecd")<CR>
|
||||
an 50.30.390 &Syntax.DE.ERicsson\ LANGuage :cal SetSyn("erlang")<CR>
|
||||
an 50.30.400 &Syntax.DE.ESMTP\ rc :cal SetSyn("esmtprc")<CR>
|
||||
an 50.30.410 &Syntax.DE.ESQL-C :cal SetSyn("esqlc")<CR>
|
||||
an 50.30.420 &Syntax.DE.Essbase\ script :cal SetSyn("csc")<CR>
|
||||
an 50.30.430 &Syntax.DE.Esterel :cal SetSyn("esterel")<CR>
|
||||
an 50.30.440 &Syntax.DE.Eterm\ config :cal SetSyn("eterm")<CR>
|
||||
an 50.30.450 &Syntax.DE.Eviews :cal SetSyn("eviews")<CR>
|
||||
an 50.30.460 &Syntax.DE.Exim\ conf :cal SetSyn("exim")<CR>
|
||||
an 50.30.470 &Syntax.DE.Expect :cal SetSyn("expect")<CR>
|
||||
an 50.30.480 &Syntax.DE.Exports :cal SetSyn("exports")<CR>
|
||||
an 50.40.100 &Syntax.FG.Fetchmail :cal SetSyn("fetchmail")<CR>
|
||||
an 50.40.110 &Syntax.FG.Focus\ Executable :cal SetSyn("focexec")<CR>
|
||||
an 50.40.120 &Syntax.FG.Focus\ Master :cal SetSyn("master")<CR>
|
||||
|
377
runtime/syntax/coretex.vim
Normal file
377
runtime/syntax/coretex.vim
Normal file
@ -0,0 +1,377 @@
|
||||
" Vim syntax file
|
||||
" Language: TeX (core definition)
|
||||
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
||||
" Latest Revision: 2006-03-26
|
||||
|
||||
if exists("b:current_syntax")
|
||||
finish
|
||||
endif
|
||||
|
||||
let s:cpo_save = &cpo
|
||||
set cpo&vim
|
||||
|
||||
" This follows the grouping (sort of) found at
|
||||
" http://www.tug.org/utilities/plain/cseq.html#top-fam
|
||||
|
||||
syn keyword coretexTodo TODO FIXME XXX NOTE
|
||||
|
||||
syn match coretexComment display contains=coretexTodo
|
||||
\ '\\\@<!\%(\\\\\)*\zs%.*$'
|
||||
|
||||
syn match coretexDimension display contains=@NoSpell
|
||||
\ '[+-]\=\s*\%(\d\+\%([.,]\d*\)\=\|[.,]\d\+\)\s*\%(true\)\=\s*\%(p[tc]\|in\|bp\|c[mc]\|m[mu]\|dd\|sp\|e[mx]\)\>'
|
||||
|
||||
syn cluster coretexBox
|
||||
\ contains=coretexBoxCommand,coretexBoxInternalQuantity,
|
||||
\ coretexBoxParameterDimen,coretexBoxParameterInteger,
|
||||
\ coretexBoxParameterToken
|
||||
|
||||
syn cluster coretexCharacter
|
||||
\ contains=coretexCharacterCommand,coretexCharacterInternalQuantity,
|
||||
\ coretexCharacterParameterInteger
|
||||
|
||||
syn cluster coretexDebugging
|
||||
\ contains=coretexDebuggingCommand,coretexDebuggingParameterInteger,
|
||||
\ coretexDebuggingParameterToken
|
||||
|
||||
syn cluster coretexFileIO
|
||||
\ contains=coretexFileIOCommand,coretexFileIOInternalQuantity,
|
||||
\ coretexFileIOParameterToken
|
||||
|
||||
syn cluster coretexFonts
|
||||
\ contains=coretexFontsCommand,coretexFontsInternalQuantity
|
||||
|
||||
syn cluster coretexGlue
|
||||
\ contains=coretexGlueCommand,coretexGlueDerivedCommand
|
||||
|
||||
syn cluster coretexHyphenation
|
||||
\ contains=coretexHyphenationCommand,coretexHyphenationDerivedCommand,
|
||||
\ coretexHyphenationInternalQuantity,coretexHyphenationParameterInteger
|
||||
|
||||
syn cluster coretexInserts
|
||||
\ contains=coretexInsertsCommand,coretexInsertsParameterDimen,
|
||||
\ coretexInsertsParameterGlue,coretexInsertsParameterInteger
|
||||
|
||||
syn cluster coretexJob
|
||||
\ contains=coretexJobCommand,coretexJobInternalQuantity,
|
||||
\ coretexJobParameterInteger
|
||||
|
||||
syn cluster coretexKern
|
||||
\ contains=coretexKernCommand,coretexKernInternalQuantity
|
||||
|
||||
syn cluster coretexLogic
|
||||
\ contains=coretexLogicCommand
|
||||
|
||||
syn cluster coretexMacro
|
||||
\ contains=coretexMacroCommand,coretexMacroDerivedCommand,
|
||||
\ coretexMacroParameterInteger
|
||||
|
||||
syn cluster coretexMarks
|
||||
\ contains=coretexMarksCommand
|
||||
|
||||
syn cluster coretexMath
|
||||
\ contains=coretexMathCommand,coretexMathDerivedCommand,
|
||||
\ coretexMathInternalQuantity,coretexMathParameterDimen,
|
||||
\ coretexMathParameterGlue,coretexMathParameterInteger,
|
||||
\ coretexMathParameterMuglue,coretexMathParameterToken
|
||||
|
||||
syn cluster coretexPage
|
||||
\ contains=coretexPageInternalQuantity,coretexPageParameterDimen,
|
||||
\ coretexPageParameterGlue
|
||||
|
||||
syn cluster coretexParagraph
|
||||
\ contains=coretexParagraphCommand,coretexParagraphInternalQuantity,
|
||||
\ coretexParagraphParameterDimen,coretexParagraphParameterGlue,
|
||||
\ coretexParagraphParameterInteger,coretexParagraphParameterToken
|
||||
|
||||
syn cluster coretexPenalties
|
||||
\ contains=coretexPenaltiesCommand,coretexPenaltiesInternalQuantity,
|
||||
\ coretexPenaltiesParameterInteger
|
||||
|
||||
syn cluster coretexRegisters
|
||||
\ contains=coretexRegistersCommand,coretexRegistersInternalQuantity
|
||||
|
||||
syn cluster coretexTables
|
||||
\ contains=coretexTablesCommand,coretexTablesParameterGlue,
|
||||
\ coretexTablesParameterToken
|
||||
|
||||
syn cluster coretexCommand
|
||||
\ contains=coretexBoxCommand,coretexCharacterCommand,
|
||||
\ coretexDebuggingCommand,coretexFileIOCommand,
|
||||
\ coretexFontsCommand,coretexGlueCommand,
|
||||
\ coretexHyphenationCommand,coretexInsertsCommand,
|
||||
\ coretexJobCommand,coretexKernCommand,coretexLogicCommand,
|
||||
\ coretexMacroCommand,coretexMarksCommand,coretexMathCommand,
|
||||
\ coretexParagraphCommand,coretexPenaltiesCommand,coretexRegistersCommand,
|
||||
\ coretexTablesCommand
|
||||
|
||||
syn match coretexBoxCommand display contains=@NoSpell
|
||||
\ '\\\%([hv]\=box\|[cx]\=leaders\|copy\|[hv]rule\|lastbox\|setbox\|un[hv]\%(box\|copy\)\|vtop\)\>'
|
||||
syn match coretexCharacterCommand display contains=@NoSpell
|
||||
\ '\\\%([] ]\|\%(^^M\|accent\|char\|\%(lower\|upper\)case\|number\|romannumeral\|string\)\>\)'
|
||||
syn match coretexDebuggingCommand display contains=@NoSpell
|
||||
\ '\\\%(\%(batch\|\%(non\|error\)stop\|scroll\)mode\|\%(err\)\=message\|meaning\|show\%(box\%(breadth\|depth\)\=\|lists\|the\)\)\>'
|
||||
syn match coretexFileIOCommand display contains=@NoSpell
|
||||
\ '\\\%(\%(close\|open\)\%(in\|out\)\|endinput\|immediate\|input\|read\|shipout\|special\|write\)\>'
|
||||
syn match coretexFontsCommand display contains=@NoSpell
|
||||
\ '\\\%(/\|fontname\)\>'
|
||||
syn match coretexGlueCommand display contains=@NoSpell
|
||||
\ '\\\%([hv]\|un\)skip\>'
|
||||
syn match coretexHyphenationCommand display contains=@NoSpell
|
||||
\ '\\\%(discretionary\|hyphenation\|patterns\|setlanguage\)\>'
|
||||
syn match coretexInsertsCommand display contains=@NoSpell
|
||||
\ '\\\%(insert\|split\%(bot\|first\)mark\|vsplit\)\>'
|
||||
syn match coretexJobCommand display contains=@NoSpell
|
||||
\ '\\\%(dump\|end\|jobname\)\>'
|
||||
syn match coretexKernCommand display contains=@NoSpell
|
||||
\ '\\\%(kern\|lower\|move\%(left\|right\)\|raise\|unkern\)\>'
|
||||
syn match coretexLogicCommand display contains=@NoSpell
|
||||
\ '\\\%(else\|fi\|if[a-zA-Z@]\+\|or\)\>'
|
||||
" \ '\\\%(else\|fi\|if\%(case\|cat\|dim\|eof\|false\|[hv]box\|[hmv]mode\|inner\|num\|odd\|true\|void\|x\)\=\|or\)\>'
|
||||
syn match coretexMacroCommand display contains=@NoSpell
|
||||
\ '\\\%(after\%(assignment\|group\)\|\%(begin\|end\)group\|\%(end\)\=csname\|e\=def\|expandafter\|futurelet\|global\|let\|long\|noexpand\|outer\|relax\|the\)\>'
|
||||
syn match coretexMarksCommand display contains=@NoSpell
|
||||
\ '\\\%(bot\|first\|top\)\=mark\>'
|
||||
syn match coretexMathCommand display contains=@NoSpell
|
||||
\ '\\\%(abovewithdelims\|delimiter\|display\%(limits\|style\)\|l\=eqno\|left\|\%(no\)\=limits\|math\%(accent\|bin\|char\|choice\|close\|code\|inner\|op\|open\|ord\|punct\|rel\)\|mkern\|mskip\|muskipdef\|nonscript\|\%(over\|under\)line\|radical\|right\|\%(\%(script\)\{1,2}\|text\)style\|vcenter\)\>'
|
||||
syn match coretexParagraphCommand display contains=@NoSpell
|
||||
\ '\\\%(ignorespaces\|indent\|no\%(boundary\|indent\)\|par\|vadjust\)\>'
|
||||
syn match coretexPenaltiesCommand display contains=@NoSpell
|
||||
\ '\\\%(un\)\=penalty\>'
|
||||
syn match coretexRegistersCommand display contains=@NoSpell
|
||||
\ '\\\%(advance\|\%(count\|dimen\|skip\|toks\)def\|divide\|multiply\)\>'
|
||||
syn match coretexTablesCommand display contains=@NoSpell
|
||||
\ '\\\%(cr\|crcr\|[hv]align\|noalign\|omit\|span\)\>'
|
||||
|
||||
syn cluster coretexDerivedCommand
|
||||
\ contains=coretexGlueDerivedCommand,coretexHyphenationDerivedCommand,
|
||||
\ coretexMacroDerivedCommand,coretexMathDerivedCommand
|
||||
|
||||
syn match coretexGlueDerivedCommand display contains=@NoSpell
|
||||
\ '\\\%([hv]fil\%(l\|neg\)\=\|[hv]ss\)\>'
|
||||
syn match coretexHyphenationDerivedCommand display contains=@NoSpell
|
||||
\ '\\-'
|
||||
syn match coretexMacroDerivedCommand display contains=@NoSpell
|
||||
\ '\\[gx]def\>'
|
||||
syn match coretexMathDerivedCommand display contains=@NoSpell
|
||||
\ '\\\%(above\|atop\%(withdelims\)\=\|mathchardef\|over\|overwithdelims\)\>'
|
||||
|
||||
syn cluster coretexInternalQuantity
|
||||
\ contains=coretexBoxInternalQuantity,coretexCharacterInternalQuantity,
|
||||
\ coretexFileIOInternalQuantity,coretexFontsInternalQuantity,
|
||||
\ coretexHyphenationInternalQuantity,coretexJobInternalQuantity,
|
||||
\ coretexKernInternalQuantity,coretexMathInternalQuantity,
|
||||
\ coretexPageInternalQuantity,coretexParagraphInternalQuantity,
|
||||
\ coretexPenaltiesInternalQuantity,coretexRegistersInternalQuantity
|
||||
|
||||
syn match coretexBoxInternalQuantity display contains=@NoSpell
|
||||
\ '\\\%(badness\|dp\|ht\|prevdepth\|wd\)\>'
|
||||
syn match coretexCharacterInternalQuantity display contains=@NoSpell
|
||||
\ '\\\%(catcode\|chardef\|\%([ul]c\|sf\)code\)\>'
|
||||
syn match coretexFileIOInternalQuantity display contains=@NoSpell
|
||||
\ '\\inputlineno\>'
|
||||
syn match coretexFontsInternalQuantity display contains=@NoSpell
|
||||
\ '\\\%(font\%(dimen\)\=\|nullfont\)\>'
|
||||
syn match coretexHyphenationInternalQuantity display contains=@NoSpell
|
||||
\ '\\hyphenchar\>'
|
||||
syn match coretexJobInternalQuantity display contains=@NoSpell
|
||||
\ '\\deadcycles\>'
|
||||
syn match coretexKernInternalQuantity display contains=@NoSpell
|
||||
\ '\\lastkern\>'
|
||||
syn match coretexMathInternalQuantity display contains=@NoSpell
|
||||
\ '\\\%(delcode\|mathcode\|muskip\|\%(\%(script\)\{1,2}\|text\)font\|skewchar\)\>'
|
||||
syn match coretexPageInternalQuantity display contains=@NoSpell
|
||||
\ '\\page\%(depth\|fil\{1,3}stretch\|goal\|shrink\|stretch\|total\)\>'
|
||||
syn match coretexParagraphInternalQuantity display contains=@NoSpell
|
||||
\ '\\\%(prevgraf\|spacefactor\)\>'
|
||||
syn match coretexPenaltiesInternalQuantity display contains=@NoSpell
|
||||
\ '\\lastpenalty\>'
|
||||
syn match coretexRegistersInternalQuantity display contains=@NoSpell
|
||||
\ '\\\%(count\|dimen\|skip\|toks\)\d\+\>'
|
||||
|
||||
syn cluster coretexParameterDimen
|
||||
\ contains=coretexBoxParameterDimen,coretexInsertsParameterDimen,
|
||||
\ coretexMathParameterDimen,coretexPageParameterDimen,
|
||||
\ coretexParagraphParameterDimen
|
||||
|
||||
syn match coretexBoxParameterDimen display contains=@NoSpell
|
||||
\ '\\\%(boxmaxdepth\|[hv]fuzz\|overfullrule\)\>'
|
||||
syn match coretexInsertsParameterDimen display contains=@NoSpell
|
||||
\ '\\splitmaxdepth\>'
|
||||
syn match coretexMathParameterDimen display contains=@NoSpell
|
||||
\ '\\\%(delimitershortfall\|display\%(indent\|width\)\|mathsurround\|nulldelimiterspace\|predisplaysize\|scriptspace\)\>'
|
||||
syn match coretexPageParameterDimen display contains=@NoSpell
|
||||
\ '\\\%([hv]offset\|maxdepth\|vsize\)\>'
|
||||
syn match coretexParagraphParameterDimen display contains=@NoSpell
|
||||
\ '\\\%(emergencystretch\|\%(hang\|par\)indent\|hsize\|lineskiplimit\)\>'
|
||||
|
||||
syn cluster coretexParameterGlue
|
||||
\ contains=coretexInsertsParameterGlue,coretexMathParameterGlue,
|
||||
\ coretexPageParameterGlue,coretexParagraphParameterGlue,
|
||||
\ coretexTablesParameterGlue
|
||||
|
||||
syn match coretexInsertsParameterGlue display contains=@NoSpell
|
||||
\ '\\splittopskip\>'
|
||||
syn match coretexMathParameterGlue display contains=@NoSpell
|
||||
\ '\\\%(above\|below\)display\%(short\)\=skip\>'
|
||||
syn match coretexPageParameterGlue display contains=@NoSpell
|
||||
\ '\\topskip\>'
|
||||
syn match coretexParagraphParameterGlue display contains=@NoSpell
|
||||
\ '\\\%(baseline\|left\|line\|par\%(fill\)\=\|right\|x\=space\)skip\>'
|
||||
syn match coretexTablesParameterGlue display contains=@NoSpell
|
||||
\ '\\tabskip\>'
|
||||
|
||||
syn cluster coretexParameterInteger
|
||||
\ contains=coretexBoxParameterInteger,coretexCharacterParameterInteger,
|
||||
\ coretexDebuggingParameterInteger,coretexHyphenationParameterInteger,
|
||||
\ coretexInsertsParameterInteger,coretexJobParameterInteger,
|
||||
\ coretexMacroParameterInteger,coretexMathParameterInteger,
|
||||
\ coretexParagraphParameterInteger,coretexPenaltiesParameterInteger,
|
||||
|
||||
syn match coretexBoxParameterInteger display contains=@NoSpell
|
||||
\ '\\[hv]badness\>'
|
||||
syn match coretexCharacterParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(\%(endline\|escape\|newline\)char\)\>'
|
||||
syn match coretexDebuggingParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(errorcontextlines\|pausing\|tracing\%(commands\|lostchars\|macros\|online\|output\|pages\|paragraphs\|restores|stats\)\)\>'
|
||||
syn match coretexHyphenationParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(defaulthyphenchar\|language\|\%(left\|right\)hyphenmin\|uchyph\)\>'
|
||||
syn match coretexInsertsParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(holdinginserts\)\>'
|
||||
syn match coretexJobParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(day\|mag\|maxdeadcycles\|month\|time\|year\)\>'
|
||||
syn match coretexMacroParameterInteger display contains=@NoSpell
|
||||
\ '\\globaldefs\>'
|
||||
syn match coretexMathParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(binoppenalty\|defaultskewchar\|delimiterfactor\|displaywidowpenalty\|fam\|\%(post\|pre\)displaypenalty\|relpenalty\)\>'
|
||||
syn match coretexParagraphParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(\%(adj\|\%(double\|final\)hyphen\)demerits\|looseness\|\%(pre\)\=tolerance\)\>'
|
||||
syn match coretexPenaltiesParameterInteger display contains=@NoSpell
|
||||
\ '\\\%(broken\|club\|exhyphen\|floating\|hyphen\|interline\|line\|output\|widow\)penalty\>'
|
||||
|
||||
syn cluster coretexParameterMuglue
|
||||
\ contains=coretexMathParameterMuglue
|
||||
|
||||
syn match coretexMathParameterMuglue display contains=@NoSpell
|
||||
\ '\\\%(med\|thick\|thin\)muskip\>'
|
||||
|
||||
syn cluster coretexParameterDimen
|
||||
\ contains=coretexBoxParameterToken,coretexDebuggingParameterToken,
|
||||
\ coretexFileIOParameterToken,coretexMathParameterToken,
|
||||
\ coretexParagraphParameterToken,coretexTablesParameterToken
|
||||
|
||||
syn match coretexBoxParameterToken display contains=@NoSpell
|
||||
\ '\\every[hv]box\>'
|
||||
syn match coretexDebuggingParameterToken display contains=@NoSpell
|
||||
\ '\\errhelp\>'
|
||||
syn match coretexFileIOParameterToken display contains=@NoSpell
|
||||
\ '\\output\>'
|
||||
syn match coretexMathParameterToken display contains=@NoSpell
|
||||
\ '\\every\%(display\|math\)\>'
|
||||
syn match coretexParagraphParameterToken display contains=@NoSpell
|
||||
\ '\\everypar\>'
|
||||
syn match coretexTablesParameterToken display contains=@NoSpell
|
||||
\ '\\everycr\>'
|
||||
|
||||
|
||||
hi def link coretexCharacter Character
|
||||
hi def link coretexNumber Number
|
||||
|
||||
hi def link coretexIdentifier Identifier
|
||||
|
||||
hi def link coretexStatement Statement
|
||||
hi def link coretexConditional Conditional
|
||||
|
||||
hi def link coretexPreProc PreProc
|
||||
hi def link coretexMacro Macro
|
||||
|
||||
hi def link coretexType Type
|
||||
|
||||
hi def link coretexDebug Debug
|
||||
|
||||
hi def link coretexTodo Todo
|
||||
hi def link coretexComment Comment
|
||||
hi def link coretexDimension coretexNumber
|
||||
|
||||
hi def link coretexCommand coretexStatement
|
||||
hi def link coretexBoxCommand coretexCommand
|
||||
hi def link coretexCharacterCommand coretexCharacter
|
||||
hi def link coretexDebuggingCommand coretexDebug
|
||||
hi def link coretexFileIOCommand coretexCommand
|
||||
hi def link coretexFontsCommand coretexType
|
||||
hi def link coretexGlueCommand coretexCommand
|
||||
hi def link coretexHyphenationCommand coretexCommand
|
||||
hi def link coretexInsertsCommand coretexCommand
|
||||
hi def link coretexJobCommand coretexPreProc
|
||||
hi def link coretexKernCommand coretexCommand
|
||||
hi def link coretexLogicCommand coretexConditional
|
||||
hi def link coretexMacroCommand coretexMacro
|
||||
hi def link coretexMarksCommand coretexCommand
|
||||
hi def link coretexMathCommand coretexCommand
|
||||
hi def link coretexParagraphCommand coretexCommand
|
||||
hi def link coretexPenaltiesCommand coretexCommand
|
||||
hi def link coretexRegistersCommand coretexCommand
|
||||
hi def link coretexTablesCommand coretexCommand
|
||||
|
||||
hi def link coretexDerivedCommand coretexStatement
|
||||
hi def link coretexGlueDerivedCommand coretexDerivedCommand
|
||||
hi def link coretexHyphenationDerivedCommand coretexDerivedCommand
|
||||
hi def link coretexMacroDerivedCommand coretexDerivedCommand
|
||||
hi def link coretexMathDerivedCommand coretexDerivedCommand
|
||||
|
||||
hi def link coretexInternalQuantity coretexIdentifier
|
||||
hi def link coretexBoxInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexCharacterInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexFileIOInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexFontsInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexHyphenationInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexJobInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexKernInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexMathInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexPageInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexParagraphInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexPenaltiesInternalQuantity coretexInternalQuantity
|
||||
hi def link coretexRegistersInternalQuantity coretexInternalQuantity
|
||||
|
||||
hi def link coretexParameterDimen coretexNumber
|
||||
hi def link coretexBoxParameterDimen coretexParameterDimen
|
||||
hi def link coretexInsertsParameterDimen coretexParameterDimen
|
||||
hi def link coretexMathParameterDimen coretexParameterDimen
|
||||
hi def link coretexPageParameterDimen coretexParameterDimen
|
||||
hi def link coretexParagraphParameterDimen coretexParameterDimen
|
||||
|
||||
hi def link coretexParameterGlue coretexNumber
|
||||
hi def link coretexInsertsParameterGlue coretexParameterGlue
|
||||
hi def link coretexMathParameterGlue coretexParameterGlue
|
||||
hi def link coretexPageParameterGlue coretexParameterGlue
|
||||
hi def link coretexParagraphParameterGlue coretexParameterGlue
|
||||
hi def link coretexTablesParameterGlue coretexParameterGlue
|
||||
|
||||
hi def link coretexParameterInteger coretexNumber
|
||||
hi def link coretexBoxParameterInteger coretexParameterInteger
|
||||
hi def link coretexCharacterParameterInteger coretexParameterInteger
|
||||
hi def link coretexDebuggingParameterInteger coretexParameterInteger
|
||||
hi def link coretexHyphenationParameterInteger coretexParameterInteger
|
||||
hi def link coretexInsertsParameterInteger coretexParameterInteger
|
||||
hi def link coretexJobParameterInteger coretexParameterInteger
|
||||
hi def link coretexMacroParameterInteger coretexParameterInteger
|
||||
hi def link coretexMathParameterInteger coretexParameterInteger
|
||||
hi def link coretexParagraphParameterInteger coretexParameterInteger
|
||||
hi def link coretexPenaltiesParameterInteger coretexParameterInteger
|
||||
|
||||
hi def link coretexParameterMuglue coretexNumber
|
||||
hi def link coretexMathParameterMuglue coretexParameterMuglue
|
||||
|
||||
hi def link coretexParameterToken coretexIdentifier
|
||||
hi def link coretexBoxParameterToken coretexParameterToken
|
||||
hi def link coretexDebuggingParameterToken coretexParameterToken
|
||||
hi def link coretexFileIOParameterToken coretexParameterToken
|
||||
hi def link coretexMathParameterToken coretexParameterToken
|
||||
hi def link coretexParagraphParameterToken coretexParameterToken
|
||||
hi def link coretexTablesParameterToken coretexParameterToken
|
||||
|
||||
let b:current_syntax = "coretex"
|
||||
|
||||
let &cpo = s:cpo_save
|
||||
unlet s:cpo_save
|
||||
|
40
runtime/syntax/debsources.vim
Normal file
40
runtime/syntax/debsources.vim
Normal file
@ -0,0 +1,40 @@
|
||||
" Vim syntax file
|
||||
" Language: Debian sources.list
|
||||
" Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl>
|
||||
" Last Change: $Date$
|
||||
" URL: http://www.cacholong.nl/~matthijs/vim/syntax/debsources.vim
|
||||
" $Revision$
|
||||
|
||||
" this is a very simple syntax file - I will be improving it
|
||||
" add entire DEFINE syntax
|
||||
|
||||
" Standard syntax initialization
|
||||
if version < 600
|
||||
syntax clear
|
||||
elseif exists("b:current_syntax")
|
||||
finish
|
||||
endif
|
||||
|
||||
" case sensitive
|
||||
syn case match
|
||||
|
||||
" A bunch of useful keywords
|
||||
syn match debsourcesKeyword /\(deb-src\|deb\|main\|contrib\|non-free\)/
|
||||
|
||||
" Match comments
|
||||
syn match debsourcesComment /#.*/
|
||||
|
||||
" Match uri's
|
||||
syn match debsourcesUri +\(http://\|ftp://\|file:///\)[^' <>"]\++
|
||||
syn match debsourcesDistrKeyword +\([[:alnum:]_./]*\)\(woody\|sarge\|etch\|old-stable\|stable\|testing\|unstable\|sid\|experimental\|warty\|hoary\|breezy\)\([[:alnum:]_./]*\)+
|
||||
|
||||
" Associate our matches and regions with pretty colours
|
||||
hi def link debsourcesLine Error
|
||||
hi def link debsourcesKeyword Statement
|
||||
hi def link debsourcesDistrKeyword Type
|
||||
hi def link debsourcesComment Comment
|
||||
hi def link debsourcesUri Constant
|
||||
|
||||
let b:current_syntax = "debsources"
|
||||
|
||||
" vim: ts=8
|
166
runtime/syntax/plaintex.vim
Normal file
166
runtime/syntax/plaintex.vim
Normal file
@ -0,0 +1,166 @@
|
||||
" Vim syntax file
|
||||
" Language: TeX (plain.tex format)
|
||||
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
||||
" Latest Revision: 2006-03-26
|
||||
|
||||
if exists("b:current_syntax")
|
||||
finish
|
||||
endif
|
||||
|
||||
let s:cpo_save = &cpo
|
||||
set cpo&vim
|
||||
|
||||
syn match plaintexControlSequence display contains=@NoSpell
|
||||
\ '\\[a-zA-Z@]\+'
|
||||
|
||||
runtime! syntax/coretex.vim
|
||||
|
||||
syn match plaintexComment display
|
||||
\ contains=ALLBUT,coretexComment,plaintexComment
|
||||
\ '^\s*%[CDM].*$'
|
||||
|
||||
if exists("g:plaintex_delimiters")
|
||||
syn match plaintexDelimiter display '[][{}]'
|
||||
endif
|
||||
|
||||
syn match plaintexRepeat display contains=@NoSpell
|
||||
\ '\\\%(loop\|repeat\)\>'
|
||||
|
||||
syn match plaintexCommand display contains=@NoSpell
|
||||
\ '\\\%(plainoutput\|TeX\)\>'
|
||||
syn match plaintexBoxCommand display contains=@NoSpell
|
||||
\ '\\\%(null\|strut\)\>'
|
||||
syn match plaintexCharacterCommand display contains=@NoSpell
|
||||
\ /\\\%(["#$%&'.=^_`~]\|``\|''\|-\{2,3}\|[?!]`\|^^L\|\~\|\%(a[ae]\|A[AE]\|acute\|[cdHoOPStuvijlL]\|copyright\|d\=dag\|folio\|ldotp\|[lr]q\|oe\|OE\|slash\|ss\|underbar\)\>\)/
|
||||
syn match plaintexDebuggingCommand display contains=@NoSpell
|
||||
\ '\\\%(showhyphens\|tracingall\|wlog\)\>'
|
||||
syn match plaintexFontsCommand display contains=@NoSpell
|
||||
\ '\\\%(bf\|\%(five\|seven\)\%(bf\|i\|rm\|sy\)\|it\|oldstyle\|rm\|sl\|ten\%(bf\|ex\|it\=\|rm\|sl\|sy\|tt\)\|tt\)\>'
|
||||
syn match plaintexGlueCommand display contains=@NoSpell
|
||||
\ '\\\%(\%(big\|en\|med\|\%(no\|off\)interline\|small\)skip\|\%(center\|left\|right\)\=line\|\%(dot\|\%(left\|right\)arrow\)fill\|[hv]glue\|[lr]lap\|q\=quad\|space\|topglue\)\>'
|
||||
syn match plaintexInsertsCommand display contains=@NoSpell
|
||||
\ '\\\%(\%(end\|top\)insert\|v\=footnote\)\>'
|
||||
syn match plaintexJobCommand display contains=@NoSpell
|
||||
\ '\\\%(bye\|fmt\%(name\|version\)\)\>'
|
||||
syn match plaintexInsertsCommand display contains=@NoSpell
|
||||
\ '\\\%(mid\|page\)insert\>'
|
||||
syn match plaintexKernCommand display contains=@NoSpell
|
||||
\ '\\\%(en\|\%(neg\)\=thin\)space\>'
|
||||
syn match plaintexMacroCommand display contains=@NoSpell
|
||||
\ '\\\%(active\|[be]group\|empty\)\>'
|
||||
syn match plaintexPageCommand display contains=@NoSpell
|
||||
\ '\\\%(\%(super\)\=eject\|nopagenumbers\|\%(normal\|ragged\)bottom\)\>'
|
||||
syn match plaintexParagraphCommand display contains=@NoSpell
|
||||
\ '\\\%(endgraf\|\%(non\)\=frenchspacing\|hang\|item\%(item\)\=\|narrower\|normalbaselines\|obey\%(lines\|spaces\)\|openup\|proclaim\|\%(tt\)\=raggedright\|textindent\)\>'
|
||||
syn match plaintexPenaltiesCommand display contains=@NoSpell
|
||||
\ '\\\%(allow\|big\|fil\|good\|med\|no\|small\)\=break\>'
|
||||
syn match plaintexRegistersCommand display contains=@NoSpell
|
||||
\ '\\\%(advancepageno\|new\%(box\|count\|dimen\|fam\|help\|if\|insert\|language\|muskip\|read\|skip\|toks\|write\)\)\>'
|
||||
syn match plaintexTablesCommand display contains=@NoSpell
|
||||
\ '&\|\\+\|\\\%(cleartabs\|endline\|hidewidth\|ialign\|multispan\|settabs\|tabalign\)\>'
|
||||
|
||||
syn region plaintexMath matchgroup=plaintexMath
|
||||
\ contains=@plaintexMath
|
||||
\ start='\$' skip='\\\\\|\\\$' end='\$'
|
||||
syn region plaintexMath matchgroup=plaintexMath
|
||||
\ contains=@plaintexMath keepend
|
||||
\ start='\$\$' skip='\\\\\|\\\$' end='\$\$'
|
||||
|
||||
syn cluster plaintexMath
|
||||
\ contains=plaintexMathCommand,plaintexMathBoxCommand,
|
||||
\ plaintexMathCharacterCommand,plaintexMathDelimiter,
|
||||
\ plaintexMathFontsCommand,plaintexMathLetter,plaintexMathSymbol,
|
||||
\ plaintexMathFunction,plaintexMathOperator,plaintexMathPunctuation,
|
||||
\ plaintexMathRelation
|
||||
|
||||
syn match plaintexMathCommand display contains=@NoSpell contained
|
||||
\ '\\\%([!*,;>{}|_^]\|\%([aA]rrowvert\|[bB]ig\%(g[lmr]\=\|r\)\=\|\%(border\|p\)\=matrix\|displaylines\|\%(down\|up\)bracefill\|eqalign\%(no\)\|leqalignno\|[lr]moustache\|mathpalette\|root\|s[bp]\|skew\|sqrt\)\>\)'
|
||||
syn match plaintexMathBoxCommand display contains=@NoSpell contained
|
||||
\ '\\\%([hv]\=phantom\|mathstrut\|smash\)\>'
|
||||
syn match plaintexMathCharacterCommand display contains=@NoSpell contained
|
||||
\ '\\\%(b\|bar\|breve\|check\|d\=dots\=\|grave\|hat\|[lv]dots\|tilde\|vec\|wide\%(hat\|tilde\)\)\>'
|
||||
syn match plaintexMathDelimiter display contains=@NoSpell contained
|
||||
\ '\\\%(brace\%(vert\)\=\|brack\|cases\|choose\|[lr]\%(angle\|brace\|brack\|ceil\|floor\|group\)\|over\%(brace\|\%(left\|right\)arrow\)\|underbrace\)\>'
|
||||
syn match plaintexMathFontsCommand display contains=@NoSpell contained
|
||||
\ '\\\%(\%(bf\|it\|sl\|tt\)fam\|cal\|mit\)\>'
|
||||
syn match plaintexMathLetter display contains=@NoSpell contained
|
||||
\ '\\\%(aleph\|alpha\|beta\|chi\|[dD]elta\|ell\|epsilon\|eta\|[gG]amma\|[ij]math\|iota\|kappa\|[lL]ambda\|[mn]u\|[oO]mega\|[pP][hs]\=i\|rho\|[sS]igma\|tau\|[tT]heta\|[uU]psilon\|var\%(epsilon\|ph\=i\|rho\|sigma\|theta\)\|[xX]i\|zeta\)\>'
|
||||
syn match plaintexMathSymbol display contains=@NoSpell contained
|
||||
\ '\\\%(angle\|backslash\|bot\|clubsuit\|emptyset\|epsilon\|exists\|flat\|forall\|hbar\|heartsuit\|Im\|infty\|int\|lnot\|nabla\|natural\|neg\|pmod\|prime\|Re\|sharp\|smallint\|spadesuit\|surd\|top\|triangle\%(left\|right\)\=\|vdash\|wp\)\>'
|
||||
syn match plaintexMathFunction display contains=@NoSpell contained
|
||||
\ '\\\%(arc\%(cos\|sin\|tan\)\|arg\|\%(cos\|sin\|tan\)h\=\|coth\=\|csc\|de[gt]\|dim\|exp\|gcd\|hom\|inf\|ker\|lo\=g\|lim\%(inf\|sup\)\=\|ln\|max\|min\|Pr\|sec\|sup\)\>'
|
||||
syn match plaintexMathOperator display contains=@NoSpell contained
|
||||
\ '\\\%(amalg\|ast\|big\%(c[au]p\|circ\|o\%(dot\|plus\|times\|sqcup\)\|triangle\%(down\|up\)\|uplus\|vee\|wedge\|bmod\|bullet\)\|c[au]p\|cdot[ps]\=\|circ\|coprod\|d\=dagger\|diamond\%(suit\)\=\|div\|land\|lor\|mp\|o\%(dot\|int\|minus\|plus\|slash\|times\)pm\|prod\|setminus\|sqc[au]p\|sqsu[bp]seteq\|star\|su[bp]set\%(eq\)\=\|sum\|times\|uplus\|vee\|wedge\|wr\)\>'
|
||||
syn match plaintexMathPunctuation display contains=@NoSpell contained
|
||||
\ '\\\%(colon\)\>'
|
||||
syn match plaintexMathRelation display contains=@NoSpell contained
|
||||
\ '\\\%(approx\|asymp\|bowtie\|buildrel\|cong\|dashv\|doteq\|[dD]ownarrow\|equiv\|frown\|geq\=\|gets\|gg\|hook\%(left\|right\)arrow\|iff\|in\|leq\=\|[lL]eftarrow\|\%(left\|right\)harpoon\%(down\|up\)\|[lL]eftrightarrow\|ll\|[lL]ongleftrightarrow\|longmapsto\|[lL]ongrightarrow\|mapsto\|mid\|models\|[ns][ew]arrow\|neq\=\|ni\|not\%(in\)\=\|owns\|parallel\|perp\|prec\%(eq\)\=\|propto\|[rR]ightarrow\|rightleftharpoons\|sim\%(eq\)\=\|smile\|succ\%(eq\)\=\|to\|[uU]parrow\|[uU]pdownarrow\|[vV]ert\)\>'
|
||||
|
||||
syn match plaintexParameterDimen display contains=@NoSpell
|
||||
\ '\\maxdimen\>'
|
||||
syn match plaintexMathParameterDimen display contains=@NoSpell
|
||||
\ '\\jot\>'
|
||||
syn match plaintexParagraphParameterGlue display contains=@NoSpell
|
||||
\ '\\\%(\%(big\|med\|small\)skipamount\|normalbaselineskip\|normallineskip\%(limit\)\=\)\>'
|
||||
|
||||
syn match plaintexFontParameterInteger display contains=@NoSpell
|
||||
\ '\\magstep\%(half\)\=\>'
|
||||
syn match plaintexJobParameterInteger display contains=@NoSpell
|
||||
\ '\\magnification\>'
|
||||
syn match plaintexPageParameterInteger display contains=@NoSpell
|
||||
\ '\\pageno\>'
|
||||
|
||||
syn match plaintexPageParameterToken display contains=@NoSpell
|
||||
\ '\\\%(foot\|head\)line\>'
|
||||
|
||||
hi def link plaintexOperator Operator
|
||||
|
||||
hi def link plaintexDelimiter Delimiter
|
||||
|
||||
hi def link plaintexControlSequence Identifier
|
||||
hi def link plaintexComment Comment
|
||||
hi def link plaintexInclude Include
|
||||
hi def link plaintexRepeat Repeat
|
||||
|
||||
hi def link plaintexCommand coretexCommand
|
||||
hi def link plaintexBoxCommand plaintexCommand
|
||||
hi def link plaintexCharacterCommand coretexCharacterCommand
|
||||
hi def link plaintexDebuggingCommand coretexDebuggingCommand
|
||||
hi def link plaintexFontsCommand coretexFontsCommand
|
||||
hi def link plaintexGlueCommand plaintexCommand
|
||||
hi def link plaintexInsertsCommand plaintexCommand
|
||||
hi def link plaintexJobCommand coretexJobCommand
|
||||
hi def link plaintexKernCommand plaintexCommand
|
||||
hi def link plaintexMacroCommand coretexMacroCommand
|
||||
hi def link plaintexPageCommand plaintexCommand
|
||||
hi def link plaintexParagraphCommand plaintexCommand
|
||||
hi def link plaintexPenaltiesCommand plaintexCommand
|
||||
hi def link plaintexRegistersCommand plaintexCommand
|
||||
hi def link plaintexTablesCommand plaintexCommand
|
||||
|
||||
hi def link plaintexMath String
|
||||
hi def link plaintexMathCommand plaintexCommand
|
||||
hi def link plaintexMathBoxCommand plaintexBoxCommand
|
||||
hi def link plaintexMathCharacterCommand plaintexCharacterCommand
|
||||
hi def link plaintexMathDelimiter plaintexDelimiter
|
||||
hi def link plaintexMathFontsCommand plaintexFontsCommand
|
||||
hi def link plaintexMathLetter plaintexMathCharacterCommand
|
||||
hi def link plaintexMathSymbol plaintexMathLetter
|
||||
hi def link plaintexMathFunction Function
|
||||
hi def link plaintexMathOperator plaintexOperator
|
||||
hi def link plaintexMathPunctuation plaintexCharacterCommand
|
||||
hi def link plaintexMathRelation plaintexOperator
|
||||
|
||||
hi def link plaintexParameterDimen coretexParameterDimen
|
||||
hi def link plaintexMathParameterDimen coretexMathParameterDimen
|
||||
hi def link plaintexParagraphParameterGlue coretexParagraphParameterGlue
|
||||
hi def link plaintexFontParameterInteger coretexFontParameterInteger
|
||||
hi def link plaintexJobParameterInteger coretexJobParameterInteger
|
||||
hi def link plaintexPageParameterInteger coretexPageParameterInteger
|
||||
hi def link plaintexPageParameterToken coretexParameterToken
|
||||
|
||||
let b:current_syntax = "plaintex"
|
||||
|
||||
let &cpo = s:cpo_save
|
||||
unlet s:cpo_save
|
||||
|
@ -1524,6 +1524,7 @@ PRO_AUTO = \
|
||||
$(TCL_PRO)
|
||||
|
||||
ICON_APP = gui_mac.icns
|
||||
ICON_DOCTXT = doc-txt.icns
|
||||
|
||||
PRO_MANUAL = os_amiga.pro os_msdos.pro os_win16.pro os_win32.pro \
|
||||
os_mswin.pro os_beos.pro os_vms.pro os_riscos.pro $(PERL_PRO)
|
||||
@ -2163,7 +2164,7 @@ shadow: runtime pixmaps
|
||||
cd $(SHADOWDIR)/xxd; ln -s ../../xxd/*.[ch] ../../xxd/Make* .
|
||||
if test -f $(ICON_APP); then \
|
||||
cd $(SHADOWDIR); \
|
||||
ln -s ../$(ICON_APP) ../os_mac.rsr.hqx ../dehqx.py .; \
|
||||
ln -s ../$(ICON_APP) ../$(ICON_DOCTXT) ../os_mac.rsr.hqx ../dehqx.py .; \
|
||||
fi
|
||||
mkdir $(SHADOWDIR)/testdir
|
||||
cd $(SHADOWDIR)/testdir; ln -s ../../testdir/Makefile \
|
||||
@ -2528,7 +2529,7 @@ M4FLAGSX = $(M4FLAGS) -DAPP_EXE=$(VIMNAME) -DAPP_NAME=$(VIMNAME) \
|
||||
-DAPP_VER=$(VERSION) -DICON_APP=$(ICON_APP)
|
||||
|
||||
### Icons
|
||||
ICONS = $(RESDIR)/$(ICON_APP)
|
||||
ICONS = $(RESDIR)/$(ICON_APP) $(RESDIR)/$(ICON_DOCTXT)
|
||||
|
||||
# If you uncomment the following lines the *.icns in the src directory will be
|
||||
# detected by this Makefile automatically, and used for Vim.
|
||||
|
2
src/auto/configure
vendored
2
src/auto/configure
vendored
@ -3395,6 +3395,8 @@ fi
|
||||
if test x$prefix = xNONE; then
|
||||
prefix=/Applications
|
||||
fi
|
||||
|
||||
datadir='${prefix}/Vim.app/Contents/Resources'
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
@ -165,6 +165,9 @@ if test "`(uname) 2>/dev/null`" = Darwin; then
|
||||
if test x$prefix = xNONE; then
|
||||
prefix=/Applications
|
||||
fi
|
||||
|
||||
dnl Sorry for the hard coded default
|
||||
datadir='${prefix}/Vim.app/Contents/Resources'
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
BIN
src/doc-txt.icns
Normal file
BIN
src/doc-txt.icns
Normal file
Binary file not shown.
20
src/edit.c
20
src/edit.c
@ -726,8 +726,8 @@ edit(cmdchar, startln, count)
|
||||
continue;
|
||||
}
|
||||
|
||||
/* Pressing Enter selects the current match. */
|
||||
if (c == CAR || c == K_KENTER || c == NL)
|
||||
/* Pressing CTRL-Y selects the current match. */
|
||||
if (c == Ctrl_Y)
|
||||
{
|
||||
ins_compl_delete();
|
||||
ins_compl_insert();
|
||||
@ -3274,11 +3274,23 @@ ins_compl_prep(c)
|
||||
|
||||
auto_format(FALSE, TRUE);
|
||||
|
||||
/* if the popup menu is displayed hitting Enter means accepting
|
||||
/* If the popup menu is displayed pressing CTRL-Y means accepting
|
||||
* the selection without inserting anything. */
|
||||
if ((c == CAR || c == K_KENTER || c == NL) && pum_visible())
|
||||
if (c == Ctrl_Y && pum_visible())
|
||||
retval = TRUE;
|
||||
|
||||
/* CTRL-E means completion is Ended, go back to the typed text. */
|
||||
if (c == Ctrl_E)
|
||||
{
|
||||
ins_compl_delete();
|
||||
if (compl_leader != NULL)
|
||||
ins_bytes(compl_leader + curwin->w_cursor.col - compl_col);
|
||||
else if (compl_first_match != NULL)
|
||||
ins_bytes(compl_first_match->cp_str
|
||||
+ curwin->w_cursor.col - compl_col);
|
||||
retval = TRUE;
|
||||
}
|
||||
|
||||
ins_compl_free();
|
||||
compl_started = FALSE;
|
||||
compl_matches = 0;
|
||||
|
@ -3240,6 +3240,7 @@ do_ecmd(fnum, ffname, sfname, eap, newlnum, flags)
|
||||
buf_copy_options(buf, BCO_ENTER);
|
||||
|
||||
/* close the link to the current buffer */
|
||||
u_sync();
|
||||
close_buffer(curwin, curbuf,
|
||||
(flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD);
|
||||
|
||||
@ -5185,7 +5186,8 @@ free_old_sub()
|
||||
* Return TRUE when it was created.
|
||||
*/
|
||||
int
|
||||
prepare_tagpreview()
|
||||
prepare_tagpreview(undo_sync)
|
||||
int undo_sync; /* sync undo when leaving the window */
|
||||
{
|
||||
win_T *wp;
|
||||
|
||||
@ -5202,7 +5204,7 @@ prepare_tagpreview()
|
||||
if (wp->w_p_pvw)
|
||||
break;
|
||||
if (wp != NULL)
|
||||
win_enter(wp, TRUE);
|
||||
win_enter(wp, undo_sync);
|
||||
else
|
||||
{
|
||||
/*
|
||||
|
@ -1066,6 +1066,11 @@ HandleODocAE(const AppleEvent *theAEvent, AppleEvent *theReply, long refCon)
|
||||
else
|
||||
alist_add(&global_alist, p, 2);
|
||||
}
|
||||
|
||||
/* Change directory to the location of the first file. */
|
||||
if (GARGCOUNT > 0 && vim_chdirfile(alist_name(&GARGLIST[0])) == OK)
|
||||
shorten_fnames(TRUE);
|
||||
|
||||
goto finished;
|
||||
}
|
||||
|
||||
|
@ -1121,8 +1121,7 @@ gui_mch_set_text_area_pos(int x, int y, int w, int h)
|
||||
top = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
|
||||
#endif
|
||||
|
||||
GetWindowRect(s_hwnd, &rect);
|
||||
SetRect(&rect, 0, top, rect.right, TABLINE_HEIGHT);
|
||||
SetRect(&rect, 0, top, w, TABLINE_HEIGHT);
|
||||
TabCtrl_AdjustRect(s_tabhwnd, TRUE, &rect);
|
||||
MoveWindow(s_tabhwnd, 0, top, rect.right, rect.bottom, TRUE);
|
||||
}
|
||||
|
17
src/main.c
17
src/main.c
@ -449,7 +449,24 @@ main
|
||||
* message box. isatty(2) returns TRUE anyway, thus we need to check the
|
||||
* name to know we're not started from a terminal. */
|
||||
if (gui.starting && (!isatty(2) || strcmp("/dev/console", ttyname(2)) == 0))
|
||||
{
|
||||
params.want_full_screen = FALSE;
|
||||
|
||||
/* Avoid always using "/" as the current directory. Note that when
|
||||
* started from Finder the arglist will be filled later in
|
||||
* HandleODocAE() and "fname" will be NULL. */
|
||||
if (getcwd((char *)NameBuff, MAXPATHL) != NULL
|
||||
&& STRCMP(NameBuff, "/") == 0)
|
||||
{
|
||||
if (fname != NULL)
|
||||
(void)vim_chdirfile(fname);
|
||||
else
|
||||
{
|
||||
expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
|
||||
vim_chdir(NameBuff);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
180
src/po/ja.po
180
src/po/ja.po
@ -4,13 +4,13 @@
|
||||
# Do ":help credits" in Vim to see a list of people who contributed.
|
||||
#
|
||||
# MURAOKA Taro <koron@tka.att.ne.jp>, 2001-6.
|
||||
# Last Change: 05-Feb-2006.
|
||||
# Last Change: 28-Mar-2006.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Vim 7.0\n"
|
||||
"POT-Creation-Date: 2006-02-04 22:44+0900\n"
|
||||
"PO-Revision-Date: 2006-02-05 00:10+0900\n"
|
||||
"POT-Creation-Date: 2006-03-28 20:12+0900\n"
|
||||
"PO-Revision-Date: 2006-03-28 21:10+0900\n"
|
||||
"Last-Translator: MURAOKA Taro <koron@tka.att.ne.jp>\n"
|
||||
"Language-Team: MURAOKA Taro <koron@tka.att.ne.jp>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -130,7 +130,7 @@ msgstr "[̵̾]"
|
||||
msgid "help"
|
||||
msgstr "<22>إ<EFBFBD><D8A5><EFBFBD>"
|
||||
|
||||
msgid "[help]"
|
||||
msgid "[Help]"
|
||||
msgstr "[<5B>إ<EFBFBD><D8A5><EFBFBD>]"
|
||||
|
||||
msgid "[Preview]"
|
||||
@ -155,8 +155,8 @@ msgstr ""
|
||||
msgid "[Location List]"
|
||||
msgstr "[<5B><><EFBFBD><EFBFBD><EFBFBD>ꥹ<EFBFBD><EAA5B9>]"
|
||||
|
||||
msgid "[Error List]"
|
||||
msgstr "[<EFBFBD><EFBFBD><EFBFBD>顼<EFBFBD>ꥹ<EFBFBD><EFBFBD>]"
|
||||
msgid "[Quickfix List]"
|
||||
msgstr "[Quickfix<EFBFBD>ꥹ<EFBFBD><EFBFBD>]"
|
||||
|
||||
msgid ""
|
||||
"\n"
|
||||
@ -489,6 +489,9 @@ msgstr "E724: ɽ
|
||||
msgid "E699: Too many arguments"
|
||||
msgstr "E699: <20><>¿<EFBFBD><EFBFBD>ޤ<EFBFBD>"
|
||||
|
||||
msgid "E785: complete() can only be used in Insert mode"
|
||||
msgstr "E785: complete() <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⡼<EFBFBD>ɤǤ<C9A4><C7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
#.
|
||||
#. * Yes this is ugly, I don't particularly like it either. But doing it
|
||||
#. * this way has the compelling advantage that translations need not to
|
||||
@ -1021,6 +1024,21 @@ msgstr "
|
||||
msgid "finished sourcing %s"
|
||||
msgstr "%s <20>μ<EFBFBD><CEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ"
|
||||
|
||||
msgid "modeline"
|
||||
msgstr "<22>⡼<EFBFBD>ɹ<EFBFBD>"
|
||||
|
||||
msgid "--cmd argument"
|
||||
msgstr "--cmd <20><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "-c argument"
|
||||
msgstr "-c <20><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "environment variable"
|
||||
msgstr "<22>Ķ<EFBFBD><C4B6>ѿ<EFBFBD>"
|
||||
|
||||
msgid "error handler"
|
||||
msgstr "<22><><EFBFBD>顼<EFBFBD>ϥ<EFBFBD><CFA5>ɥ<EFBFBD>"
|
||||
|
||||
msgid "W15: Warning: Wrong line separator, ^M may be missing"
|
||||
msgstr "W15: <20>ٹ<EFBFBD>: <20>Զ<EFBFBD><D4B6>ڤ<EFBFBD><DAA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD>. ^M <20><><EFBFBD>ʤ<EFBFBD><CAA4>ΤǤ<CEA4><C7A4>礦"
|
||||
|
||||
@ -1151,9 +1169,19 @@ msgstr "E185:
|
||||
msgid "Greetings, Vim user!"
|
||||
msgstr "Vim <20>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>䤢!"
|
||||
|
||||
msgid "E784: Cannot close last tab page"
|
||||
msgstr "E784: <20>Ǹ<EFBFBD><C7B8>Υ<EFBFBD><CEA5>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4>뤳<EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "Already only one tab page"
|
||||
msgstr "<22><><EFBFBD>˥<EFBFBD><CBA5>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD>1<EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "Edit File in new window"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5>ǥե<C7A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD>ޤ<EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Tab page %d"
|
||||
msgstr "<22><><EFBFBD>֥ڡ<D6A5><DAA1><EFBFBD> %d"
|
||||
|
||||
msgid "No swap file"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD>åץե<D7A5><D5A5><EFBFBD><EFBFBD>뤬<EFBFBD><EBA4AC><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
@ -1908,6 +1936,15 @@ msgstr "
|
||||
msgid "Vim: Received \"die\" request from session manager\n"
|
||||
msgstr "Vim: <20><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ͡<DEA5><CDA1><EFBFBD><EFBFBD>㤫<EFBFBD><E3A4AB> \"die\" <20><EFBFBD><D7B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>\n"
|
||||
|
||||
msgid "Close"
|
||||
msgstr "<22>Ĥ<EFBFBD><C4A4><EFBFBD>"
|
||||
|
||||
msgid "New tab"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֥ڡ<D6A5><DAA1><EFBFBD>"
|
||||
|
||||
msgid "Open Tab..."
|
||||
msgstr "<22><><EFBFBD>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD>..."
|
||||
|
||||
msgid "Vim: Main window unexpectedly destroyed\n"
|
||||
msgstr "Vim: <20>ᥤ<EFBFBD><EFBFBD><F3A5A6A5><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD>դ<D4B0><D5A4>˲<EFBFBD><CBB2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>\n"
|
||||
|
||||
@ -1979,6 +2016,12 @@ msgstr "E243:
|
||||
msgid "E672: Unable to open window inside MDI application"
|
||||
msgstr "E672: MDI<44><49><EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥϥ<C7A4><CFA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD><F2B3ABA4>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "Close tab"
|
||||
msgstr "<22><><EFBFBD>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD>"
|
||||
|
||||
msgid "Open tab..."
|
||||
msgstr "<22><><EFBFBD>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "Find string (use '\\\\' to find a '\\')"
|
||||
msgstr "<22><><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD> ('\\' <20><EFBFBD><F2B8A1BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤ<EFBFBD> '\\\\')"
|
||||
|
||||
@ -2055,10 +2098,6 @@ msgstr "̾
|
||||
msgid "Show size in Points"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݥ<EFBFBD><DDA5><EFBFBD><EFBFBD>Ȥ<EFBFBD>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
# msgid " BLOCK"
|
||||
# msgstr " <20>֥<EFBFBD><D6A5>å<EFBFBD>"
|
||||
# msgid " LINE"
|
||||
# msgstr " <20><>"
|
||||
msgid "Encoding:"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><F3A5B3A1><EFBFBD>:"
|
||||
|
||||
@ -2658,8 +2697,6 @@ msgstr "
|
||||
msgid "Attempt to open script file again: \""
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥӳ<C6A4><D3B3><EFBFBD><EFBFBD>Ƥߤޤ<DFA4>: \""
|
||||
|
||||
# msgid "\"\n"
|
||||
# msgstr "\"\n"
|
||||
msgid "Cannot open for reading: \""
|
||||
msgstr "<22>ɹ<EFBFBD><C9B9>ѤȤ<D1A4><C8A4>Ƴ<EFBFBD><C6B3><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
@ -2835,6 +2872,9 @@ msgstr "-U <gvimrc>\t\t.gvimrc
|
||||
msgid "--noplugin\t\tDon't load plugin scripts"
|
||||
msgstr "--noplugin\t\t<>ץ饰<D7A5><E9A5B0><EFBFBD><EFBFBD><F3A5B9A5><EFBFBD><EFBFBD>ץȤ<D7A5><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤ<EFBFBD><C9A4>ʤ<EFBFBD>"
|
||||
|
||||
msgid "-p[N]\t\tOpen N tab pages (default: one for each file)"
|
||||
msgstr "-p[N]\t\tN <20>ĥ<EFBFBD><C4A5>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD>(<28><>ά<EFBFBD><CEAC>: <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤĤ<CBA4>1<EFBFBD><31>)"
|
||||
|
||||
msgid "-o[N]\t\tOpen N windows (default: one for each file)"
|
||||
msgstr "-o[N]\t\tN <20>ĥ<EFBFBD><C4A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD>(<28><>ά<EFBFBD><CEAC>: <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤĤ<CBA4>1<EFBFBD><31>)"
|
||||
|
||||
@ -2888,6 +2928,9 @@ msgid ""
|
||||
"--remote-wait-silent <files> Same, don't complain if there is no server"
|
||||
msgstr "--remote-wait-silent <files> Ʊ<><C6B1>, <20><><EFBFBD><EFBFBD><EFBFBD>Ф<EFBFBD>̵<EFBFBD><CCB5><EFBFBD>Ƥ<EFBFBD><C6A4>ٹ<EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>ʤ<EFBFBD>"
|
||||
|
||||
msgid "--remote-tab <files> As --remote but open tab page for each file"
|
||||
msgstr "--remote-tab <files> --remote<74>ǥե<C7A5><D5A5><EFBFBD><EFBFBD><EFBFBD>1<EFBFBD>ĤˤĤ<CBA4>1<EFBFBD>ĤΥ<C4A4><CEA5>֥ڡ<D6A5><DAA1><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit"
|
||||
msgstr "--remote-send <keys>\tVim<69><6D><EFBFBD><EFBFBD><EFBFBD>Ф<EFBFBD> <keys> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƽ<EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD>"
|
||||
|
||||
@ -3011,8 +3054,6 @@ msgstr "--socketid <xid>\t
|
||||
msgid "-P <parent title>\tOpen Vim inside parent application"
|
||||
msgstr "-P <<3C>ƤΥ<C6A4><CEA5><EFBFBD><EFBFBD>ȥ<EFBFBD>>\tVim<69><6D><EFBFBD>ƥ<EFBFBD><C6A5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǵ<EFBFBD>ư<EFBFBD><C6B0><EFBFBD><EFBFBD>"
|
||||
|
||||
# msgid "--help\t\tShow Gnome arguments"
|
||||
# msgstr "--help\t\tGNOME<4D>ΰ<EFBFBD><CEB0><EFBFBD><EFBFBD><EFBFBD><F2B8ABA4><EFBFBD>"
|
||||
msgid "No display"
|
||||
msgstr "<22>ǥ<EFBFBD><C7A5><EFBFBD><EFBFBD>ץ쥤<D7A5><ECA5A4><EFBFBD><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
@ -4146,6 +4187,9 @@ msgstr "
|
||||
msgid "...(truncated)"
|
||||
msgstr "...(<28><>ά)"
|
||||
|
||||
msgid "Message"
|
||||
msgstr "<22><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "'columns' is not 80, cannot execute external commands"
|
||||
msgstr "'columns' <20><>80<38>ǤϤʤ<CFA4><CAA4><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ<EFBFBD><DEA5>ɤ<EFBFBD><C9A4>¹ԤǤ<D4A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
@ -4517,10 +4561,6 @@ msgstr "
|
||||
msgid " SELECT BLOCK"
|
||||
msgstr " <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
# msgid " BLOCK"
|
||||
# msgstr " <20>֥<EFBFBD><D6A5>å<EFBFBD>"
|
||||
# msgid " LINE"
|
||||
# msgstr " <20><>"
|
||||
msgid "recording"
|
||||
msgstr "<22><>Ͽ<EFBFBD><CFBF>"
|
||||
|
||||
@ -4562,6 +4602,10 @@ msgstr "
|
||||
msgid "Scanning included file: %s"
|
||||
msgstr "<22><><EFBFBD>롼<F3A5AFA5>ɤ<EFBFBD><C9A4>줿<EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F2A5B9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Searching included file %s"
|
||||
msgstr "<22><><EFBFBD>롼<F3A5AFA5>ɤ<EFBFBD><C9A4>줿<EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F2A5B9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s"
|
||||
|
||||
msgid "E387: Match is on current line"
|
||||
msgstr "E387: <20><><EFBFBD>߹Ԥ˳<D4A4><CBB3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>"
|
||||
|
||||
@ -4654,8 +4698,8 @@ msgid "FLAG after using flags in %s line %d: %s"
|
||||
msgstr "%s <20><><EFBFBD><EFBFBD> %d <20><><EFBFBD>ܤ˥ե饰<D5A5><E9A5B0><EFBFBD><EFBFBD><EFBFBD>Ż<EFBFBD><C5BB>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Wrong COMPOUNDMAX value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> COMPOUNDMAX <20><><EFBFBD>ͤ˸<CDA4><CBB8>꤬<EFBFBD><EAA4AC><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>: %s"
|
||||
msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> COMPOUNDWORDMAX <20><><EFBFBD>ͤ˸<CDA4><CBB8>꤬<EFBFBD><EAA4AC><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Wrong COMPOUNDMIN value in %s line %d: %s"
|
||||
@ -4665,6 +4709,10 @@ msgstr "%s
|
||||
msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> COMPOUNDSYLMAX <20><><EFBFBD>ͤ˸<CDA4><CBB8>꤬<EFBFBD><EAA4AC><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> CHECKCOMPOUNDPATTERN <20><><EFBFBD>ͤ˸<CDA4><CBB8>꤬<EFBFBD><EAA4AC><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Different combining flag in continued affix block in %s line %d: %s"
|
||||
msgstr ""
|
||||
@ -4676,10 +4724,10 @@ msgstr "%s
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND in %s line %d: "
|
||||
"%s"
|
||||
"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s "
|
||||
"line %d: %s"
|
||||
msgstr ""
|
||||
"%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> affix <20><> BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND "
|
||||
"%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> affix <20><> BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST "
|
||||
"<22>˻<EFBFBD><CBBB>Ѥ<EFBFBD><D1A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
@ -4690,6 +4738,10 @@ msgstr "%s
|
||||
msgid "Broken condition in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD><CFB2><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Affix flags ignored when PFXPOSTPONE used in %s line %d: %s"
|
||||
msgstr "PFXPOSTPONE<4E><45><EFBFBD><EFBFBD><EFBFBD>ꤵ<EFBFBD>줿<EFBFBD>Τ<EFBFBD> %s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> affix <20>ե饰<D5A5><E9A5B0>̵<EFBFBD>뤷<EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Expected REP(SAL) count in %s line %d"
|
||||
msgstr "%s <20><> %d <20><><EFBFBD>ܤˤ<DCA4> REP(SAL) <20>β<EFBFBD><CEB2><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4>"
|
||||
@ -4780,7 +4832,7 @@ msgstr "%s
|
||||
|
||||
#, c-format
|
||||
msgid "/encoding= line after word ignored in %s line %d: %s"
|
||||
msgstr "%s <20><>s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> ñ<><C3B1><EFBFBD>θ<EFBFBD><CEB8><EFBFBD> /encoding= <20>Ԥ<EFBFBD>̵<EFBFBD>뤷<EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
|
||||
msgstr "%s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> ñ<><C3B1><EFBFBD>θ<EFBFBD><CEB8><EFBFBD> /encoding= <20>Ԥ<EFBFBD>̵<EFBFBD>뤷<EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Duplicate /regions= line ignored in %s line %d: %s"
|
||||
@ -4859,6 +4911,14 @@ msgstr "
|
||||
msgid "E765: 'spellfile' does not have %ld entries"
|
||||
msgstr "E765: 'spellfile' <20>ˤ<EFBFBD> %ld <20>ĤΥ<C4A4><CEA5><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Word removed from %s"
|
||||
msgstr "%s <20><><EFBFBD><EFBFBD>ñ<EFBFBD>줬<EFBFBD><ECA4AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Word added to %s"
|
||||
msgstr "%s <20><>ñ<EFBFBD>줬<EFBFBD>ɲä<C9B2><C3A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "E763: Word characters differ between spell files"
|
||||
msgstr "E763: ñ<><C3B1><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڥ<EFBFBD><DAA5>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȱۤʤ<DBA4><CAA4>ޤ<EFBFBD>"
|
||||
|
||||
@ -5223,15 +5283,52 @@ msgstr "Vim:
|
||||
msgid "No undo possible; continue anyway"
|
||||
msgstr "<22><>ǽ<EFBFBD>ʥ<EFBFBD><CAA5><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>: <20>Ȥꤢ<C8A4><EAA4A2><EFBFBD><EFBFBD>³<EFBFBD><C2B3><EFBFBD>ޤ<EFBFBD>"
|
||||
|
||||
msgid "Already at oldest change"
|
||||
msgstr "<22><><EFBFBD>˰<EFBFBD><CBB0>ָŤ<D6B8><C5A4>ѹ<EFBFBD><D1B9>Ǥ<EFBFBD>"
|
||||
|
||||
msgid "Already at newest change"
|
||||
msgstr "<22><><EFBFBD>˰<EFBFBD><CBB0>ֿ<EFBFBD><D6BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9>Ǥ<EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Undo number %ld not found"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5>ֹ<EFBFBD> %ld <20><><EFBFBD>ߤĤ<DFA4><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "E438: u_undo: line numbers wrong"
|
||||
msgstr "E438: u_undo: <20><><EFBFBD>ֹ椬<D6B9>ְ<EFBFBD><D6B0>äƤ<C3A4><C6A4>ޤ<EFBFBD>"
|
||||
|
||||
msgid "1 change"
|
||||
msgstr "1 <20>ս<EFBFBD><D5BD>ѹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>"
|
||||
msgid "more line"
|
||||
msgstr "<22><> <20>ɲä<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "<22>Ԥ<EFBFBD><D4A4><EFBFBD><EFBFBD>ޤ<EFBFBD>"
|
||||
msgstr "<22><> <20>ɲä<C9B2><C3A4>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "line less"
|
||||
msgstr "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "fewer lines"
|
||||
msgstr "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "change"
|
||||
msgstr "<22>ս<EFBFBD><D5BD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "changes"
|
||||
msgstr "<22>ս<EFBFBD><D5BD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "%ld changes"
|
||||
msgstr "%ld <EFBFBD>ս<EFBFBD><EFBFBD>ѹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>"
|
||||
msgid "%ld %s; %s #%ld %s"
|
||||
msgstr "%ld %s; %s #%ld %s"
|
||||
|
||||
msgid "before"
|
||||
msgstr "<22><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "after"
|
||||
msgstr "<22><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "Nothing to undo"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5>оݤ<D0BE><DDA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "number changes time"
|
||||
msgstr "<22>ֹ<EFBFBD> <20>ѹ<EFBFBD> <20><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "E439: undo list corrupt"
|
||||
msgstr "E439: <20><><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5>ꥹ<EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD>"
|
||||
@ -5564,6 +5661,33 @@ msgstr "E446:
|
||||
msgid "E447: Can't find file \"%s\" in path"
|
||||
msgstr "E447: path<74>ˤ<EFBFBD> \"%s\" <20>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>뤬<EFBFBD><EBA4AC><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "Edit with &multiple Vims"
|
||||
msgstr "ʣ<><CAA3><EFBFBD><EFBFBD>Vim<69><6D><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD> (&M)"
|
||||
|
||||
msgid "Edit with single &Vim"
|
||||
msgstr "1<>Ĥ<EFBFBD>Vim<69><6D><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD> (&V)"
|
||||
|
||||
msgid "Diff with Vim"
|
||||
msgstr "Vim<69>Ǻ<EFBFBD>ʬ<EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "Edit with &Vim"
|
||||
msgstr "Vim<69><6D><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD> (&V)"
|
||||
|
||||
msgid "Edit with existing Vim - "
|
||||
msgstr "<22><>¸<EFBFBD><C2B8>Vim<69><6D><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD> - "
|
||||
|
||||
msgid "Edits the selected file(s) with Vim"
|
||||
msgstr "<22><><EFBFBD>줿<F2A4B5A4>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Vim<69><6D><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "Error creating process: Check if gvim is in your path!"
|
||||
msgstr "<22><>ư<EFBFBD>˼<EFBFBD><CBBC>Ԥ<EFBFBD><D4A4>ޤ<EFBFBD><DEA4><EFBFBD>: gvim <20>ؤΥѥ<CEA5><D1A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ꤵ<EFBFBD><EAA4B5><EFBFBD>Ƥ<EFBFBD><C6A4>뤫<EFBFBD><EBA4AB>ǧ<EFBFBD><C7A7><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!"
|
||||
|
||||
msgid "gvimext.dll error"
|
||||
msgstr "gvimext.dll <20><><EFBFBD>顼"
|
||||
|
||||
msgid "Path length too long!"
|
||||
msgstr "<22>ѥ<EFBFBD><D1A5><EFBFBD>Ĺ<EFBFBD><EFBFBD>ޤ<EFBFBD>!"
|
||||
|
||||
msgid "--No lines in buffer--"
|
||||
msgstr "--<2D>Хåե<C3A5><D5A5>˹Ԥ<CBB9><D4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>--"
|
||||
|
||||
|
@ -4,13 +4,13 @@
|
||||
# Do ":help credits" in Vim to see a list of people who contributed.
|
||||
#
|
||||
# MURAOKA Taro <koron@tka.att.ne.jp>, 2001-6.
|
||||
# Last Change: 05-Feb-2006.
|
||||
# Last Change: 28-Mar-2006.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Vim 7.0\n"
|
||||
"POT-Creation-Date: 2006-02-04 22:44+0900\n"
|
||||
"PO-Revision-Date: 2006-02-05 00:10+0900\n"
|
||||
"POT-Creation-Date: 2006-03-28 20:12+0900\n"
|
||||
"PO-Revision-Date: 2006-03-28 21:10+0900\n"
|
||||
"Last-Translator: MURAOKA Taro <koron@tka.att.ne.jp>\n"
|
||||
"Language-Team: MURAOKA Taro <koron@tka.att.ne.jp>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -130,7 +130,7 @@ msgstr "[
|
||||
msgid "help"
|
||||
msgstr "<22>w<EFBFBD><77><EFBFBD>v"
|
||||
|
||||
msgid "[help]"
|
||||
msgid "[Help]"
|
||||
msgstr "[<5B>w<EFBFBD><77><EFBFBD>v]"
|
||||
|
||||
msgid "[Preview]"
|
||||
@ -155,8 +155,8 @@ msgstr ""
|
||||
msgid "[Location List]"
|
||||
msgstr "[<5B>ꏊ<EFBFBD><EA8F8A><EFBFBD>X<EFBFBD>g]"
|
||||
|
||||
msgid "[Error List]"
|
||||
msgstr "[<EFBFBD>G<EFBFBD><EFBFBD><EFBFBD>[<EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>g]"
|
||||
msgid "[Quickfix List]"
|
||||
msgstr "[Quickfix<EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>g]"
|
||||
|
||||
msgid ""
|
||||
"\n"
|
||||
@ -489,6 +489,9 @@ msgstr "E724:
|
||||
msgid "E699: Too many arguments"
|
||||
msgstr "E699: <20><><EFBFBD><EFBFBD><EFBFBD>߂<EFBFBD><DF82>܂<EFBFBD>"
|
||||
|
||||
msgid "E785: complete() can only be used in Insert mode"
|
||||
msgstr "E785: complete() <20>͑}<7D><><EFBFBD><EFBFBD><EFBFBD>[<5B>h<EFBFBD>ł<EFBFBD><C582><EFBFBD><EFBFBD><EFBFBD><EFBFBD>p<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
#.
|
||||
#. * Yes this is ugly, I don't particularly like it either. But doing it
|
||||
#. * this way has the compelling advantage that translations need not to
|
||||
@ -1021,6 +1024,21 @@ msgstr "
|
||||
msgid "finished sourcing %s"
|
||||
msgstr "%s <20>̎捞<CC8E><E68D9E><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "modeline"
|
||||
msgstr "<22><><EFBFBD>[<5B>h<EFBFBD>s"
|
||||
|
||||
msgid "--cmd argument"
|
||||
msgstr "--cmd <20><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "-c argument"
|
||||
msgstr "-c <20><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "environment variable"
|
||||
msgstr "<22><EFBFBD><C28B>ϐ<EFBFBD>"
|
||||
|
||||
msgid "error handler"
|
||||
msgstr "<22>G<EFBFBD><47><EFBFBD>[<5B>n<EFBFBD><6E><EFBFBD>h<EFBFBD><68>"
|
||||
|
||||
msgid "W15: Warning: Wrong line separator, ^M may be missing"
|
||||
msgstr "W15: <20>x<EFBFBD><78>: <20>s<EFBFBD><73><EFBFBD><EFBFBD><D882>s<EFBFBD><73><EFBFBD>ł<EFBFBD>. ^M <20><><EFBFBD>Ȃ<EFBFBD><C882>̂ł<CC82><C582>傤"
|
||||
|
||||
@ -1151,9 +1169,19 @@ msgstr "E185:
|
||||
msgid "Greetings, Vim user!"
|
||||
msgstr "Vim <20>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>A<EFBFBD>₠!"
|
||||
|
||||
msgid "E784: Cannot close last tab page"
|
||||
msgstr "E784: <20>Ō<EFBFBD><C58C>̃^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD><EFBFBD><C282>邱<EFBFBD>Ƃ͂ł<CD82><C582>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "Already only one tab page"
|
||||
msgstr "<22><><EFBFBD>Ƀ^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57>1<EFBFBD><EFBFBD><C282><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "Edit File in new window"
|
||||
msgstr "<22>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD>E<EFBFBD>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD>Ńt<C583>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD>ҏW<D28F><57><EFBFBD>܂<EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Tab page %d"
|
||||
msgstr "<22>^<5E>u<EFBFBD>y<EFBFBD>[<5B>W %d"
|
||||
|
||||
msgid "No swap file"
|
||||
msgstr "<22>X<EFBFBD><58><EFBFBD>b<EFBFBD>v<EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
@ -1908,6 +1936,15 @@ msgstr "
|
||||
msgid "Vim: Received \"die\" request from session manager\n"
|
||||
msgstr "Vim: <20>Z<EFBFBD>b<EFBFBD>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD>}<7D>l<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD><EFBFBD><EFBFBD><EFBFBD> \"die\" <20>v<EFBFBD><76><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F382AF8E><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>\n"
|
||||
|
||||
msgid "Close"
|
||||
msgstr "<22><EFBFBD><C282><EFBFBD>"
|
||||
|
||||
msgid "New tab"
|
||||
msgstr "<22>V<EFBFBD>K<EFBFBD>^<5E>u<EFBFBD>y<EFBFBD>[<5B>W"
|
||||
|
||||
msgid "Open Tab..."
|
||||
msgstr "<22>^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD>J<EFBFBD><4A>..."
|
||||
|
||||
msgid "Vim: Main window unexpectedly destroyed\n"
|
||||
msgstr "Vim: <20><><EFBFBD>C<EFBFBD><43><EFBFBD>E<EFBFBD>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD><45><EFBFBD>s<EFBFBD>ӂɔj<C994><EFBFBD><F382B382>܂<EFBFBD><DC82><EFBFBD>\n"
|
||||
|
||||
@ -1979,6 +2016,12 @@ msgstr "E243:
|
||||
msgid "E672: Unable to open window inside MDI application"
|
||||
msgstr "E672: MDI<44>A<EFBFBD>v<EFBFBD><76><EFBFBD>̒<EFBFBD><CC92>ł̓E<CD83>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD><45><EFBFBD>J<EFBFBD><4A><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "Close tab"
|
||||
msgstr "<22>^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD><EFBFBD><C282><EFBFBD>"
|
||||
|
||||
msgid "Open tab..."
|
||||
msgstr "<22>^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD>J<EFBFBD><4A>"
|
||||
|
||||
msgid "Find string (use '\\\\' to find a '\\')"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ('\\' <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɂ<EFBFBD> '\\\\')"
|
||||
|
||||
@ -2055,10 +2098,6 @@ msgstr "
|
||||
msgid "Show size in Points"
|
||||
msgstr "<22>T<EFBFBD>C<EFBFBD>Y<EFBFBD><59><EFBFBD>|<7C>C<EFBFBD><43><EFBFBD>g<EFBFBD>ŕ\\<5C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
# msgid " BLOCK"
|
||||
# msgstr " <20>u<EFBFBD><75><EFBFBD>b<EFBFBD>N"
|
||||
# msgid " LINE"
|
||||
# msgstr " <20>s"
|
||||
msgid "Encoding:"
|
||||
msgstr "<22>G<EFBFBD><47><EFBFBD>R<EFBFBD>[<5B>h:"
|
||||
|
||||
@ -2658,8 +2697,6 @@ msgstr "
|
||||
msgid "Attempt to open script file again: \""
|
||||
msgstr "<22>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD>ĂъJ<D18A><4A><EFBFBD>Ă݂܂<DD82>: \""
|
||||
|
||||
# msgid "\"\n"
|
||||
# msgstr "\"\n"
|
||||
msgid "Cannot open for reading: \""
|
||||
msgstr "<22>Ǎ<EFBFBD><C78D>p<EFBFBD>Ƃ<EFBFBD><C682>ĊJ<C48A><4A><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
@ -2835,6 +2872,9 @@ msgstr "-U <gvimrc>\t\t.gvimrc
|
||||
msgid "--noplugin\t\tDon't load plugin scripts"
|
||||
msgstr "--noplugin\t\t<>v<EFBFBD><76><EFBFBD>O<EFBFBD>C<EFBFBD><43><EFBFBD>X<EFBFBD>N<EFBFBD><4E><EFBFBD>v<EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD>[<5B>h<EFBFBD><68><EFBFBD>Ȃ<EFBFBD>"
|
||||
|
||||
msgid "-p[N]\t\tOpen N tab pages (default: one for each file)"
|
||||
msgstr "-p[N]\t\tN <20>^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD>J<EFBFBD><4A>(<28>ȗ<EFBFBD><C897>l: <20>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD>ɂ<C982>1<EFBFBD><31>)"
|
||||
|
||||
msgid "-o[N]\t\tOpen N windows (default: one for each file)"
|
||||
msgstr "-o[N]\t\tN <20>E<C283>B<EFBFBD><42><EFBFBD>h<EFBFBD>E<EFBFBD><45><EFBFBD>J<EFBFBD><4A>(<28>ȗ<EFBFBD><C897>l: <20>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD>ɂ<C982>1<EFBFBD><31>)"
|
||||
|
||||
@ -2888,6 +2928,9 @@ msgid ""
|
||||
"--remote-wait-silent <files> Same, don't complain if there is no server"
|
||||
msgstr "--remote-wait-silent <files> <20><><EFBFBD><EFBFBD>, <20>T<EFBFBD>[<5B>o<EFBFBD><6F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>x<EFBFBD><78><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>o<EFBFBD>͂<EFBFBD><CD82>Ȃ<EFBFBD>"
|
||||
|
||||
msgid "--remote-tab <files> As --remote but open tab page for each file"
|
||||
msgstr "--remote-tab <files> --remote<74>Ńt<C583>@<40>C<EFBFBD><43>1<EFBFBD>ɂ<C982>1<EFBFBD>̃^<5E>u<EFBFBD>y<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD>J<EFBFBD><4A>"
|
||||
|
||||
msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit"
|
||||
msgstr "--remote-send <keys>\tVim<69>T<EFBFBD>[<5B>o<EFBFBD><6F> <keys> <20>𑗐M<F0919790><4D><EFBFBD>ďI<C48F><49><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
@ -3011,8 +3054,6 @@ msgstr "--socketid <xid>\t
|
||||
msgid "-P <parent title>\tOpen Vim inside parent application"
|
||||
msgstr "-P <<3C>e<EFBFBD>̃^<5E>C<EFBFBD>g<EFBFBD><67>>\tVim<69><6D><EFBFBD>e<EFBFBD>A<EFBFBD>v<EFBFBD><76><EFBFBD>P<EFBFBD>[<5B>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD>̒<EFBFBD><CC92>ŋN<C58B><4E><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
# msgid "--help\t\tShow Gnome arguments"
|
||||
# msgstr "--help\t\tGNOME<4D>̈<EFBFBD><CC88><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
msgid "No display"
|
||||
msgstr "<22>f<EFBFBD>B<EFBFBD>X<EFBFBD>v<EFBFBD><76><EFBFBD>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><C282><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
@ -4146,6 +4187,9 @@ msgstr "
|
||||
msgid "...(truncated)"
|
||||
msgstr "...(<28>ȗ<EFBFBD>)"
|
||||
|
||||
msgid "Message"
|
||||
msgstr "<22><><EFBFBD>b<EFBFBD>Z<EFBFBD>[<5B>W"
|
||||
|
||||
msgid "'columns' is not 80, cannot execute external commands"
|
||||
msgstr "'columns' <20><>80<38>ł͂Ȃ<CD82><C882><EFBFBD><EFBFBD><EFBFBD>, <20>O<EFBFBD><4F><EFBFBD>R<EFBFBD>}<7D><><EFBFBD>h<EFBFBD><68><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>ł<EFBFBD><C582>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
@ -4517,10 +4561,6 @@ msgstr "
|
||||
msgid " SELECT BLOCK"
|
||||
msgstr " <20><><EFBFBD>`<60>I<EFBFBD><49>"
|
||||
|
||||
# msgid " BLOCK"
|
||||
# msgstr " <20>u<EFBFBD><75><EFBFBD>b<EFBFBD>N"
|
||||
# msgid " LINE"
|
||||
# msgstr " <20>s"
|
||||
msgid "recording"
|
||||
msgstr "<22>L<EFBFBD>^<5E><>"
|
||||
|
||||
@ -4562,6 +4602,10 @@ msgstr "
|
||||
msgid "Scanning included file: %s"
|
||||
msgstr "<22>C<EFBFBD><43><EFBFBD>N<EFBFBD><4E><EFBFBD>[<5B>h<EFBFBD><68><EFBFBD>ꂽ<EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>L<EFBFBD><4C><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Searching included file %s"
|
||||
msgstr "<22>C<EFBFBD><43><EFBFBD>N<EFBFBD><4E><EFBFBD>[<5B>h<EFBFBD><68><EFBFBD>ꂽ<EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>L<EFBFBD><4C><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s"
|
||||
|
||||
msgid "E387: Match is on current line"
|
||||
msgstr "E387: <20><><EFBFBD>ݍs<DD8D>ɊY<C98A><59><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>"
|
||||
|
||||
@ -4654,8 +4698,8 @@ msgid "FLAG after using flags in %s line %d: %s"
|
||||
msgstr "%s <20><><EFBFBD><EFBFBD> %d <20>s<EFBFBD>ڂɃt<C983><74><EFBFBD>O<EFBFBD>̓<EFBFBD><CC93>d<EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Wrong COMPOUNDMAX value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> COMPOUNDMAX <20>̒l<CC92>Ɍ<EFBFBD><C98C>肪<EFBFBD><E882AA><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>: %s"
|
||||
msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> COMPOUNDWORDMAX <20>̒l<CC92>Ɍ<EFBFBD><C98C>肪<EFBFBD><E882AA><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Wrong COMPOUNDMIN value in %s line %d: %s"
|
||||
@ -4665,6 +4709,10 @@ msgstr "%s
|
||||
msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> COMPOUNDSYLMAX <20>̒l<CC92>Ɍ<EFBFBD><C98C>肪<EFBFBD><E882AA><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> CHECKCOMPOUNDPATTERN <20>̒l<CC92>Ɍ<EFBFBD><C98C>肪<EFBFBD><E882AA><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Different combining flag in continued affix block in %s line %d: %s"
|
||||
msgstr ""
|
||||
@ -4676,10 +4724,10 @@ msgstr "%s
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND in %s line %d: "
|
||||
"%s"
|
||||
"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s "
|
||||
"line %d: %s"
|
||||
msgstr ""
|
||||
"%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> affix <20><> BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND "
|
||||
"%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> affix <20><> BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST "
|
||||
"<22>Ɏg<C98E>p<EFBFBD><70><EFBFBD>Ă<EFBFBD><C482><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
@ -4690,6 +4738,10 @@ msgstr "%s
|
||||
msgid "Broken condition in %s line %d: %s"
|
||||
msgstr "%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>͉<EFBFBD><CD89><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Affix flags ignored when PFXPOSTPONE used in %s line %d: %s"
|
||||
msgstr "PFXPOSTPONE<4E><45><EFBFBD>w<EFBFBD>肳<EFBFBD>ꂽ<EFBFBD>̂<EFBFBD> %s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> affix <20>t<EFBFBD><74><EFBFBD>O<EFBFBD><EFBFBD><F096B38E><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Expected REP(SAL) count in %s line %d"
|
||||
msgstr "%s <20><> %d <20>s<EFBFBD>ڂɂ<DA82> REP(SAL) <20>̉<CC89><F1909482>K<EFBFBD>v<EFBFBD>ł<EFBFBD>"
|
||||
@ -4780,7 +4832,7 @@ msgstr "%s
|
||||
|
||||
#, c-format
|
||||
msgid "/encoding= line after word ignored in %s line %d: %s"
|
||||
msgstr "%s <20><>s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> <20>P<EFBFBD><50><EFBFBD>̌<EFBFBD><CC8C><EFBFBD> /encoding= <20>s<EFBFBD><EFBFBD><F096B38E><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>: %s"
|
||||
msgstr "%s <20><> %d <20>s<EFBFBD>ڂ<EFBFBD> <20>P<EFBFBD><50><EFBFBD>̌<EFBFBD><CC8C><EFBFBD> /encoding= <20>s<EFBFBD><EFBFBD><F096B38E><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "Duplicate /regions= line ignored in %s line %d: %s"
|
||||
@ -4859,6 +4911,14 @@ msgstr "
|
||||
msgid "E765: 'spellfile' does not have %ld entries"
|
||||
msgstr "E765: 'spellfile' <20>ɂ<EFBFBD> %ld <20>̃G<CC83><47><EFBFBD>g<EFBFBD><67><EFBFBD>͂<EFBFBD><CD82><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Word removed from %s"
|
||||
msgstr "%s <20><><EFBFBD><EFBFBD><EFBFBD>P<EFBFBD>ꂪ<EFBFBD>폜<EFBFBD><ED8F9C><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Word added to %s"
|
||||
msgstr "%s <20>ɒP<C992>ꂪ<EFBFBD>lj<EFBFBD><C789><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "E763: Word characters differ between spell files"
|
||||
msgstr "E763: <20>P<EFBFBD><50><EFBFBD>̕<EFBFBD><CC95><EFBFBD><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>y<EFBFBD><79><EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD>ƈقȂ<D982><C882>܂<EFBFBD>"
|
||||
|
||||
@ -5223,15 +5283,52 @@ msgstr "Vim:
|
||||
msgid "No undo possible; continue anyway"
|
||||
msgstr "<22>\\<5C>ȃA<C883><41><EFBFBD>h<EFBFBD>D<EFBFBD>͂<EFBFBD><CD82><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>: <20>Ƃ肠<C682><E882A0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>"
|
||||
|
||||
msgid "Already at oldest change"
|
||||
msgstr "<22><><EFBFBD>Ɉ<EFBFBD><C988>ԌÂ<D48C><C382>ύX<CF8D>ł<EFBFBD>"
|
||||
|
||||
msgid "Already at newest change"
|
||||
msgstr "<22><><EFBFBD>Ɉ<EFBFBD><C988>ԐV<D490><56><EFBFBD><EFBFBD><EFBFBD>ύX<CF8D>ł<EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "Undo number %ld not found"
|
||||
msgstr "<22>A<EFBFBD><41><EFBFBD>h<EFBFBD>D<EFBFBD>ԍ<EFBFBD> %ld <20><><EFBFBD>݂<DD82><C282><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "E438: u_undo: line numbers wrong"
|
||||
msgstr "E438: u_undo: <20>s<EFBFBD>ԍ<EFBFBD><D48D><EFBFBD><EFBFBD>Ԉ<EFBFBD><D488><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD>"
|
||||
|
||||
msgid "1 change"
|
||||
msgstr "1 <20>ӏ<EFBFBD><D38F>ύX<EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD>"
|
||||
msgid "more line"
|
||||
msgstr "<EFBFBD>s <20>lj<EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "<22>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>"
|
||||
msgstr "<22>s <20>lj<EFBFBD><C789><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "line less"
|
||||
msgstr "<22>s <20>폜<EFBFBD><ED8F9C><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "fewer lines"
|
||||
msgstr "<22>s <20>폜<EFBFBD><ED8F9C><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "change"
|
||||
msgstr "<22>ӏ<EFBFBD><D38F>ύX<CF8D><58><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "changes"
|
||||
msgstr "<22>ӏ<EFBFBD><D38F>ύX<CF8D><58><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
#, c-format
|
||||
msgid "%ld changes"
|
||||
msgstr "%ld <EFBFBD>ӏ<EFBFBD><EFBFBD>ύX<EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD>"
|
||||
msgid "%ld %s; %s #%ld %s"
|
||||
msgstr "%ld %s; %s #%ld %s"
|
||||
|
||||
msgid "before"
|
||||
msgstr "<22>O<EFBFBD><4F>"
|
||||
|
||||
msgid "after"
|
||||
msgstr "<22><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "Nothing to undo"
|
||||
msgstr "<22>A<EFBFBD><41><EFBFBD>h<EFBFBD>D<EFBFBD>Ώۂ<CE8F><DB82><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "number changes time"
|
||||
msgstr "<22>ԍ<EFBFBD> <20>ύX <20><><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "E439: undo list corrupt"
|
||||
msgstr "E439: <20>A<EFBFBD><41><EFBFBD>h<EFBFBD>D<EFBFBD><44><EFBFBD>X<EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482>܂<EFBFBD>"
|
||||
@ -5564,6 +5661,33 @@ msgstr "E446:
|
||||
msgid "E447: Can't find file \"%s\" in path"
|
||||
msgstr "E447: path<74>ɂ<EFBFBD> \"%s\" <20>Ƃ<EFBFBD><C682><EFBFBD><EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>"
|
||||
|
||||
msgid "Edit with &multiple Vims"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Vim<69>ŕҏW<D28F><57><EFBFBD><EFBFBD> (&M)"
|
||||
|
||||
msgid "Edit with single &Vim"
|
||||
msgstr "1<><EFBFBD>Vim<69>ŕҏW<D28F><57><EFBFBD><EFBFBD> (&V)"
|
||||
|
||||
msgid "Diff with Vim"
|
||||
msgstr "Vim<69>ō<EFBFBD><C58D><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "Edit with &Vim"
|
||||
msgstr "Vim<69>ŕҏW<D28F><57><EFBFBD><EFBFBD> (&V)"
|
||||
|
||||
msgid "Edit with existing Vim - "
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Vim<69>ŕҏW<D28F><57><EFBFBD><EFBFBD> - "
|
||||
|
||||
msgid "Edits the selected file(s) with Vim"
|
||||
msgstr "<22>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD>ꂽ<EFBFBD>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD><EFBFBD>Vim<69>ŕҏW<D28F><57><EFBFBD><EFBFBD>"
|
||||
|
||||
msgid "Error creating process: Check if gvim is in your path!"
|
||||
msgstr "<22>N<EFBFBD><4E><EFBFBD>Ɏ<EFBFBD><C98E>s<EFBFBD><73><EFBFBD>܂<EFBFBD><DC82><EFBFBD>: gvim <20>ւ̃p<CC83>X<EFBFBD><58><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݒ肳<DD92><E882B3><EFBFBD>Ă<EFBFBD><C482>邩<EFBFBD>m<EFBFBD>F<EFBFBD><46><EFBFBD>Ă<EFBFBD><C482><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!"
|
||||
|
||||
msgid "gvimext.dll error"
|
||||
msgstr "gvimext.dll <20>G<EFBFBD><47><EFBFBD>["
|
||||
|
||||
msgid "Path length too long!"
|
||||
msgstr "<22>p<EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD><EFBFBD>߂<EFBFBD><DF82>܂<EFBFBD>!"
|
||||
|
||||
msgid "--No lines in buffer--"
|
||||
msgstr "--<2D>o<EFBFBD>b<EFBFBD>t<EFBFBD>@<40>ɍs<C98D><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>--"
|
||||
|
||||
|
@ -401,8 +401,11 @@ pum_set_selected(n)
|
||||
}
|
||||
|
||||
#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
|
||||
/* Show extra info in the preview window if there is something and
|
||||
* 'completeopt' contains "preview". */
|
||||
/*
|
||||
* Show extra info in the preview window if there is something and
|
||||
* 'completeopt' contains "preview".
|
||||
* NOTE: Be very careful not to sync undo!
|
||||
*/
|
||||
if (pum_array[pum_selected].pum_info != NULL
|
||||
&& vim_strchr(p_cot, 'p') != NULL)
|
||||
{
|
||||
@ -411,7 +414,7 @@ pum_set_selected(n)
|
||||
|
||||
/* Open a preview window. 3 lines by default. */
|
||||
g_do_tagpreview = 3;
|
||||
resized = prepare_tagpreview();
|
||||
resized = prepare_tagpreview(FALSE);
|
||||
g_do_tagpreview = 0;
|
||||
|
||||
if (curwin->w_p_pvw)
|
||||
@ -496,7 +499,7 @@ pum_set_selected(n)
|
||||
update_screen(0);
|
||||
pum_do_redraw = FALSE;
|
||||
|
||||
if (win_valid(curwin_save))
|
||||
if (!resized && win_valid(curwin_save))
|
||||
win_enter(curwin_save, TRUE);
|
||||
|
||||
/* May need to update the screen again when there are
|
||||
|
@ -1,59 +1,59 @@
|
||||
/* ex_cmds.c */
|
||||
extern void do_ascii __ARGS((exarg_T *eap));
|
||||
extern void ex_align __ARGS((exarg_T *eap));
|
||||
extern void ex_sort __ARGS((exarg_T *eap));
|
||||
extern void ex_retab __ARGS((exarg_T *eap));
|
||||
extern int do_move __ARGS((linenr_T line1, linenr_T line2, linenr_T dest));
|
||||
extern void ex_copy __ARGS((linenr_T line1, linenr_T line2, linenr_T n));
|
||||
extern void free_prev_shellcmd __ARGS((void));
|
||||
extern void do_bang __ARGS((int addr_count, exarg_T *eap, int forceit, int do_in, int do_out));
|
||||
extern void do_shell __ARGS((char_u *cmd, int flags));
|
||||
extern char_u *make_filter_cmd __ARGS((char_u *cmd, char_u *itmp, char_u *otmp));
|
||||
extern void append_redir __ARGS((char_u *buf, char_u *opt, char_u *fname));
|
||||
extern int viminfo_error __ARGS((char *errnum, char *message, char_u *line));
|
||||
extern int read_viminfo __ARGS((char_u *file, int want_info, int want_marks, int forceit));
|
||||
extern void write_viminfo __ARGS((char_u *file, int forceit));
|
||||
extern int viminfo_readline __ARGS((vir_T *virp));
|
||||
extern char_u *viminfo_readstring __ARGS((vir_T *virp, int off, int convert));
|
||||
extern void viminfo_writestring __ARGS((FILE *fd, char_u *p));
|
||||
extern void do_fixdel __ARGS((exarg_T *eap));
|
||||
extern void print_line_no_prefix __ARGS((linenr_T lnum, int use_number, int list));
|
||||
extern void print_line __ARGS((linenr_T lnum, int use_number, int list));
|
||||
extern void ex_file __ARGS((exarg_T *eap));
|
||||
extern void ex_update __ARGS((exarg_T *eap));
|
||||
extern void ex_write __ARGS((exarg_T *eap));
|
||||
extern int do_write __ARGS((exarg_T *eap));
|
||||
extern void ex_wnext __ARGS((exarg_T *eap));
|
||||
extern void do_wqall __ARGS((exarg_T *eap));
|
||||
extern int not_writing __ARGS((void));
|
||||
extern int getfile __ARGS((int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, int forceit));
|
||||
extern int do_ecmd __ARGS((int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags));
|
||||
extern void ex_append __ARGS((exarg_T *eap));
|
||||
extern void ex_change __ARGS((exarg_T *eap));
|
||||
extern void ex_z __ARGS((exarg_T *eap));
|
||||
extern int check_restricted __ARGS((void));
|
||||
extern int check_secure __ARGS((void));
|
||||
extern void do_sub __ARGS((exarg_T *eap));
|
||||
extern int do_sub_msg __ARGS((int count_only));
|
||||
extern void ex_global __ARGS((exarg_T *eap));
|
||||
extern void global_exe __ARGS((char_u *cmd));
|
||||
extern int read_viminfo_sub_string __ARGS((vir_T *virp, int force));
|
||||
extern void write_viminfo_sub_string __ARGS((FILE *fp));
|
||||
extern void free_old_sub __ARGS((void));
|
||||
extern int prepare_tagpreview __ARGS((void));
|
||||
extern void ex_help __ARGS((exarg_T *eap));
|
||||
extern char_u *check_help_lang __ARGS((char_u *arg));
|
||||
extern int help_heuristic __ARGS((char_u *matched_string, int offset, int wrong_case));
|
||||
extern int find_help_tags __ARGS((char_u *arg, int *num_matches, char_u ***matches, int keep_lang));
|
||||
extern void fix_help_buffer __ARGS((void));
|
||||
extern void ex_exusage __ARGS((exarg_T *eap));
|
||||
extern void ex_viusage __ARGS((exarg_T *eap));
|
||||
extern void ex_helptags __ARGS((exarg_T *eap));
|
||||
extern void ex_sign __ARGS((exarg_T *eap));
|
||||
extern void sign_gui_started __ARGS((void));
|
||||
extern int sign_get_attr __ARGS((int typenr, int line));
|
||||
extern char_u *sign_get_text __ARGS((int typenr));
|
||||
extern void *sign_get_image __ARGS((int typenr));
|
||||
extern char_u *sign_typenr2name __ARGS((int typenr));
|
||||
extern void ex_drop __ARGS((exarg_T *eap));
|
||||
void do_ascii __ARGS((exarg_T *eap));
|
||||
void ex_align __ARGS((exarg_T *eap));
|
||||
void ex_sort __ARGS((exarg_T *eap));
|
||||
void ex_retab __ARGS((exarg_T *eap));
|
||||
int do_move __ARGS((linenr_T line1, linenr_T line2, linenr_T dest));
|
||||
void ex_copy __ARGS((linenr_T line1, linenr_T line2, linenr_T n));
|
||||
void free_prev_shellcmd __ARGS((void));
|
||||
void do_bang __ARGS((int addr_count, exarg_T *eap, int forceit, int do_in, int do_out));
|
||||
void do_shell __ARGS((char_u *cmd, int flags));
|
||||
char_u *make_filter_cmd __ARGS((char_u *cmd, char_u *itmp, char_u *otmp));
|
||||
void append_redir __ARGS((char_u *buf, char_u *opt, char_u *fname));
|
||||
int viminfo_error __ARGS((char *errnum, char *message, char_u *line));
|
||||
int read_viminfo __ARGS((char_u *file, int want_info, int want_marks, int forceit));
|
||||
void write_viminfo __ARGS((char_u *file, int forceit));
|
||||
int viminfo_readline __ARGS((vir_T *virp));
|
||||
char_u *viminfo_readstring __ARGS((vir_T *virp, int off, int convert));
|
||||
void viminfo_writestring __ARGS((FILE *fd, char_u *p));
|
||||
void do_fixdel __ARGS((exarg_T *eap));
|
||||
void print_line_no_prefix __ARGS((linenr_T lnum, int use_number, int list));
|
||||
void print_line __ARGS((linenr_T lnum, int use_number, int list));
|
||||
void ex_file __ARGS((exarg_T *eap));
|
||||
void ex_update __ARGS((exarg_T *eap));
|
||||
void ex_write __ARGS((exarg_T *eap));
|
||||
int do_write __ARGS((exarg_T *eap));
|
||||
void ex_wnext __ARGS((exarg_T *eap));
|
||||
void do_wqall __ARGS((exarg_T *eap));
|
||||
int not_writing __ARGS((void));
|
||||
int getfile __ARGS((int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, int forceit));
|
||||
int do_ecmd __ARGS((int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags));
|
||||
void ex_append __ARGS((exarg_T *eap));
|
||||
void ex_change __ARGS((exarg_T *eap));
|
||||
void ex_z __ARGS((exarg_T *eap));
|
||||
int check_restricted __ARGS((void));
|
||||
int check_secure __ARGS((void));
|
||||
void do_sub __ARGS((exarg_T *eap));
|
||||
int do_sub_msg __ARGS((int count_only));
|
||||
void ex_global __ARGS((exarg_T *eap));
|
||||
void global_exe __ARGS((char_u *cmd));
|
||||
int read_viminfo_sub_string __ARGS((vir_T *virp, int force));
|
||||
void write_viminfo_sub_string __ARGS((FILE *fp));
|
||||
void free_old_sub __ARGS((void));
|
||||
int prepare_tagpreview __ARGS((int undo_sync));
|
||||
void ex_help __ARGS((exarg_T *eap));
|
||||
char_u *check_help_lang __ARGS((char_u *arg));
|
||||
int help_heuristic __ARGS((char_u *matched_string, int offset, int wrong_case));
|
||||
int find_help_tags __ARGS((char_u *arg, int *num_matches, char_u ***matches, int keep_lang));
|
||||
void fix_help_buffer __ARGS((void));
|
||||
void ex_exusage __ARGS((exarg_T *eap));
|
||||
void ex_viusage __ARGS((exarg_T *eap));
|
||||
void ex_helptags __ARGS((exarg_T *eap));
|
||||
void ex_sign __ARGS((exarg_T *eap));
|
||||
void sign_gui_started __ARGS((void));
|
||||
int sign_get_attr __ARGS((int typenr, int line));
|
||||
char_u *sign_get_text __ARGS((int typenr));
|
||||
void *sign_get_image __ARGS((int typenr));
|
||||
char_u *sign_typenr2name __ARGS((int typenr));
|
||||
void ex_drop __ARGS((exarg_T *eap));
|
||||
/* vim: set ft=c : */
|
||||
|
@ -28,7 +28,7 @@ void gui_mch_exit __ARGS((int));
|
||||
void gui_mch_set_winsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height));
|
||||
int gui_mch_get_winpos __ARGS((int *x, int *y));
|
||||
void gui_mch_set_winpos __ARGS((int x, int y));
|
||||
void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height));
|
||||
void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height, int direction));
|
||||
void gui_mch_get_screen_dimensions __ARGS((int *screen_w, int *screen_h));
|
||||
void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h));
|
||||
void gui_mch_enable_scrollbar __ARGS((scrollbar_T *sb, int flag));
|
||||
|
@ -4927,7 +4927,7 @@ search_line:
|
||||
if (g_do_tagpreview != 0)
|
||||
{
|
||||
curwin_save = curwin;
|
||||
prepare_tagpreview();
|
||||
prepare_tagpreview(TRUE);
|
||||
}
|
||||
#endif
|
||||
if (action == ACTION_SPLIT)
|
||||
|
@ -3101,7 +3101,7 @@ jumpto_tag(lbuf, forceit, keep_help)
|
||||
* Make the preview window the current window.
|
||||
* Open a preview window when needed.
|
||||
*/
|
||||
prepare_tagpreview();
|
||||
prepare_tagpreview(TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -35,6 +35,6 @@
|
||||
*/
|
||||
#define VIM_VERSION_NODOT "vim70c"
|
||||
#define VIM_VERSION_SHORT "7.0c"
|
||||
#define VIM_VERSION_MEDIUM "7.0c01 BETA"
|
||||
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0c01 BETA (2006 Mar 27)"
|
||||
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0c01 BETA (2006 Mar 27, compiled "
|
||||
#define VIM_VERSION_MEDIUM "7.0c02 BETA"
|
||||
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0c02 BETA (2006 Mar 28)"
|
||||
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0c02 BETA (2006 Mar 28, compiled "
|
||||
|
Reference in New Issue
Block a user