From 5ab2f4b93c5b0c6d245ea8cab0cbbd724d0beab3 Mon Sep 17 00:00:00 2001 From: rbtnn Date: Sat, 30 Jan 2016 23:37:18 +0900 Subject: [PATCH] Translated doc/usr_41 --- catchup-7.4.1194.md | 2 +- doc/usr_41.jax | 34 +++++++++++++++++----------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/catchup-7.4.1194.md b/catchup-7.4.1194.md index 37c26ee69..4d737eda3 100644 --- a/catchup-7.4.1194.md +++ b/catchup-7.4.1194.md @@ -42,7 +42,6 @@ doc/term.jax doc/usr_02.jax # 行数は多いけど、まとまった書き換えで、楽そう doc/usr_03.jax - doc/usr_41.jax doc/various.jax こっから先は100行超えるので、嫌。 @@ -64,6 +63,7 @@ doc/quickfix.jax doc/usr_29.jax doc/usr_43.jax + doc/usr_41.jax doc/vi_diff.jax ### その他/深い事情があって断念したもの diff --git a/doc/usr_41.jax b/doc/usr_41.jax index 6ce10f90f..25814c0ea 100644 --- a/doc/usr_41.jax +++ b/doc/usr_41.jax @@ -860,24 +860,24 @@ Vimサーバー: *server-functions* winsaveview() カレントウィンドウのビューを取得 winrestview() カレントウィンドウのビューを復元 -マッピング: *mapping-functions* +マッピング: *mapping-functions* hasmapto() マップの存在をチェック mapcheck() マッチするマップの存在をチェック maparg() マップのrhs(展開結果)を得る wildmenumode() wildmodeが有効かどうかをチェック -Testing: *test-functions* - assert_equal() assert that two expressions values are equal - assert_false() assert that an expression is false - assert_true() assert that an expression is true +テスト用: *test-functions* + assert_equal() 2つの式が等しいかどうかテストする + assert_false() 式がfalseかどうかテストする + assert_true() 式がtrueかどうかテストする -Inter-process communication: - connect() open a channel - disconnect() close a channel - sendexpr() send a JSON message over a channel - sendraw() send a raw message over a channel - jsonencode() encode an expression to a JSON string - jsondecode() decode a JSON string to Vim types +プロセス間通信: + connect() チャンネルを開く + disconnect() チャンネルを閉じる + sendexpr() チャンネルにJSONメッセージを送る + sendraw() チャンネルにrawメッセージを送る + jsonencode() 式をJSONの文字列に変換する + jsondecode() JSONの文字列を式に変換する その他: *various-functions* mode() 現在の編集モードを得る @@ -905,12 +905,12 @@ Inter-process communication: taglist() マッチするタグのリストを取得 tagfiles() タグファイルのリストを取得 - luaeval() Luaの式を評価する + luaeval() |Lua|の式を評価する mzeval() |MzScheme| の式を評価する - perleval() evaluate Perl expression (|+perl|) - py3eval() Pythonの式を評価する (|+python3|) - pyeval() Pythonの式を評価する (|+python|) - wordcount() get byte/word/char count of buffer + perleval() |Perl|の式を評価する (|+perl|) + py3eval() |Python|の式を評価する (|+python3|) + pyeval() |Python|の式を評価する (|+python|) + wordcount() バッファ内のバイト数/単語数/文字数などを得る ============================================================================== *41.7* 関数を定義する