chore(cursor): minor tweaks to settings and keybindings

This commit is contained in:
Jim Myhrberg
2025-02-21 19:02:26 +00:00
parent 06f91b1d79
commit 144de73855
4 changed files with 130 additions and 112 deletions

View File

@@ -140,6 +140,16 @@
}, },
// //
// =========================================================================== // ===========================================================================
// Editor group layout
// ===========================================================================
//
{ // Even editor widths.
"key": "ctrl+x space",
"command": "workbench.action.evenEditorWidths",
"when": "!terminalFocus"
},
//
// ===========================================================================
// Move active editor group // Move active editor group
// =========================================================================== // ===========================================================================
// //

View File

@@ -5,6 +5,7 @@
// =========================================================================== // ===========================================================================
// //
"workbench.colorTheme": "One Dark Pro", "workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
// //
// =========================================================================== // ===========================================================================
// Editor // Editor
@@ -14,7 +15,7 @@
"editor.fontLigatures": false, "editor.fontLigatures": false,
"editor.fontWeight": "normal", "editor.fontWeight": "normal",
"editor.fontSize": 12, "editor.fontSize": 12,
"editor.renderWhitespace": "trailing", "editor.renderWhitespace": "boundary",
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.formatOnPaste": true, "editor.formatOnPaste": true,
"editor.rulers": [ "editor.rulers": [
@@ -155,11 +156,18 @@
// - https://marketplace.visualstudio.com/items?itemName=gofenix.go-lines // - https://marketplace.visualstudio.com/items?itemName=gofenix.go-lines
// //
"go-lines.lineLength": 120, "go-lines.lineLength": 120,
"go.coverOnSingleTest": true,
"go.coverShowCounts": true,
"go.formatTool": "gofumpt", "go.formatTool": "gofumpt",
"go.inlayHints.constantValues": true,
"go.lintOnSave": "workspace", "go.lintOnSave": "workspace",
"go.lintTool": "golangci-lint", "go.lintTool": "golangci-lint",
"go.testExplorer.packageDisplayMode": "nested",
"go.testExplorer.showDynamicSubtestsInEditor": true,
"go.testFlags": [
"-count=1"
],
"go.useLanguageServer": true, "go.useLanguageServer": true,
"go.inlayHints.constantValues": true,
"gopls": { "gopls": {
"ui.diagnostic.analyses": { "ui.diagnostic.analyses": {
"shadow": true "shadow": true

View File

@@ -1,78 +1,78 @@
{ {
"println": { "println": {
"prefix": "pd", "prefix": "pd",
"body": [ "body": [
"fmt.Println($0)", "fmt.Println($0)",
], ],
"description": "fmt.Println(...)" "description": "fmt.Println(...)"
}, },
"debug print": { "debug print": {
"prefix": "ppd", "prefix": "ppd",
"body": [ "body": [
"fmt.Printf(\"$1: %#v\\n\", $1)$0", "fmt.Printf(\"$1: %#v\\n\", $1)$0",
], ],
"description": "fmt.Printf(\"...: %+v\\n\", ...)" "description": "fmt.Printf(\"...: %+v\\n\", ...)"
}, },
"printf": { "printf": {
"prefix": "pf", "prefix": "pf",
"body": [ "body": [
"fmt.Printf(${1:format}, ${2:a ...any})$0", "fmt.Printf(${1:format}, ${2:a ...any})$0",
], ],
"description": "fmt.Printf(..., ...)" "description": "fmt.Printf(..., ...)"
}, },
"sprintf": { "sprintf": {
"prefix": "spf", "prefix": "spf",
"body": [ "body": [
"fmt.Sprintf(${1:format}, ${2:a ...any})$0", "fmt.Sprintf(${1:format}, ${2:a ...any})$0",
], ],
"description": "fmt.Sprintf(..., ...)" "description": "fmt.Sprintf(..., ...)"
}, },
"test func": { "test func": {
"prefix": "tf", "prefix": "tf",
"body": [ "body": [
"func Test${1:Name}(t *testing.T) {", "func Test${1:Name}(t *testing.T) {",
"\ttests := []struct {", "\ttests := []struct {",
"\t\tname string", "\t\tname string",
"\t\t$0", "\t\t$0",
"\t}{", "\t}{",
"\t\t{", "\t\t{",
"\t\t\tname: \"\",", "\t\t\tname: \"\",",
"\t\t},", "\t\t},",
"\t}", "\t}",
"\tfor _, tt := range tests {", "\tfor _, tt := range tests {",
"\t\tt.Run(tt.name, func(t *testing.T) {", "\t\tt.Run(tt.name, func(t *testing.T) {",
"\t\t\t", "\t\t\t",
"\t\t})", "\t\t})",
"\t}", "\t}",
"}" "}"
], ],
"description": "func Test...(t *testing.T) { ... }" "description": "func Test...(t *testing.T) { ... }"
}, },
"test table": { "test table": {
"prefix": "tt", "prefix": "tt",
"body": [ "body": [
"tests := []struct {", "tests := []struct {",
"\tname string", "\tname string",
"\t$0", "\t$0",
"}{", "}{",
"\t{", "\t{",
"\t\tname: \"\",", "\t\tname: \"\",",
"\t},", "\t},",
"}" "}"
], ],
"description": "tests := []struct { ... }" "description": "tests := []struct { ... }"
}, },
"benchmark func": { "benchmark func": {
"prefix": "bf", "prefix": "bf",
"body": [ "body": [
"func Benchmark${1:Name}(b *testing.B) {", "func Benchmark${1:Name}(b *testing.B) {",
"\t$0", "\t$0",
"", "",
"\tfor n := 0; n < b.N; n++ {", "\tfor n := 0; n < b.N; n++ {",
"\t\t", "\t\t",
"\t}", "\t}",
"}" "}"
], ],
"description": "func Benchmark...(b *testing.B) { ... }" "description": "func Benchmark...(b *testing.B) { ... }"
} }
} }

View File

@@ -1,36 +1,36 @@
{ {
// Place your snippets for ruby here. Each snippet is defined under a snippet name and has a prefix, body and // Place your snippets for ruby here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected. // same ids are connected.
// Example: // Example:
// "Print to console": { // "Print to console": {
// "prefix": "log", // "prefix": "log",
// "body": [ // "body": [
// "console.log('$1');", // "console.log('$1');",
// "$2" // "$2"
// ], // ],
// "description": "Log output to console" // "description": "Log output to console"
// } // }
"print": { "print": {
"prefix": "pd", "prefix": "pd",
"body": [ "body": [
"puts \"\\n>>>>>> ${1:name}: ${2:#{$1${3:.inspect}\\}}\\n\"$0" "puts \"\\n>>>>>> ${1:name}: ${2:#{$1${3:.inspect}\\}}\\n\"$0"
], ],
"description": "puts \">>>>> ...: #{....inspect}\"" "description": "puts \">>>>> ...: #{....inspect}\""
}, },
"pretty print": { "pretty print": {
"prefix": "ppd", "prefix": "ppd",
"body": [ "body": [
"puts \"\\n>>>>>> ${1:name}:\"; pp $1$0" "puts \"\\n>>>>>> ${1:name}:\"; pp $1$0"
], ],
"description": "puts \">>>>> ... \"; pp ..." "description": "puts \">>>>> ... \"; pp ..."
}, },
"byebug": { "byebug": {
"prefix": "bug", "prefix": "bug",
"body": [ "body": [
"require 'byebug'; byebug$0" "require 'byebug'; byebug$0"
], ],
"description": "require 'byebug'; byebug" "description": "require 'byebug'; byebug"
} }
} }