mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
updated for version 7.0b01
This commit is contained in:
BIN
nsis/icons/vim_16c.ico
Normal file
BIN
nsis/icons/vim_16c.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 766 B |
@ -314,6 +314,10 @@ When N is omitted, open one window for each file.
|
||||
Open N windows side by side.
|
||||
When N is omitted, open one window for each file.
|
||||
.TP
|
||||
\-p[N]
|
||||
Open N tab pages.
|
||||
When N is omitted, open one tab page for each file.
|
||||
.TP
|
||||
\-R
|
||||
Read-only mode.
|
||||
The 'readonly' option will be set.
|
||||
|
@ -24,9 +24,9 @@ binaire ou de l'entr
|
||||
Il peut <20>galement convertir un fichier de codes hexad<61>cimaux en un fichier
|
||||
binaire.
|
||||
Comme
|
||||
.BR uuencode(1)
|
||||
.BR uuencode (1)
|
||||
et
|
||||
.BR uudecode(1)
|
||||
.BR uudecode (1)
|
||||
il permet la transmission de donn<6E>es binaires dans une repr<70>sentation ASCII
|
||||
compatible avec le courrier <20>lectronique, mais a l'avantage de d<>coder la
|
||||
sortie standard.
|
||||
@ -126,19 +126,19 @@ suppl
|
||||
.TP
|
||||
.I \-seek d<EFBFBD>calage
|
||||
Utilis<EFBFBD> apr<70>s l'option
|
||||
.I \-r
|
||||
\: inverse la conversion en ajoutant
|
||||
.IR \-r :
|
||||
inverse la conversion en ajoutant
|
||||
.RI < d<EFBFBD>calage >
|
||||
aux positions dans le fichier donn<6E>es dans le code hexad<61>cimal.
|
||||
.TP
|
||||
.I \-s [\+][\-]d<>calage
|
||||
.I \-s [+][\-]d<>calage
|
||||
D<EFBFBD>bute au
|
||||
.RI < d<EFBFBD>calage >
|
||||
absolu ou relatif dans fichier_entree.
|
||||
\fI\+ \fRindique que le d<>calage est relatif <20> la position courante dans
|
||||
\fI+ fRindique que le d<>calage est relatif <20> la position courante dans
|
||||
l'entr<74>e standard (sans effet si la lecture n'a pas lieu sur l'entr<74>e
|
||||
standard). \fI\- \fRindique un d<>calage en caract<63>res depuis la fin de
|
||||
l'entr<74>e (utilis<69> avec \fI \+ \fR, d<>signe la position avant la position
|
||||
l'entr<74>e (utilis<69> avec \fI+\fR, d<>signe la position avant la position
|
||||
actuelle de l'entr<74>e standard).
|
||||
Sans l'option \-s, xxd d<>marre <20> la position courante du fichier.
|
||||
.TP
|
||||
@ -177,12 +177,12 @@ Remarquez la diff
|
||||
.br
|
||||
et
|
||||
.br
|
||||
\fI% xxd \-i \< fichier\fR
|
||||
\fI% xxd \-i < fichier\fR
|
||||
.PP
|
||||
.I xxd \-s \+seek
|
||||
peut diff<66>rer de
|
||||
.I xxd \-s seek
|
||||
\, car lseek(2) est utilis<69> pour <20> revenir en arri<72>re <20>. Le '+' fait une
|
||||
.IR "xxd \-s seek" ,
|
||||
car lseek(2) est utilis<69> pour <20> revenir en arri<72>re <20>. Le '+' fait une
|
||||
diff<EFBFBD>rence quand la source des donn<6E>es est l'entr<74>e standard et si la position
|
||||
dans le fichier de l'entr<74>e standard n'est pas au d<>but du fichier lorsque xxd
|
||||
est d<>marr<72> et qu'il re<72>oit ses donn<6E>es.
|
||||
@ -201,7 +201,7 @@ ajout
|
||||
\fI% sh \-c 'dd of=donnees_binaires bs=1k count=1; xxd \-s +128 >
|
||||
donnees_hexa' < fichier\fR
|
||||
.PP
|
||||
Convertir de fichier depuis la position 0x100 (= 1024 - 768) du fichier.
|
||||
Convertir de fichier depuis la position 0x100 (= 1024 \- 768) du fichier.
|
||||
.br
|
||||
\fI% sh \-c 'dd of=donnees_binaires bs=1k count=1; xxd \-s +\-768 >
|
||||
donnees_hexa' < fichier\fR
|
||||
|
@ -598,8 +598,16 @@ display_errors()
|
||||
}
|
||||
#endif
|
||||
|
||||
(void)gui_mch_dialog(VIM_ERROR, (char_u *)_("Error"),
|
||||
p, (char_u *)_("&Ok"), 1, NULL);
|
||||
(void)gui_mch_dialog(
|
||||
#ifdef FEAT_GUI
|
||||
gui.starting ? VIM_INFO :
|
||||
#endif
|
||||
VIM_ERROR,
|
||||
#ifdef FEAT_GUI
|
||||
gui.starting ? (char_u *)_("Message") :
|
||||
#endif
|
||||
(char_u *)_("Error"),
|
||||
p, (char_u *)_("&Ok"), 1, NULL);
|
||||
#if 0
|
||||
#ifdef WIN3264
|
||||
MessageBox(NULL, p, "Vim", MB_TASKMODAL|MB_SETFOREGROUND);
|
||||
|
@ -128,6 +128,10 @@
|
||||
|
||||
/* shared library access */
|
||||
#if defined(HAVE_DLFCN_H) && defined(USE_DLOPEN)
|
||||
# ifdef __MVS__
|
||||
/* needed to define RTLD_LAZY (Anthony Giorgio) */
|
||||
# define __SUSV3
|
||||
# endif
|
||||
# include <dlfcn.h>
|
||||
#else
|
||||
# if defined(HAVE_DL_H) && defined(HAVE_SHL_LOAD)
|
||||
|
@ -4708,7 +4708,7 @@ msgstr "%s
|
||||
|
||||
#, c-format
|
||||
msgid "Missing FOL/LOW/UPP line in %s"
|
||||
msgstr "%d <20><><EFBFBD>ܤ<EFBFBD> FOL/LOW/UPP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
msgstr "%s <20><><EFBFBD>ܤ<EFBFBD> FOL/LOW/UPP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"
|
||||
|
||||
msgid "COMPOUNDSYLMAX used without SYLLABLE"
|
||||
msgstr "SYLLABLE <20><><EFBFBD><EFBFBD><EFBFBD>ꤵ<EFBFBD><EAA4B5><EFBFBD>ʤ<EFBFBD> COMPOUNDSYLMAX"
|
||||
@ -4772,7 +4772,7 @@ msgstr "
|
||||
|
||||
#, c-format
|
||||
msgid "Reading word file %s ..."
|
||||
msgstr "ɸ<><C9B8><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD>..."
|
||||
msgstr "ɸ<><C9B8><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD> %s ..."
|
||||
|
||||
#, c-format
|
||||
msgid "Duplicate /encoding= line ignored in %s line %d: %s"
|
||||
@ -4780,7 +4780,7 @@ msgstr "%s
|
||||
|
||||
#, c-format
|
||||
msgid "/encoding= line after word ignored in %s line %d: %s"
|
||||
msgstr "<22><>s <20><> %d <20><><EFBFBD>ܤ<EFBFBD> ñ<><C3B1><EFBFBD>θ<EFBFBD><CEB8><EFBFBD> /encoding= <20>Ԥ<EFBFBD>̵<EFBFBD>뤷<EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>: %s"
|
||||
msgstr "%s <EFBFBD><EFBFBD>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"
|
||||
@ -4891,7 +4891,7 @@ msgstr "E778: .sug
|
||||
|
||||
#, c-format
|
||||
msgid "E779: Old .sug file, needs to be updated: %s"
|
||||
msgstr "E779: <20>Ť<EFBFBD> .sug <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤΤ<CAA4>, <20><><EFBFBD>åץǡ<D7A5><C7A1>Ȥ<EFBFBD><C8A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
msgstr "E779: <20>Ť<EFBFBD> .sug <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤΤ<CAA4>, <20><><EFBFBD>åץǡ<D7A5><C7A1>Ȥ<EFBFBD><C8A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "E780: .sug file is for newer version of Vim: %s"
|
||||
|
Reference in New Issue
Block a user