Skip to content

Commit

Permalink
translate a part of document about blowfish vim-jp#164
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Jan 30, 2016
1 parent f8de019 commit e79f7f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion catchup-7.4.1194.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
doc/autocmd.jax
doc/change.jax
doc/develop.jax
doc/editing.jax
doc/fold.jax
doc/hangulin.jax
doc/if_lua.jax # 100行超えたけど、内容的に大したことない
Expand Down Expand Up @@ -56,6 +55,7 @@
### 完訳!

doc/cmdline.jax
doc/editing.jax
doc/filetype.jax
doc/help.jax
doc/index.jax
Expand Down
11 changes: 6 additions & 5 deletions doc/editing.jax
Original file line number Diff line number Diff line change
Expand Up @@ -1439,14 +1439,15 @@ Note: メモリ内のテキストは暗号化されない。ユーザーがテ
アンドゥファイルが保存されるとき、同じキーとメソッドがアンドゥファイル内のテキ
ストに適用される。|persistent-undo|

To test for blowfish support you can use these conditions: >
"blowfish" をサポートしているかどうかテストするには下記の条件を使う: >
has('crypt-blowfish')
has('crypt-blowfish2')
This works since Vim 7.4.1099 while blowfish support was added earlier.
Thus the condition failing doesn't mean blowfish is not supported. You can
test for blowfish with: >
"blowfish" のサポート自体は Vim 7.4.1099 以前からあったものの、上記の条件が利用
できるのは Vim 7.4.1099 からである。
よって上記の条件が偽になったとしても "blowfish" をサポートしていることがある。
"blowfish" を使えるかどうかは次の条件でテストできる: >
v:version >= 703
And for blowfish2 with: >
また "blowfish2" については次の条件でテストできる: >
v:version > 704 || (v:version == 704 && has('patch401'))
<
*E817* *E818* *E819* *E820*
Expand Down

0 comments on commit e79f7f7

Please sign in to comment.