Skip to content

Commit

Permalink
updated for version 7.0c02
Browse files Browse the repository at this point in the history
  • Loading branch information
vimboss committed Mar 28, 2006
1 parent 632759e commit 318148d
Show file tree
Hide file tree
Showing 34 changed files with 1,139 additions and 207 deletions.
1 change: 1 addition & 0 deletions Filelist
Expand Up @@ -362,6 +362,7 @@ SRC_MAC = \
src/dehqx.py \ src/dehqx.py \
src/gui_mac.c \ src/gui_mac.c \
src/gui_mac.icns \ src/gui_mac.icns \
src/doc-txt.icns \
src/os_mac.h \ src/os_mac.h \
src/os_mac.rsr.hqx \ src/os_mac.rsr.hqx \
src/os_mac_conv.c \ src/os_mac_conv.c \
Expand Down
17 changes: 15 additions & 2 deletions runtime/doc/insert.txt
@@ -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 VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -304,9 +304,11 @@ insert mode:


*i_CTRL-X_CTRL-E* *i_CTRL-X_CTRL-E*
CTRL-X CTRL-E scroll window one line up. CTRL-X CTRL-E scroll window one line up.
When doing completion look here: |complete_CTRL-E|


*i_CTRL-X_CTRL-Y* *i_CTRL-X_CTRL-Y*
CTRL-X CTRL-Y scroll window one line down. 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 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 one line unless that would cause the cursor to move from its current position
Expand Down Expand Up @@ -590,6 +592,16 @@ and CTRL-P (previous).


Also see the 'infercase' option if you want to adjust the case of the match. 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 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 ":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. ends CTRL-X mode (any key that is not a valid CTRL-X mode command) is mapped.
Expand Down Expand Up @@ -1121,7 +1133,8 @@ any printable, non-white character:
Add this character and reduce the number of matches. Add this character and reduce the number of matches.


In both states these can be used: 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. <PageUp> Select a match several entries back, but don't insert it.
<PageDown> Select a match several entries further, 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 <Up> Select the previous match, as if CTRL-P was used, but don't
Expand Down
15 changes: 14 additions & 1 deletion runtime/doc/syntax.txt
@@ -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 VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -1945,6 +1945,19 @@ x > 0 to sync at least x lines backwards,
x = 0 to sync from start. 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 *ppwiz.vim* *ft-ppwiz-syntax*


PPWizard is a preprocessor for HTML and OS/2 INF files PPWizard is a preprocessor for HTML and OS/2 INF files
Expand Down
4 changes: 4 additions & 0 deletions runtime/doc/tags
Expand Up @@ -4720,6 +4720,8 @@ compl-whole-line insert.txt /*compl-whole-line*
complete() eval.txt /*complete()* complete() eval.txt /*complete()*
complete-functions insert.txt /*complete-functions* complete-functions insert.txt /*complete-functions*
complete-items insert.txt /*complete-items* 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_add() eval.txt /*complete_add()*
complete_check() eval.txt /*complete_check()* complete_check() eval.txt /*complete_check()*
complex-change change.txt /*complex-change* complex-change change.txt /*complex-change*
Expand Down Expand Up @@ -5285,6 +5287,7 @@ ft-php-omni insert.txt /*ft-php-omni*
ft-php-syntax syntax.txt /*ft-php-syntax* ft-php-syntax syntax.txt /*ft-php-syntax*
ft-php3-syntax syntax.txt /*ft-php3-syntax* ft-php3-syntax syntax.txt /*ft-php3-syntax*
ft-phtml-syntax syntax.txt /*ft-phtml-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-postscr-syntax syntax.txt /*ft-postscr-syntax*
ft-ppwiz-syntax syntax.txt /*ft-ppwiz-syntax* ft-ppwiz-syntax syntax.txt /*ft-ppwiz-syntax*
ft-printcap-syntax syntax.txt /*ft-printcap-syntax* ft-printcap-syntax syntax.txt /*ft-printcap-syntax*
Expand Down Expand Up @@ -6465,6 +6468,7 @@ pi_gzip.txt pi_gzip.txt /*pi_gzip.txt*
pi_netrw.txt pi_netrw.txt /*pi_netrw.txt* pi_netrw.txt pi_netrw.txt /*pi_netrw.txt*
pi_paren.txt pi_paren.txt /*pi_paren.txt* pi_paren.txt pi_paren.txt /*pi_paren.txt*
pi_spec.txt pi_spec.txt /*pi_spec.txt* pi_spec.txt pi_spec.txt /*pi_spec.txt*
plaintex.vim syntax.txt /*plaintex.vim*
plsql sql.txt /*plsql* plsql sql.txt /*plsql*
plugin usr_05.txt /*plugin* plugin usr_05.txt /*plugin*
plugin-details filetype.txt /*plugin-details* plugin-details filetype.txt /*plugin-details*
Expand Down
31 changes: 13 additions & 18 deletions runtime/doc/todo.txt
@@ -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 VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -30,23 +30,28 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- 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 The 16 bit DOS version compiles now, but it's still too low on memory, writing
a file fails when 'writebackup' is set. a file fails when 'writebackup' is set.


Have argv() return the arguments in a List.

New Hungarian dictionary. (Laci Nemeth) New Hungarian dictionary. (Laci Nemeth)
test COMPOUNDFORBIDFLAG test COMPOUNDFORBIDFLAG
implement use of COMPOUNDPERMITFLAG implement use of COMPOUNDPERMITFLAG
implement use of CHECKCOMPOUND* flags, <compoptions> implement use of CHECKCOMPOUND* flags, <compoptions>
implement using CHECKCOMPOUNDPATTERN: match words with sl_comppat[]. implement using CHECKCOMPOUNDPATTERN: match words with sl_comppat[].
explain the use of affix flags, replace |spell-affix-rare| explain the use of affix flags, replace |spell-affix-rare|


Mac: When started from finder path isn't set and curdir is /. - Set user variables to the names of the actually used user vimrc file,
Benji Fisher suggests using system() (2006 Mar 26) the first directory looked for user plugins/syntax files.

$MYVIMRC for .vimrc, $MYGVIMRC for .gvimrc, $MYRUNTIME/plugin for
Mac: reported default for $VIM is /Applications/share/vim 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. Add more tests for all new functionality in Vim 7. Especially new functions.


Expand Down Expand Up @@ -132,16 +137,6 @@ Awaiting updated patches:
- findmatch() should be adjusted for Lisp. See remark at - findmatch() should be adjusted for Lisp. See remark at
get_lisp_indent(). Esp. \( and \) should be skipped. (Dorai Sitaram, get_lisp_indent(). Esp. \( and \) should be skipped. (Dorai Sitaram,
incomplete patch Mar 18) 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 - For GUI Find/Replace dialog support using a regexp. Patch for Motif
and GTK by degreneir (nov 10 and nov 18). and GTK by degreneir (nov 10 and nov 18).
- Patch for "paranoid mode" by Kevin Collins, March 7. Needs much more work. - Patch for "paranoid mode" by Kevin Collins, March 7. Needs much more work.
Expand Down
19 changes: 17 additions & 2 deletions runtime/doc/version7.txt
@@ -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 VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -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. 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: Minor incompatibilities:


Expand Down Expand Up @@ -876,6 +879,7 @@ context syntax and ftplugin file. (Nikolai Weibull)
CRM114 ftplugin file. (Nikolai Weibull) CRM114 ftplugin file. (Nikolai Weibull)
cvs RC ftplugin file. (Nikolai Weibull) cvs RC ftplugin file. (Nikolai Weibull)
D indent file. (Jason Mills) D indent file. (Jason Mills)
Debian Sources.list syntax file. (Matthijs Mohlmann)
dictconf and dictdconf syntax, indent and ftplugin files. (Nikolai Weibull) dictconf and dictdconf syntax, indent and ftplugin files. (Nikolai Weibull)
diff ftplugin file. (Bram Moolenaar) diff ftplugin file. (Bram Moolenaar)
dircolors ftplugin file. (Nikolai Weibull) dircolors ftplugin file. (Nikolai Weibull)
Expand Down Expand Up @@ -917,7 +921,7 @@ Pascal indent file. (Neil Carter)
passwd syntax and ftplugin file. (Nikolai Weibull) passwd syntax and ftplugin file. (Nikolai Weibull)
PHP compiler plugin. (Doug Kearns) PHP compiler plugin. (Doug Kearns)
pinfo ftplugin file. (Nikolai Weibull) pinfo ftplugin file. (Nikolai Weibull)
plaintex ftplugin file. (Benji Fisher) plaintex syntax and ftplugin files. (Nikolai Weibull, Benji Fisher)
procmail ftplugin file. (Nikolai Weibull) procmail ftplugin file. (Nikolai Weibull)
prolog ftplugin file. (Nikolai Weibull) prolog ftplugin file. (Nikolai Weibull)
protocols syntax and ftplugin file. (Nikolai Weibull) protocols syntax and ftplugin file. (Nikolai Weibull)
Expand Down Expand Up @@ -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 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) 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. Added the t_SI and t_EI escape sequences for starting and ending Insert mode.
GUI font selector for Motif. (Marcin Dalecki) GUI font selector for Motif. (Marcin Dalecki)


Expand Down Expand Up @@ -2223,5 +2230,13 @@ change.


Win32: added menu to GUI tab pages line. (Yegappan Lakshmanan) 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: vim:tw=78:ts=8:ft=help:norl:
8 changes: 7 additions & 1 deletion runtime/filetype.vim
@@ -1,7 +1,7 @@
" Vim support file to detect file types " Vim support file to detect file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " 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 " Listen very carefully, I will say this only once
if exists("did_load_filetypes") if exists("did_load_filetypes")
Expand Down Expand Up @@ -475,6 +475,9 @@ au BufNewFile,BufRead *.si setf cuplsim
" Debian Control " Debian Control
au BufNewFile,BufRead */debian/control setf debcontrol au BufNewFile,BufRead */debian/control setf debcontrol


" Debian Sources.list
au BufNewFile,BufRead /etc/apt/sources.list setf debsources

" ROCKLinux package description " ROCKLinux package description
au BufNewFile,BufRead *.desc setf desc au BufNewFile,BufRead *.desc setf desc


Expand Down Expand Up @@ -2005,6 +2008,9 @@ au BufNewFile,BufRead [cC]hange[lL]og*
" Crontab " Crontab
au BufNewFile,BufRead crontab,crontab.* call s:StarSetf('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 " Dracula
au BufNewFile,BufRead drac.* call s:StarSetf('dracula') au BufNewFile,BufRead drac.* call s:StarSetf('dracula')


Expand Down
8 changes: 4 additions & 4 deletions runtime/ftplugin/man.vim
@@ -1,7 +1,7 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: man " Language: man
" Maintainer: Nam SungHyun <namsh@kldp.org> " 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 " To make the ":Man" command available before editing a manual page, source
" this script from your startup vimrc file. " this script from your startup vimrc file.
Expand All @@ -23,7 +23,7 @@ if &filetype == "man"
if !hasmapto('<Plug>ManBS') if !hasmapto('<Plug>ManBS')
nmap <buffer> <LocalLeader>h <Plug>ManBS nmap <buffer> <LocalLeader>h <Plug>ManBS
endif 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-]> :call <SID>PreGetPage(v:count)<CR>
nnoremap <buffer> <c-t> :call <SID>PopPage()<CR> nnoremap <buffer> <c-t> :call <SID>PopPage()<CR>
Expand Down Expand Up @@ -137,9 +137,9 @@ func <SID>GetPage(...)
endif endif
silent exec "edit $HOME/".page.".".sect."~" silent exec "edit $HOME/".page.".".sect."~"
" Avoid warning for editing the dummy file twice " Avoid warning for editing the dummy file twice
set buftype=nofile noswapfile setl buftype=nofile noswapfile


set ma setl ma
silent exec "norm 1GdG" silent exec "norm 1GdG"
let $MANWIDTH = winwidth(0) let $MANWIDTH = winwidth(0)
silent exec "r!/usr/bin/man ".s:GetCmdArg(sect, page)." | col -b" silent exec "r!/usr/bin/man ".s:GetCmdArg(sect, page)." | col -b"
Expand Down
7 changes: 4 additions & 3 deletions runtime/lang/menu_ja_jp.euc-jp.vim
Expand Up @@ -2,7 +2,7 @@
" "
" Menu Translations: Japanese (EUC-JP) " Menu Translations: Japanese (EUC-JP)
" Translated By: MURAOKA Taro <koron@tka.att.ne.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. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
Expand Down Expand Up @@ -30,6 +30,7 @@ let g:menutrans_help_dialog = "
menutrans &File ファイル(&F) menutrans &File ファイル(&F)
menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e
menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp
menutrans Open\ Tab\.\.\.<Tab>:tabnew タブページで開く<Tab>:tabnew
menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew
menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close
menutrans &Save<Tab>:w 保存(&S)<Tab>:w menutrans &Save<Tab>:w 保存(&S)<Tab>:w
Expand All @@ -51,7 +52,7 @@ menutrans &Paste<Tab>"+gP Ž
menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p
menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p
menutrans &Delete<Tab>x 消す(&D)<Tab>x 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\.\.\. 検索(&F)\.\.\.
menutrans &Find<Tab>/ 検索(&F)<Tab>/ menutrans &Find<Tab>/ 検索(&F)<Tab>/
menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\. menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\.
Expand Down Expand Up @@ -150,7 +151,7 @@ menutrans &Spell\ Check\ On
menutrans Spell\ Check\ &Off スペルチェック有効(&O) menutrans Spell\ Check\ &Off スペルチェック有効(&O)
menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s
menutrans To\ &Previous\ error<Tab>[s 前のエラー(&P)<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 &Repeat\ correction<Tab>:spellrepall 修正を繰り返す(&R)<Tab>:spellrepall
menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する
menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する
Expand Down
7 changes: 4 additions & 3 deletions runtime/lang/menu_ja_jp.utf-8.vim
Expand Up @@ -2,7 +2,7 @@
" "
" Menu Translations: Japanese (UTF-8) " Menu Translations: Japanese (UTF-8)
" Translated By: MURAOKA Taro <koron@tka.att.ne.jp> " 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. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
Expand Down Expand Up @@ -30,6 +30,7 @@ let g:menutrans_help_dialog = "ヘルプを検索したいコマンドもしく
menutrans &File ファイル(&F) menutrans &File ファイル(&F)
menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e
menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp
menutrans Open\ Tab\.\.\.<Tab>:tabnew タブページで開く<Tab>:tabnew
menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew
menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close
menutrans &Save<Tab>:w 保存(&S)<Tab>:w menutrans &Save<Tab>:w 保存(&S)<Tab>:w
Expand All @@ -51,7 +52,7 @@ menutrans &Paste<Tab>"+gP 貼り付け(&P)<Tab>"+gP
menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p
menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p
menutrans &Delete<Tab>x 消す(&D)<Tab>x 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\.\.\. 検索(&F)\.\.\.
menutrans &Find<Tab>/ 検索(&F)<Tab>/ menutrans &Find<Tab>/ 検索(&F)<Tab>/
menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\. menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\.
Expand Down Expand Up @@ -150,7 +151,7 @@ menutrans &Spell\ Check\ On スペルチェック有効(&S)
menutrans Spell\ Check\ &Off スペルチェック有効(&O) menutrans Spell\ Check\ &Off スペルチェック有効(&O)
menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s
menutrans To\ &Previous\ error<Tab>[s 前のエラー(&P)<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 &Repeat\ correction<Tab>:spellrepall 修正を繰り返す(&R)<Tab>:spellrepall
menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する
menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する
Expand Down
7 changes: 4 additions & 3 deletions runtime/lang/menu_japanese_japan.932.vim
Expand Up @@ -2,7 +2,7 @@
" "
" Menu Translations: Japanese (CP932) " Menu Translations: Japanese (CP932)
" Translated By: MURAOKA Taro <koron@tka.att.ne.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. " Quit when menu translations have already been done.
if exists("did_menu_trans") if exists("did_menu_trans")
Expand Down Expand Up @@ -30,6 +30,7 @@ let g:menutrans_help_dialog = "
menutrans &File ファイル(&F) menutrans &File ファイル(&F)
menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e menutrans &Open\.\.\.<Tab>:e 開く(&O)\.\.\.<Tab>:e
menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割して開く(&L)\.\.\.<Tab>:sp
menutrans Open\ Tab\.\.\.<Tab>:tabnew タブページで開く<Tab>:tabnew
menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew menutrans &New<Tab>:enew 新規作成(&N)<Tab>:enew
menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close menutrans &Close<Tab>:close 閉じる(&C)<Tab>:close
menutrans &Save<Tab>:w 保存(&S)<Tab>:w menutrans &Save<Tab>:w 保存(&S)<Tab>:w
Expand All @@ -51,7 +52,7 @@ menutrans &Paste<Tab>"+gP
menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p menutrans Put\ &Before<Tab>[p 前に貼る(&B)<Tab>[p
menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p menutrans Put\ &After<Tab>]p 後に貼る(&A)<Tab>]p
menutrans &Delete<Tab>x 消す(&D)<Tab>x 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\.\.\. 検索(&F)\.\.\.
menutrans &Find<Tab>/ 検索(&F)<Tab>/ menutrans &Find<Tab>/ 検索(&F)<Tab>/
menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\. menutrans Find\ and\ Rep&lace\.\.\. 置換(&L)\.\.\.
Expand Down Expand Up @@ -150,7 +151,7 @@ menutrans &Spell\ Check\ On
menutrans Spell\ Check\ &Off スペルチェック有効(&O) menutrans Spell\ Check\ &Off スペルチェック有効(&O)
menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s menutrans To\ &Next\ error<Tab>]s 次のエラー(&N)<Tab>]s
menutrans To\ &Previous\ error<Tab>[s 前のエラー(&P)<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 &Repeat\ correction<Tab>:spellrepall 修正を繰り返す(&R)<Tab>:spellrepall
menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する menutrans Set\ language\ to\ "en" 言語を\ "en"\ に設定する
menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する menutrans Set\ language\ to\ "en_au" 言語を\ "en_au"\ に設定する
Expand Down

0 comments on commit 318148d

Please sign in to comment.