Sangeeth Sudheer

Results 16 comments of Sangeeth Sudheer

@damianopetrungaro Understand how it _can_ be a `feat` for i18n changes but if it's merely copy change that involves say a tone change and if I'm using tools like semantic...

I don't think this solves this issue but can we have like a toggle to preview the image and right-click that and have Chrome's copy image functionality? Is that possible...

@kamranayub On the same lines as I was wondering which I posted above but right-clicking doesn't seem to popup any context menus inside VS Code.

Can confirm I have this issue and I have `bracketed-paste-magic` present as well. Like @ericfreese and others mentioned, the fix is to add `ZSH_AUTOSUGGEST_CLEAR_WIDGETS+=(bracketed-paste accept-line)` to your `~/.zshrc` file.

@ericfreese the workaround in https://github.com/zsh-users/zsh-autosuggestions/issues/351#issuecomment-572068804 introduces incorrect history navigation using up/down keys seemingly because it's not possible to append to `ZSH_AUTOSUGGEST_CLEAR_WIDGETS`? https://github.com/zsh-users/zsh-autosuggestions/blob/a411ef3e0992d4839f0732ebeb9823024afaaaa8/src/config.zsh#L23-L40 I see that `accept-line` is already present here....

@mhegazy Is there any work currently in-progress to update the docs/tutorial for ASP.NET Core to v2? If not, may I give it a try?

I narrowed this down to the env variable that's needed to avoid breaking the font—`LC_CTYPE`. You can simulate the "no icons" condition by running: ```sh env -i open cool-retro-term.app ```...

> The main problem here is: > > ```js > import { openDB, unwrap } from 'idb'; > > const openPromise = openDB(...args); > const idbOpenRequest = unwrap(openPromise); > ```...

> Seems sad to add a whole new API for a temporary Safari bug. I agree with that 😞

@ph-fritsche I ran into the same issue but I couldn't get my scenario to work just with `advanceTimers` option. See repro link: https://stackblitz.com/edit/vitest-dev-vitest-2xdjiw?file=test%2Fcountdown.test.tsx ```ts import Countdown from "src/components/Countdown"; import {...