Sha256: 109743c2378c9aabab41009b54650587e2a540ce776568add14253db01347386
Contents?: true
Size: 609 Bytes
Versions: 1
Compression:
Stored size: 609 Bytes
Contents
# Arguments for ‘runInTerminal’ request. class DAP::RunInTerminalRequestArguments < DAP::Base # What kind of terminal to launch. # Values: 'integrated', 'external', etc. property :kind, required: false, as: 'string' # Optional title of the terminal. property :title, required: false, as: 'string' # Working directory of the command. property :cwd, as: 'string' # List of arguments. The first argument is the command to run. property :args, as: 'string[]' # Environment key-value pairs that are added to or removed from the default environment. property :env, required: false end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/run_in_terminal_request_arguments.rb |