-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* cool TUI stuff * refactoring stuff * AI refactor * begin programming extra features * sigh. idk if this is better * debugger * i have fixed the state * current working version * global header * delete key working * random improvements * remove useless menu items * add help for ssh-key-content * function
- Loading branch information
1 parent
ff5bde6
commit 821448a
Showing
27 changed files
with
1,032 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ ssh-sync | |
ssh-sync.exe | ||
ssh-sync-installer.exe | ||
win-build/Output/ | ||
__debug_bin* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Package", | ||
"name": "Attach to Sunbeam", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "main.go", | ||
"args": ["upload"] | ||
"debugAdapter": "dlv-dap", | ||
"request": "attach", | ||
"mode": "remote", | ||
"remotePath": "${workspaceFolder}", | ||
"port": 2345, | ||
"host": "127.0.0.1", | ||
"preLaunchTask": "Run headless dlv" // Here ! | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run headless dlv", | ||
"type": "process", | ||
"command": "dlv", | ||
"args": [ | ||
"debug", | ||
"--headless", | ||
"--listen=:2345", | ||
"--api-version=2", | ||
"${workspaceFolder}/main.go", | ||
"--", | ||
"interactive" | ||
], | ||
"isBackground": true, | ||
"problemMatcher": { | ||
"owner": "go", | ||
"pattern": { | ||
"regexp": "^API server listening at: .+:\\d+$", | ||
"line": 1, | ||
"message": 1 | ||
}, | ||
"background": { | ||
"activeOnStart": true, | ||
"beginsPattern": "^API server listening at:", | ||
"endsPattern": "^API server listening at:" | ||
} | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.