You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `RUBY_DEBUG_LOCAL_FS_MAP` (`local_fs_map`): Specify local fs map
477
-
- `RUBY_DEBUG_SKIP_BP` (`skip_bp`): Skip breakpoints if no clients are attached (default: false)
478
-
- `RUBY_DEBUG_COOKIE` (`cookie`): Cookie for negotiation
479
-
- `RUBY_DEBUG_OPEN_FRONTEND` (`open_frontend`): frontend used by open command (vscode, chrome, default: rdbg).
480
-
- `RUBY_DEBUG_CHROME_PATH` (`chrome_path`): Platform dependent path of Chrome (For more information, See [here](https://github.com/ruby/debug/pull/334/files#diff-5fc3d0a901379a95bc111b86cf0090b03f857edfd0b99a0c1537e26735698453R55-R64))
481
-
482
-
- OBSOLETE
483
-
- `RUBY_DEBUG_PARENT_ON_FORK` (`parent_on_fork`): Keep debugging parent process on fork (default: false)
484
-
485
-
## Initialization scripts
486
-
487
-
If you want to run certain commands or set configurations for every debugging session automatically, you can put them into the `~/.rdbgrc` file.
488
-
489
-
If you want to run additional initial scripts, you can also,
490
-
491
-
- Use `RUBY_DEBUG_INIT_SCRIPT` environment variable can specify the initial script file.
492
-
- Specify the initial script with `rdbg -x initial_script`.
493
-
494
-
Initial scripts are useful to write your favorite configurations. For example,
495
-
496
-
```
497
-
config set use_short_path true # Use $(Gem)/gem_content to replace the absolute path of gem files
498
-
```
499
-
500
-
Finally, you can also write the initial script in Ruby with the file name `~/.rdbgrc.rb`.
433
+
See the [configuration guide](/docs/configuration.md) for more information.
-`RUBY_DEBUG_LOCAL_FS_MAP` (`local_fs_map`): Specify local fs map
47
+
-`RUBY_DEBUG_SKIP_BP` (`skip_bp`): Skip breakpoints if no clients are attached (default: false)
48
+
-`RUBY_DEBUG_COOKIE` (`cookie`): Cookie for negotiation
49
+
-`RUBY_DEBUG_OPEN_FRONTEND` (`open_frontend`): frontend used by open command (vscode, chrome, default: rdbg).
50
+
-`RUBY_DEBUG_CHROME_PATH` (`chrome_path`): Platform dependent path of Chrome (For more information, See [here](https://github.com/ruby/debug/pull/334/files#diff-5fc3d0a901379a95bc111b86cf0090b03f857edfd0b99a0c1537e26735698453R55-R64))
51
+
52
+
- OBSOLETE
53
+
-`RUBY_DEBUG_PARENT_ON_FORK` (`parent_on_fork`): Keep debugging parent process on fork (default: false)
54
+
55
+
## Initialization scripts
56
+
57
+
If you want to run certain commands or set configurations for every debugging session automatically, you can put them into the `~/.rdbgrc` file.
58
+
59
+
If you want to run additional initial scripts, you can also,
60
+
61
+
- Use `RUBY_DEBUG_INIT_SCRIPT` environment variable can specify the initial script file.
62
+
- Specify the initial script with `rdbg -x initial_script`.
63
+
64
+
Initial scripts are useful to write your favorite configurations. For example,
65
+
66
+
```
67
+
config set use_short_path true # Use $(Gem)/gem_content to replace the absolute path of gem files
68
+
```
69
+
70
+
Finally, you can also write the initial script in Ruby with the file name `~/.rdbgrc.rb`.
0 commit comments