Results 108 comments of Naser Aleisa

@bummzack I think it changed yeah. The following works for me: Change this: ```javascript // preview.js import { addDecorator } from '@storybook/svelte'; import Wrapper from './Wrapper.svelte; addDecorator(storyFn => { const...

I've found success using the [`.mts`](https://www.typescriptlang.org/docs/handbook/esm-node.html#new-file-extensions) extension and adding the following shebang: ```ts #!/usr/bin/env -S npx tsx import 'zx/globals'; await $`ls -la`; console.log(chalk.green('Hello, World!')); ``` Run like so: ``` chmod...

This is my current workaround for this issue. I named the script `vnr` (say 'vscode neovim replace'). If you prefix your command with `vnr`, it'll strip out `__vscode_neovim__-file://` then run...

It seems, in my case at least, that the issue begins when _moving to_ a screen that is empty (has 0 clients). When you do that, not the "entire" focus...

In case someone's use case is not covered by @nicu-chiciuc's example, or you just want to look at more examples, you can get pretty [specific](https://sourcegraph.com/search?q=context:global+/turbo.*prune/+repo:has.file%28path:turbo.json%29+repo:has.file%28path:Dockerfile%7Cdocker-compose.*%29+repo:has.file%28path:pnpm-lock.yaml%29&patternType=standard&sm=1&groupBy=repo) with sourcegraph's search.

One suggestion would be to support a shell command that produces the necessary watched paths. Then, users can use a tool like [`fd`](https://github.com/sharkdp/fd) to implement whatever watched logic they desire....

> @jasonlyu123 > > > Finally got neovim to work for me. > > Do you mind sharing your neovim config? I have almost everything working but I can't get...

another alternative: piping the output to `ls` ```sh # hyperlinked_fd hfd() { fd "$@" --type=file -X ls -l --hyperlink=auto } ```

I can reproduce this still on `3.2.2`. @Ousret To help you reproduce this, can you share what method you're using to detect the request? (I mentioned a couple of example...

One workaround would be to manually bind the keys. In zsh, it would look something like this: ```zsh eval "$(atuin init zsh --disable-up-arrow --disable-ctrl-r)" bindkey '^r' atuin_search_widget_wrapped # Up arrow...