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
#!/bin/bash | |
set -euo pipefail | |
UNLOAD_EXTENSIONS=( | |
com.microsoft.OneDriveStandaloneUpdater.plist | |
com.microsoft.OneDriveStandaloneUpdaterDaemon.plist | |
com.microsoft.OneDriveUpdaterDaemon.plist | |
com.microsoft.SyncReporter | |
) |
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
Show hidden characters
[ | |
{ | |
"keys": ["super+alt+enter"], | |
"command": "lsp_symbol_definition", | |
"context": [ | |
{ | |
"key": "selector", | |
"operator": "equal", | |
"operand": ["source.reason"] | |
} |
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
{ | |
"lastUpload": "2022-09-09T15:30:33.951Z", | |
"extensionVersion": "v3.4.3" | |
} |
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
[ | |
{ | |
"keys": [ | |
"enter" | |
], | |
"command": "commit_completion", | |
"context": [ | |
{ | |
"key": "auto_complete_visible" | |
}, |
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
const https = require("https"); | |
// For using in browser, remove `require` and `fetch` mockup | |
function fetch(url) { | |
return new Promise((resolve, reject) => { | |
https | |
.get(url, (res) => { | |
res.setEncoding("utf8"); | |
let response = ""; | |
res.on("data", (data) => { |