mirror of
https://github.com/vim/vim
synced 2025-07-16 09:12:00 +00:00
Update runtime files
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
*channel.txt* For Vim version 8.2. Last change: 2022 Jun 04
|
||||
*channel.txt* For Vim version 8.2. Last change: 2022 Jun 23
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
@ -464,8 +464,10 @@ a close callback to the channel.
|
||||
|
||||
To read all normal output from a RAW channel that is available: >
|
||||
let output = ch_readraw(channel)
|
||||
To read the error output: >
|
||||
To read all error output from a RAW channel that is available:: >
|
||||
let output = ch_readraw(channel, {"part": "err"})
|
||||
Note that if the channel is in NL mode, ch_readraw() will only return one line
|
||||
for each call.
|
||||
|
||||
ch_read() and ch_readraw() use the channel timeout. When there is nothing to
|
||||
read within that time an empty string is returned. To specify a different
|
||||
|
@ -1,4 +1,4 @@
|
||||
*options.txt* For Vim version 8.2. Last change: 2022 Jun 21
|
||||
*options.txt* For Vim version 8.2. Last change: 2022 Jun 23
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
@ -4955,8 +4955,8 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
executing macros, registers and other commands that have not been
|
||||
typed. Also, updating the window title is postponed. To force an
|
||||
update use |:redraw|.
|
||||
This may ocasionally cause display errors. It is only meant to be set
|
||||
termporarily when performaing an operation where redrawing may cause
|
||||
This may occasionally cause display errors. It is only meant to be set
|
||||
temporarily when performing an operation where redrawing may cause
|
||||
flickering or cause a slow down.
|
||||
|
||||
*'linebreak'* *'lbr'* *'nolinebreak'* *'nolbr'*
|
||||
|
@ -40,7 +40,6 @@ browser use: https://github.com/vim/vim/issues/1234
|
||||
|
||||
Prepare for the Vim 9.0 release:
|
||||
- Update version9.txt
|
||||
- Adjust intro message to say "help version9".
|
||||
|
||||
Further Vim9 improvements, possibly after launch:
|
||||
- Use Vim9 for more runtime files.
|
||||
@ -203,6 +202,8 @@ Terminal emulator window:
|
||||
|
||||
Patches considered for including:
|
||||
- use ngettext() in a few more places #10606
|
||||
- move f_hasmapto() to map.c #10611
|
||||
- allow for nesting of timeout, sketch in #10595
|
||||
- Add "-n" option to xxd. #10599
|
||||
- Support %e and %k in 'errorformat'. #9624
|
||||
- Add support for "underdouble", "underdot" and "underdash". #9553
|
||||
|
@ -1,4 +1,4 @@
|
||||
*usr_40.txt* For Vim version 8.2. Last change: 2022 Jun 20
|
||||
*usr_40.txt* For Vim version 8.2. Last change: 2022 Jun 23
|
||||
|
||||
VIM USER MANUAL - by Bram Moolenaar
|
||||
|
||||
@ -464,7 +464,7 @@ The optional [++nested] flag allows for nesting of autocommands (see below),
|
||||
and finally, {command} is the command to be executed.
|
||||
|
||||
When adding an autocommand the already existing ones remain. To avoid adding
|
||||
the autocommand several time you should use this form: >
|
||||
the autocommand several times you should use this form: >
|
||||
|
||||
:augroup updateDate
|
||||
: autocmd!
|
||||
|
@ -248,15 +248,18 @@ Fuzzy match support for |:vimgrep|.
|
||||
Haiku support. |Haiku|
|
||||
|
||||
Support for "lsp" channel mode to simplify LSP server RPC communication
|
||||
|language-server-protocol|.
|
||||
|language-server-protocol|. Support for using a Unix domain socket with a
|
||||
|channel|. IPv6 support in channels |channel-address|.
|
||||
|
||||
Support for sourcing lines from the current buffer. |:source-range|
|
||||
|
||||
Support for opening a terminal in a popup window. |popup-terminal|
|
||||
|
||||
Support for stopping profiling a Vim script: `:profile stop` and dumping the
|
||||
report to a file: `:profile dump` . |:profile|
|
||||
|
||||
Argument completion support for the |:scriptnames|, |:profile|, |:profdel|,
|
||||
|:breakadd| and |:breakdel| commands.
|
||||
Argument completion support for the |:breakadd|, |:breakdel|, |:diffget|,
|
||||
|:diffput|, |:profile|, |:profdel| and |:scriptnames| commands.
|
||||
|
||||
Support for setting the 'foldtext', 'completefunc', 'omnifunc',
|
||||
'operatorfunc', 'thesaurusfunc', 'quickfixtextfunc', 'tagfunc',
|
||||
@ -287,17 +290,9 @@ suggestions.
|
||||
Support for executing Ex commands in a map without changing the current mode
|
||||
|<Cmd>| and |<ScriptCmd>|.
|
||||
|
||||
A large number of tests have been added to verify the Vim functionality. Most
|
||||
of the old style tests have been converted to new style tests using the new
|
||||
style assert_* functions.
|
||||
|
||||
Add optional error code to |:cquit|.
|
||||
|
||||
Support for using a Unix domain socket with a |channel|.
|
||||
|
||||
IPv6 support in channels |channel-address|.
|
||||
|
||||
Call Vim functions from Lua (vim.call('func', 'arg')).
|
||||
Support for calling Vim functions from Lua (vim.call() and vim.fn()).
|
||||
|
||||
Recognize numbers as unsigned when "unsigned" is set in 'nrformats'.
|
||||
|
||||
@ -305,7 +300,8 @@ Allow setting underline color in terminal.
|
||||
|
||||
Expand script ID using expand('<SID>'). |expand()|
|
||||
|
||||
Jump to the last accessed tab page using |g<Tab>|.
|
||||
Jump to the last accessed tab page using |g<Tab>| and support using the
|
||||
last accessed tab page in |:tabnext| et al.
|
||||
|
||||
Locale aware sorting using |:sort| and |sort()|.
|
||||
|
||||
@ -343,15 +339,22 @@ adjust sign highlighting for 'cursorline'.
|
||||
Add the |hl-CurSearch| default highlight group for the current search match.
|
||||
|
||||
Add the 'P' command in visual mode to paste text in visual mode without
|
||||
yanking the deleted text to the unnamed register.
|
||||
|
||||
Add support for parsing the end line number (%e) and end column number
|
||||
(%k) using 'errorformat'.
|
||||
yanking the deleted text to the unnamed register. |put-Visual-mode|
|
||||
|
||||
Add support for logging on Vim startup (|--log|).
|
||||
|
||||
Add "/" in 'formatoptions' to stop inserting // when using "o" on a line with
|
||||
inline comment.
|
||||
inline comment. |fo-/|
|
||||
|
||||
Add support for customizing the quickfix buffer contents using
|
||||
'quickfixtextfunc'. Support for the "note" error type (%t) in |errorformat|.
|
||||
Add support for parsing the end line number (%e) and end column number (%k)
|
||||
using 'errorformat'.
|
||||
|
||||
Support truncating the tag stack using |settagstack()|.
|
||||
|
||||
Support using any Vim type for user_data with the completion functions
|
||||
(|complete-items|).
|
||||
|
||||
Display every option in a separate line when "!" is used with |:set|.
|
||||
|
||||
@ -367,6 +370,74 @@ using "skiprtp" in 'sessionoptions'.
|
||||
|
||||
Stop insert mode completion without changing text (|i_CTRL-X_CTRL-Z|).
|
||||
|
||||
Support for getting the number of lines (linecount) in a buffer using
|
||||
|getbufinfo()|.
|
||||
|
||||
Support |filter()| and |map()| for blob and string types.
|
||||
|
||||
Support for using a multi-byte character for the tag kind. |tags-file-format|
|
||||
|
||||
Add support for checking whether a function name is valid using |exists()|.
|
||||
|
||||
Update xdiff to version 2.33. Update libvterm to revision 789.
|
||||
|
||||
Added support for the |Haiku| OS.
|
||||
|
||||
Support 'trim' for Python/Lua/Perl/Tcl/Ruby/MzScheme interface heredoc.
|
||||
|
||||
Add the |t_AU| and |t_8u| termap codes for underline and undercurl. Add the
|
||||
t_fd and t_fe termcap codes for detecting focus events.
|
||||
|
||||
Support for indenting C pragmas like normal code. (|cino-P|)
|
||||
|
||||
Add support for defining the syntax fold level (|:syn-foldlevel|)
|
||||
|
||||
Add support for using \<*xxx> in a string to prepend a modifier to a
|
||||
character. (|expr-quote|).
|
||||
|
||||
Add support trimming characters at the beginning or end of a string using
|
||||
|trim()|.
|
||||
|
||||
Make ":verbose pwd" show the scope of the directory. |:pwd-verbose|
|
||||
|
||||
Add the "0o" notation for specifying octal numbers |scriptversion-4|
|
||||
|
||||
Support for changing to the previous tab-local and window-local directories
|
||||
using the "tcd -" and "lcd -" commands. (|:tcd-| and |:lcd-|)
|
||||
|
||||
Add support for skipping an expression using |search()|.
|
||||
|
||||
Add the "cmdline" option to |getcompletion()| to return the command line
|
||||
arguments.
|
||||
|
||||
Add support for spell checking CamelCased words by adding "camel" to
|
||||
'spelloptions'.
|
||||
|
||||
Add support for importing Vim scripts using |:import| from a Vimscript.
|
||||
|
||||
Add support for sorting the directory contents returned by the |readdir()|
|
||||
and |readdirex()| functions by case.
|
||||
|
||||
Add support for executing (|:@|) a register containing line continuation.
|
||||
|
||||
Convert a Lua function and a closure to a Vim funcref so that it can be
|
||||
accessed in a Vimscript. (|lua-funcref|) Make Lua arrays one based.
|
||||
Add table.insert() and table.remove() functions.
|
||||
|
||||
Support mouse left-right scrolling in a terminal window.
|
||||
|
||||
Updated colorschemes from https://github.com/vim/colorschemes is included.
|
||||
|
||||
TermDebug enhancements:
|
||||
Support for showing the disassembled code in a separate window. Support for
|
||||
the GDB until command. Use a separate group for the signs.
|
||||
|
||||
A large number of tests have been added to verify the Vim functionality. Most
|
||||
of the old style tests have been converted to new style tests using the new
|
||||
style assert_* functions.
|
||||
|
||||
Many Coverity static analysis warnings are fixed.
|
||||
|
||||
TODO: more
|
||||
|
||||
==============================================================================
|
||||
@ -383,9 +454,9 @@ The following features are now enabled in all the builds:
|
||||
|
||||
The following features have been removed. They are either obsolete or didn't
|
||||
work properly:
|
||||
- Athena GUI support (use Motif instead)
|
||||
- Athena and neXTaw GUI support (use Motif instead)
|
||||
- EBCDIC support
|
||||
- Atari MiNT
|
||||
- Atari MiNT and BeOS
|
||||
- Mac Carbon GUI (use MacVim instead)
|
||||
|
||||
The rgb.txt file is no longer included, use colors/lists/default.vim instead.
|
||||
@ -393,6 +464,8 @@ The rgb.txt file is no longer included, use colors/lists/default.vim instead.
|
||||
Several source files were split, mainly to make it easier to inspect code
|
||||
coverage information.
|
||||
|
||||
Support for building Vim with Mingw64 clang compiler on MS-Windows.
|
||||
|
||||
==============================================================================
|
||||
PATCHES *patches-9* *bug-fixes-9*
|
||||
*patches-after-8.2*
|
||||
|
@ -30,6 +30,12 @@ for x in [
|
||||
eval 0
|
||||
endfor
|
||||
|
||||
let t = [
|
||||
\ {
|
||||
\ 'k': 'val',
|
||||
\ },
|
||||
\ ]
|
||||
|
||||
" END_INDENT
|
||||
|
||||
" START_INDENT
|
||||
|
@ -30,6 +30,12 @@ for x in [
|
||||
eval 0
|
||||
endfor
|
||||
|
||||
let t = [
|
||||
\ {
|
||||
\ 'k': 'val',
|
||||
\ },
|
||||
\ ]
|
||||
|
||||
" END_INDENT
|
||||
|
||||
" START_INDENT
|
||||
|
@ -1,7 +1,7 @@
|
||||
" Vim indent file
|
||||
" Language: Vim script
|
||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||
" Last Change: 2022 Mar 01
|
||||
" Last Change: 2022 Jun 24
|
||||
|
||||
" Only load this indent file when no other was loaded.
|
||||
if exists("b:did_indent")
|
||||
@ -36,6 +36,14 @@ endfunc
|
||||
let s:lineContPat = '^\s*\(\\\|"\\ \)'
|
||||
|
||||
function GetVimIndentIntern()
|
||||
" If the current line has line continuation and the previous one too, use
|
||||
" the same indent. This does not skip empty lines.
|
||||
let cur_text = getline(v:lnum)
|
||||
let cur_has_linecont = cur_text =~ s:lineContPat
|
||||
if cur_has_linecont && v:lnum > 1 && getline(v:lnum - 1) =~ s:lineContPat
|
||||
return indent(v:lnum - 1)
|
||||
endif
|
||||
|
||||
" Find a non-blank line above the current line.
|
||||
let lnum = prevnonblank(v:lnum - 1)
|
||||
|
||||
@ -44,8 +52,7 @@ function GetVimIndentIntern()
|
||||
|
||||
" If the current line doesn't start with '\' or '"\ ' and below a line that
|
||||
" starts with '\' or '"\ ', use the indent of the line above it.
|
||||
let cur_text = getline(v:lnum)
|
||||
if cur_text !~ s:lineContPat
|
||||
if !cur_has_linecont
|
||||
while lnum > 0 && getline(lnum) =~ s:lineContPat
|
||||
let lnum = lnum - 1
|
||||
endwhile
|
||||
|
@ -16,12 +16,6 @@ LANG = af am bg br ca cs cy da de el en eo es fr fo ga gd gl he hr id it
|
||||
diff: $*LANG/diff
|
||||
:print Done.
|
||||
|
||||
# Use "aap publish" to upload the .spl files.
|
||||
SPL_files = eu.utf-8.spl
|
||||
|
||||
UPDIR = rsync://bram@ftp1.nluug.nl//var/ftp/pub/vim/runtime/spell
|
||||
:attr {publish = $UPDIR/%file%} $SPL_files
|
||||
|
||||
@for l in string.split(_no.LANG):
|
||||
:child $l/main.aap
|
||||
|
||||
|
@ -2342,8 +2342,8 @@ msgstr "tik :q<Enter> om program verlaat "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "tik :help<Enter> of <F1> vir aanlyn hulp "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "tik :help version8<Enter> vir weergawe-inligting"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "tik :help version9<Enter> vir weergawe-inligting"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Voer tans uit in Vi-versoenbare modus"
|
||||
|
@ -3710,8 +3710,8 @@ msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "feu :help<Entrar> o <F1> per a obtenir ajuda "
|
||||
|
||||
# amplada 53 car<61>cters
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "feu :help version8<Entrar> per a info de la versi<73> "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "feu :help version9<Entrar> per a info de la versi<73> "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Funcionant en mode compatible amb Vi"
|
||||
|
@ -4360,8 +4360,8 @@ msgstr "zadejte :q<Enter> pro ukon
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "zadejte :help<Enter> <20>i <F1> pro n<>pov<6F>du"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "zadejte :help version8<Enter> pro informace o verzi 8"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "zadejte :help version9<Enter> pro informace o verzi 8"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "B<><42><EFBFBD>m v re<72>imu kompatibility s Vi"
|
||||
|
@ -4360,8 +4360,8 @@ msgstr "zadejte :q<Enter> pro ukon
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "zadejte :help<Enter> <20>i <F1> pro n<>pov<6F>du"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "zadejte :help version8<Enter> pro informace o verzi 8"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "zadejte :help version9<Enter> pro informace o verzi 9"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "B<><42><EFBFBD>m v re<72>imu kompatibility s Vi"
|
||||
|
@ -6372,8 +6372,8 @@ msgstr "skriv :q<Enter> for at afslutte "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "skriv :help<Enter> eller <F1> for onlinehjælp "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "skriv :help version8<Enter> for versionsinfo"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "skriv :help version9<Enter> for versionsinfo"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Kører i Vi-kompatibel tilstand"
|
||||
|
@ -3650,8 +3650,8 @@ msgstr "Tippe :q<Enter> zum Beenden "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "Tippe :help<Enter> oder <F1> f<>r Online Hilfe "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "Tippe :help version8<Enter> f<>r Versions-Informationen"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "Tippe :help version9<Enter> f<>r Versions-Informationen"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi kompatible Einstellung"
|
||||
|
@ -6432,8 +6432,8 @@ msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "tajpu :help<Enenklavo> aŭ <F1> por aliri la helpon "
|
||||
|
||||
# DP: atentu al la spacetoj: ĉiuj ĉenoj devas havi la saman longon
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "tajpu :help version8<Enenklavo> por informo de versio"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "tajpu :help version9<Enenklavo> por informo de versio"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Ruliĝas en reĝimo kongrua kun Vi"
|
||||
|
@ -3694,8 +3694,8 @@ msgstr "escriba :q<Intro> para salir "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "escriba :help<Intro> o <F1> para obtener ayuda "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "escriba :help version8<Intro> para obtener información de la versión"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "escriba :help version9<Intro> para obtener información de la versión"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Ejecutando en modo compatible con Vi"
|
||||
|
@ -3657,8 +3657,8 @@ msgstr "kirjoita :q<Enter> lopettaaksesi "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "kirjoita :help<Enter> tai <F1> ohjetta varten "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "kirjoita :help version8<Enter> versiotietoja varten "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "kirjoita :help version9<Enter> versiotietoja varten "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Suoritetaan Vi-yhteensopivuustilaa"
|
||||
|
@ -6692,8 +6692,8 @@ msgstr "tapez :q<Entr
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "tapez :help<Entr<74>e> ou <F1> pour acc<63>der <20> l'aide en ligne "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "tapez :help version8<Entr<74>e> pour lire les notes de mise <20> jour"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "tapez :help version9<Entr<74>e> pour lire les notes de mise <20> jour"
|
||||
|
||||
# DB - Pour les trois messages qui suivent :
|
||||
# :set cp
|
||||
|
@ -3736,8 +3736,8 @@ msgstr "cl
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "cl<63>scr<63>obh :help<Enter> n<> <F1> le haghaidh cabhrach ar l<>ne"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "cl<63>scr<63>obh :help version8<Enter> le haghaidh eolais faoin leagan"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "cl<63>scr<63>obh :help version9<Enter> le haghaidh eolais faoin leagan"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "I m<>d comhoiri<72>nachta Vi"
|
||||
|
@ -3371,8 +3371,8 @@ msgstr "batti :q<Invio> per uscire "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "batti :help<Invio> o <F1> per aiuto online "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "batti :help version8<Invio> per informazioni su versione"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "batti :help version9<Invio> per informazioni su versione"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Eseguo in modalità compatibile Vi"
|
||||
|
@ -3584,8 +3584,8 @@ msgstr "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD>饤<EFBFBD><E9A5A4><EFBFBD>إ<EFBFBD><D8A5>פ<EFBFBD> :help<Enter> <20><> <F1> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "<22>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version8<Enter> "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "<22>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version9<Enter> "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi<56>ߴ<EFBFBD><DFB4>⡼<EFBFBD>ɤ<EFBFBD>ư<EFBFBD><C6B0><EFBFBD><EFBFBD>"
|
||||
|
@ -3584,8 +3584,8 @@ msgstr "終了するには :q<Enter> "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "オンラインヘルプは :help<Enter> か <F1> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "バージョン情報は :help version8<Enter> "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "バージョン情報は :help version9<Enter> "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi互換モードで動作中"
|
||||
|
@ -3584,8 +3584,8 @@ msgstr "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "<22>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD>C<EFBFBD><43><EFBFBD>w<EFBFBD><77><EFBFBD>v<EFBFBD><76> :help<Enter> <20><> <F1> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "<22>o<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version8<Enter> "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "<22>o<EFBFBD>[<5B>W<EFBFBD><57><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version9<Enter> "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi<56>݊<EFBFBD><DD8A><EFBFBD><EFBFBD>[<5B>h<EFBFBD>œ<EFBFBD><C593>쒆"
|
||||
|
@ -6288,8 +6288,8 @@ msgstr "끝내려면 :q<엔터> 입력"
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "온라인 도움말을 보려면 :help<엔터> 또는 <F1> 입력"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "판 정보를 보려면 :help version8<엔터> 입력"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "판 정보를 보려면 :help version9<엔터> 입력"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi 호환 상태로 실행중입니다"
|
||||
|
@ -6288,8 +6288,8 @@ msgstr "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "<22>¶<EFBFBD><C2B6><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help<<3C><><EFBFBD><EFBFBD>> <20>Ǵ<EFBFBD> <F1> <20>Է<EFBFBD>"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version8<<3C><><EFBFBD><EFBFBD>> <20>Է<EFBFBD>"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version9<<3C><><EFBFBD><EFBFBD>> <20>Է<EFBFBD>"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi ȣȯ <20><><EFBFBD>·<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>"
|
||||
|
@ -5749,8 +5749,8 @@ msgstr "skriv :q<Enter> for
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "skriv :help<Enter> eller <F1> for on-line hjelp"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "skriv :help version8<Enter> for versjonsinfo "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "skriv :help version9<Enter> for versjonsinfo "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Kj<4B>rer i Vi-kompatibel modus"
|
||||
|
@ -5402,8 +5402,8 @@ msgstr "typ :q<Enter> om te stoppen"
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "typ :help<Enter> of <F1> voor on-line hulp"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "typ :help version8<Enter> voor versieinformatie"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "typ :help version9<Enter> voor versieinformatie"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "wordt uitgevoerd in Vi compatible-modus"
|
||||
|
@ -5749,8 +5749,8 @@ msgstr "skriv :q<Enter> for
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "skriv :help<Enter> eller <F1> for on-line hjelp"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "skriv :help version8<Enter> for versjonsinfo "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "skriv :help version9<Enter> for versjonsinfo "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Kj<4B>rer i Vi-kompatibel modus"
|
||||
|
@ -6168,8 +6168,8 @@ msgstr "wprowadź :q<Enter> zakończenie programu "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "wprowadź :help<Enter> lub <F1> pomoc na bieżąco "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "wprowadź :help version8<Enter> dla informacji o wersji"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "wprowadź :help version9<Enter> dla informacji o wersji"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Działam w trybie zgodności z Vi"
|
||||
|
@ -6168,8 +6168,8 @@ msgstr "wprowad
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "wprowad<61> :help<Enter> lub <F1> pomoc na bie<69><65>co "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "wprowad<61> :help version8<Enter> dla informacji o wersji"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "wprowad<61> :help version9<Enter> dla informacji o wersji"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Dzia<69>am w trybie zgodno<6E>ci z Vi"
|
||||
|
@ -6168,8 +6168,8 @@ msgstr "wprowad
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "wprowad<61> :help<Enter> lub <F1> pomoc na bie<69><65>co "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "wprowad<61> :help version8<Enter> dla informacji o wersji"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "wprowad<61> :help version9<Enter> dla informacji o wersji"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Dzia<69>am w trybie zgodno<6E>ci z Vi"
|
||||
|
@ -6339,8 +6339,8 @@ msgstr "digite :q<Enter> para sair "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "digite :help<Enter> ou <F1> para ajuda on-line "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "digite :help version8<Enter> para info da versão"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "digite :help version9<Enter> para info da versão"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Executando no modo compatível com Vi"
|
||||
|
@ -6550,8 +6550,8 @@ msgstr "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help<Enter> <20><><EFBFBD> <F1> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version8<Enter> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :help version9<Enter> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> Vi-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
@ -6550,8 +6550,8 @@ msgstr "наберите :q<Enter> чтобы выйти из пр
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "наберите :help<Enter> или <F1> для получения справки "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "наберите :help version8<Enter> для информации о версии "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "наберите :help version9<Enter> для информации о версии "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Работа в Vi-совместимом режиме"
|
||||
|
@ -5377,8 +5377,8 @@ msgstr "zadajte :q<Enter> pre ukon
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "zadajte :help<Enter> alebo <F1> pre pomocn<63>ka "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "zadajte :help version8<Enter> pre inform<72>cie o verzii"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "zadajte :help version9<Enter> pre inform<72>cie o verzii"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Pracujem v re<72>ime kompatibility s Vi"
|
||||
|
@ -5377,8 +5377,8 @@ msgstr "zadajte :q<Enter> pre ukon
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "zadajte :help<Enter> alebo <F1> pre pomocn<63>ka "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "zadajte :help version8<Enter> pre inform<72>cie o verzii"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "zadajte :help version9<Enter> pre inform<72>cie o verzii"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Pracujem v re<72>ime kompatibility s Vi"
|
||||
|
@ -3398,8 +3398,8 @@ msgstr "откуцајте :q<Ентер> за излаз
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "откуцајте :help<Ентер> или <F1> за директну помоћ"
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "откуцајте :help version8<Ентер> за инфо о верзији"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "откуцајте :help version9<Ентер> за инфо о верзији"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Рад у Vi компатибилном режиму"
|
||||
|
@ -5731,8 +5731,8 @@ msgstr "skriv :q<Enter> f
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "skriv :help<Enter> eller <F1> f<>r online-hj<68>lp "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "skriv :help version8<Enter> f<>r versioninformation "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "skriv :help version9<Enter> f<>r versioninformation "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "K<>r i Vi-kompatibelt l<>ge"
|
||||
|
@ -3578,8 +3578,8 @@ msgstr "çıkmak için :q<Enter> "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "yardım belgeleri için :help<Enter> veya <F1> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "sürüm bilgisi için :help version8<Enter> "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "sürüm bilgisi için :help version9<Enter> "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi uyumlu kipte çalışıyor"
|
||||
|
@ -3671,8 +3671,8 @@ msgstr ":q<Enter>
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr ":help<Enter> <20><><EFBFBD> <F1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr ":help version8<Enter> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr ":help version9<Enter> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> Vi"
|
||||
|
@ -3671,8 +3671,8 @@ msgstr ":q<Enter> вихід з Vim "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr ":help<Enter> або <F1> перегляд допомоги "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr ":help version8<Enter> інформація про версію "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr ":help version9<Enter> інформація про версію "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Ви працюєте в режимі сумісному з Vi"
|
||||
|
@ -4807,8 +4807,8 @@ msgstr " hãy gõ :q<Enter> để thoát khỏi chương trình
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr " hãy gõ :help<Enter> hoặc <F1> để có được trợ giúp "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "hãy gõ :help version8<Enter> để biết về phiên bản này "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "hãy gõ :help version9<Enter> để biết về phiên bản này "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Làm việc trong chế độ tương thích với Vi"
|
||||
|
@ -5624,8 +5624,8 @@ msgstr "输入 :q<Enter> 退出 "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "输入 :help<Enter> 或 <F1> 查看在线帮助 "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "输入 :help version8<Enter> 查看版本信息 "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "输入 :help version9<Enter> 查看版本信息 "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "运行于 Vi 兼容模式"
|
||||
|
@ -5624,8 +5624,8 @@ msgstr "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "<22><><EFBFBD><EFBFBD> :help<Enter> <20><> <F1> <20>鿴<EFBFBD><E9BFB4><EFBFBD>߰<EFBFBD><DFB0><EFBFBD> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "<22><><EFBFBD><EFBFBD> :help version8<Enter> <20>鿴<EFBFBD>汾<EFBFBD><E6B1BE>Ϣ "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "<22><><EFBFBD><EFBFBD> :help version9<Enter> <20>鿴<EFBFBD>汾<EFBFBD><E6B1BE>Ϣ "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Vi <20><><EFBFBD><EFBFBD>ģʽ"
|
||||
|
@ -5624,8 +5624,8 @@ msgstr "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "<22><><EFBFBD><EFBFBD> :help<Enter> <20><> <F1> <20>鿴<EFBFBD><E9BFB4><EFBFBD>߰<EFBFBD><DFB0><EFBFBD> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "<22><><EFBFBD><EFBFBD> :help version8<Enter> <20>鿴<EFBFBD>汾<EFBFBD><E6B1BE>Ϣ "
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "<22><><EFBFBD><EFBFBD> :help version9<Enter> <20>鿴<EFBFBD>汾<EFBFBD><E6B1BE>Ϣ "
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Vi <20><><EFBFBD><EFBFBD>ģʽ"
|
||||
|
@ -4793,8 +4793,8 @@ msgstr "要離開請輸入 :q<Enter> "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "線上說明請輸入 :help<Enter> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "新版本資訊請輸入 :help version8<Enter>"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "新版本資訊請輸入 :help version9<Enter>"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi 相容模式"
|
||||
|
@ -4786,8 +4786,8 @@ msgstr "
|
||||
msgid "type :help<Enter> or <F1> for on-line help"
|
||||
msgstr "<22>u<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD><EFBFBD>п<EFBFBD><D0BF>J :help<Enter> "
|
||||
|
||||
msgid "type :help version8<Enter> for version info"
|
||||
msgstr "<22>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD>п<EFBFBD><D0BF>J :help version8<Enter>"
|
||||
msgid "type :help version9<Enter> for version info"
|
||||
msgstr "<22>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD>п<EFBFBD><D0BF>J :help version9<Enter>"
|
||||
|
||||
msgid "Running in Vi compatible mode"
|
||||
msgstr "Vi <20>ۮe<DBAE>Ҧ<EFBFBD>"
|
||||
|
Reference in New Issue
Block a user