Compare commits

..

No commits in common. "725f9512837d3c24991f6f37c28cafd26ab14697" and "4060b9cf1c02c760d809495d0b55db070fa6321b" have entirely different histories.

4 changed files with 14 additions and 50 deletions

View file

@ -34,7 +34,6 @@
unwip = reset --soft HEAD~1
s = switch
b = switch -c
lt = log --oneline -10
[color]
ui = auto

View file

@ -17,20 +17,20 @@
{
"context": "Pane",
"bindings": {
"ctrl-h": "workspace::ActivatePaneLeft",
"ctrl-j": "workspace::ActivatePaneRight",
"ctrl-k": "workspace::ActivatePaneUp",
"ctrl-l": "workspace::ActivatePaneDown",
"ctrl-h": ["workspace::ActivatePaneInDirection", "Left"],
"ctrl-j": ["workspace::ActivatePaneInDirection", "Right"],
"ctrl-k": ["workspace::ActivatePaneInDirection", "Up"],
"ctrl-l": ["workspace::ActivatePaneInDirection", "Down"],
"cmd-shift-g": "pane::RevealInProjectPanel"
}
},
{
"context": "Editor",
"bindings": {
"ctrl-h": "workspace::ActivatePaneLeft",
"ctrl-j": "workspace::ActivatePaneDown",
"ctrl-k": "workspace::ActivatePaneUp",
"ctrl-l": "workspace::ActivatePaneRight",
"ctrl-h": ["workspace::ActivatePaneInDirection", "Left"],
"ctrl-j": ["workspace::ActivatePaneInDirection", "Down"],
"ctrl-k": ["workspace::ActivatePaneInDirection", "Up"],
"ctrl-l": ["workspace::ActivatePaneInDirection", "Right"],
"cmd-enter": "repl::Run"
}
},
@ -50,10 +50,10 @@
";": "command_palette::Toggle",
":": "vim::RepeatFind",
"space o": "file_finder::Toggle",
"ctrl-h": "workspace::ActivatePaneLeft",
"ctrl-j": "workspace::ActivatePaneDown",
"ctrl-k": "workspace::ActivatePaneUp",
"ctrl-l": "workspace::ActivatePaneRight"
"ctrl-h": ["workspace::ActivatePaneInDirection", "Left"],
"ctrl-j": ["workspace::ActivatePaneInDirection", "Down"],
"ctrl-k": ["workspace::ActivatePaneInDirection", "Up"],
"ctrl-l": ["workspace::ActivatePaneInDirection", "Right"]
}
},
{

View file

@ -16,7 +16,7 @@
"assistant": {
"default_model": {
"provider": "anthropic",
"model": "claude-3-7-sonnet-latest"
"model": "claude-3-5-sonnet-latest"
},
"version": "2"
},
@ -59,7 +59,7 @@
"wrap_guides": [80],
"use_smartcase_search": true,
"terminal": {
"dock": "bottom",
"dock": "right",
"toolbar": {
"breadcrumbs": false
}

View file

@ -1,35 +0,0 @@
{
"itesth": {
"prefix": "itesth",
"description": "Integration test header",
"body": [
"/* eslint-disable @typescript-eslint/no-unused-expressions */",
"import 'reflect-metadata'",
"",
"import { describe } from 'node:test'",
"",
"import { createDatabase, tearDown, withFixturesIt } from '@lib/database/test'",
"import { createTestContext } from 'baseup/services/internal/engine/context/test'",
"",
"import { expect, use } from 'chai'",
"import chaiAsPromised from 'chai-as-promised'",
"use(chaiAsPromised)",
"",
"$0"
]
},
"itests": {
"prefix": "itests",
"description": "Integration test suite",
"body": ["describe('${1:Function name}', () => {", " $0", "})"]
},
"itest": {
"prefix": "itest",
"description": "Integration test case",
"body": [
"withFixturesIt([${1:Fixtures...}], '${2:Should...}', async () => {",
" $0",
"})"
]
}
}