Sha256: 8a62a8a44f7195840d28d95e9ac16e73d63048c9f04f4fc6972c29fca98c9ec0
Contents?: true
Size: 570 Bytes
Versions: 3
Compression:
Stored size: 570 Bytes
Contents
class DAP::RunInTerminalRequestArguments < DAP::Base # What kind of terminal to launch. # Values: 'integrated', 'external', etc. property :kind, required: false # 'integrated' | 'external' # Optional title of the terminal. property :title, required: false # Working directory of the command. property :cwd # List of arguments. The first argument is the command to run. property :args # Environment key-value pairs that are added to or removed from the default environment. property :env, required: false # { [key: string]: string | null; } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/run_in_terminal_request_arguments.rb |
ruby-dap-0.1.1 | lib/dap/run_in_terminal_request_arguments.rb |
ruby-dap-0.1.0 | lib/dap/run_in_terminal_request_arguments.rb |