File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,10 @@ Yep! That's all :)
118118- ` JavaTestDebugCurrentMethod ` - Debug the test method on the cursor
119119- ` JavaTestViewLastReport ` - Open the last test report in a popup window
120120
121+ ### Profiles
122+
123+ - ` JavaProfile ` - Opens the profiles UI
124+
121125</details >
122126
123127## :computer : APIs
@@ -189,6 +193,12 @@ require('java').test.debug_current_method()
189193require (' java' ).test .view_last_report ()
190194```
191195
196+ ### Profiles
197+
198+ ``` lua
199+ require (' java' ).profile .ui ()
200+ ```
201+
192202</details >
193203
194204## :clamp : How to Use JDK X.X Version?
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ local cmd_map = {
1515
1616 JavaTestViewLastReport = { java .test .view_last_report },
1717
18- JavaRunnerRunMain = { java .runner .built_in .run_app , { nargs = ' ?' } },
18+ JavaRunnerRunMain = { java .runner .built_in .run_app , { nargs = ' ?' } },
1919 JavaRunnerStopMain = { java .runner .built_in .stop_app },
20- JavaRunnerToggleLogs = {java .runner .built_in .toggle_logs },
20+ JavaRunnerToggleLogs = { java .runner .built_in .toggle_logs },
2121
22- JavaPofile = { java .profile .ui }
22+ JavaProfile = { java .profile .ui },
2323}
2424
2525for cmd , details in pairs (cmd_map ) do
You can’t perform that action at this time.
0 commit comments