60件ヒット
[1-60件を表示]
(0.066秒)
ライブラリ
-
mutex
_ m (12) - rake (12)
- readline (24)
-
shell
/ builtin-command (12)
クラス
-
Rake
:: InvocationChain (12) -
Shell
:: AppendFile (6) -
Shell
:: AppendIO (6)
キーワード
-
append
_ features (12) -
completion
_ append _ character (12) -
completion
_ append _ character= (12) - new (12)
検索結果
先頭5件
-
Rake
:: InvocationChain . append(task _ name , chain) -> Rake :: InvocationChain (24208.0) -
与えられたタスク名を第二引数の Rake::InvocationChain に追加します。
...e::InvocationChain のインスタンスを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
chain = Rake::InvocationChain::EMPTY
b = Rake::InvocationChain.append("task_a", chain)
b.to_s # => "TOP => task_a"
end
//}... -
Readline
. completion _ append _ character=(string) (12226.0) -
ユーザの入力の補完が完了した場合に、最後に付加する文字 string を指定します。
...字を指定すれば、
連続して入力する際に便利です。
require 'readline'
Readline.readline("> ", true)
Readline.completion_append_character = " "
> /var/li
ここで補完(TABキーを押す)を行う。
> /var/lib
最後に" "が追加されているため、すぐ......ることはできないため、
例えば、"string"を指定した場合は最初の文字である"s"だけを使用します。
require 'readline'
Readline.completion_append_character = "string"
p Readline.completion_append_character # => "s"
@see Readline.completion_append_character... -
Mutex
_ m . append _ features(klass) -> Class | nil (12208.0) -
ユーザが直接、使うことはありません。
...ユーザが直接、使うことはありません。
@see Module#append_features... -
Readline
. completion _ append _ character -> String (12208.0) -
ユーザの入力の補完が完了した場合に、最後に付加する文字を取得します。
...ユーザの入力の補完が完了した場合に、最後に付加する文字を取得します。
@raise NotImplementedError サポートしていない環境で発生します。
@see Readline.completion_append_character=... -
Shell
:: AppendFile . new(sh , filename) (6001.0) -
@todo
@todo -
Shell
:: AppendIO . new(sh , filename) (6001.0) -
@todo
@todo