File tree 5 files changed +21
-13
lines changed
5 files changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ frontend/**
16
16
test_code /
17
17
shared /
18
18
.docs /
19
- ! frontend /dist /**
19
+ ! frontend /dist /**
20
+ ! .docs /**
Original file line number Diff line number Diff line change 1
- # call-graph README
1
+ # Debug graph
2
2
3
3
A Visual Studio Code extension that shows all the function calls (code paths) that lead to a breakpoint.
4
4
@@ -23,13 +23,19 @@ Although, i have only tested:
23
23
* Java (limited)
24
24
-->
25
25
26
- ## Extension Settings
26
+ ## How to get started
27
27
28
- Include if your extension adds any VS Code settings through the ` contributes.configuration ` extension point.
28
+ 1 . Set a breakpoint in your code
29
+ 2 . Click on the ` Call Graph ` icon in the top bar of your editor
30
+ 3 . See what variables are and where you are coming from
29
31
30
- For example:
32
+ ## How to install
31
33
32
- This extension contributes the following settings:
34
+ 1 . Open Visual Studio Code
35
+ 2 . Go to the Extensions view by clicking on the square icon in the sidebar
36
+ 3 . Search for ` Call Graph `
37
+ 4 . Click on the Install button
33
38
34
- * ` myExtension.enable ` : Enable/disable this extension.
35
- * ` myExtension.thing ` : Set to ` blah ` to do something.
39
+ ## Known Issues
40
+
41
+ * Sometimes the theme colors are not matched to vscode theme, this resolves when opening the call graph again
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " call -graph" ,
3
- "displayName" : " call -graph" ,
2
+ "name" : " debug -graph" ,
3
+ "displayName" : " debug -graph" ,
4
4
"description" : " A Visual Studio Code extension that shows all the function calls (code paths) that lead to a breakpoint." ,
5
- "version" : " 0.0.1" ,
5
+ "version" : " 0.0.2" ,
6
+ "icon" : " assets/ui-hint.png" ,
6
7
"licenses" : [
7
8
{
8
9
"url" : " https://github.com/K0IN/stacktrace-history/LICENSE" ,
50
51
}
51
52
},
52
53
"scripts" : {
53
- "vscode:prepublish" : " npm run compile-all && npm run vscode:package" ,
54
+ "vscode:prepublish" : " npm run vscode:package" ,
55
+ "vscode:package" : " npm run compile-frontend && webpack --mode production --devtool hidden-source-map" ,
54
56
"vscode:bundle" : " npm run vscode:package && vsce package" ,
55
57
"vscode:install" : " npm run vscode:bundle && code --install-extension call-graph-0.0.1.vsix" ,
56
58
"vscode:uninstall" : " code --uninstall k0in.call-graph" ,
57
- "vscode:package" : " npm run compile-frontend && webpack --mode production --devtool hidden-source-map" ,
58
59
"vscode:publish" : " npm run vscode:bundle && vsce publish" ,
59
60
"lint-frontend" : " cd frontend && npm run lint" ,
60
61
"compile-frontend" : " cd frontend && npm run build" ,
You can’t perform that action at this time.
0 commit comments