twiddler
twiddler
It'd be great to exclude files that shouldn't be backed up (e.g. temporary files) through a text field or an ignore file through `--exclude-file /.resticignore`.
I like to keep many backups of the last few days, but only a few of the last years. `restic` supports retaining a different number of backups for the last...
(This is a question, not a feature request. Sorry if this is the wrong place to ask.) I use [ladle](https://ladle.dev/) for stories. I would like to mock my tRPC calls...
Hey there and thanks for the great extension! :wave: I am using this extension with a few simple custom regular expressions in `settings.json`, e.g. for checking variable names when declaring...
When pasting with p (or P), the yanked text is inserted after (or before) 1. the cursor *if* the clipboard does not end with `\n`, or 2. the line of...
Starting at v0.26.2, TypeScript cannot infer some types in projects with `compilerOptions.composite: true`: > The inferred type of 'foo' cannot be named without a reference to './node_modules/kysely/dist/esm/dynamic/dynamic-reference-builder'. This is likely...
PSA: Read the [0.28.2](https://github.com/kysely-org/kysely/releases/tag/0.28.2) release before commenting here. Your issue might not be relevant to this issue, at all. --- Since 0.28.0: ```ts import { Kysely } from "kysely"; async...
When comparing a nullable column with `NOW()` like ```ts const row = await db .withTables() .selectFrom('Foo') .select((eb) => [eb('scheduledFor', '
When filtering an enum column, e.g. ```ts interface Database { Pet: { species: "dog" | "cat" | "hamster"; }; } ``` with `"regexp"` or `"like"` ```ts db.selectFrom("Pet") .where("species", "regexp", "ste")...
I expected `pick` to agree with [TypeScript's `Pick`](https://www.typescriptlang.org/docs/handbook/utility-types.html#picktype-keys), but it does not: ```ts import { pick } from 'lodash'; import { test } from 'vitest'; // ✅ test('Pick', function ()...