Tom Anderson

Results 53 comments of Tom Anderson

Related issues: https://github.com/warpdotdev/Warp/issues/4851 (identify shortcut conflicts)

@shinngohamatani Is this the same issue? In mysql with string keys, sometimes they are "On Sale" and other times "On sale" (notice capital Sale and lowercase sale), and when we...

The white space logic is in https://github.com/kantord/LibreLingo/blob/main/apps/answer-corrector/src/index.ts:8 ```typescript const ignoreWhitespace = (form: string): string => form.replace(/^\s+|\s+$/g, "").replace(/\s+/g, " ") ``` In principle, this will take all spaces (and tabs) at...