Results 92 issues of Bedis Nbiba

```ts Deno.serve(() => new Response("ok")); throw "azez" // no exception is thrown ``` `deno 1.25.2+ffffa2f (canary, x86_64-unknown-linux-gnu)`

bug
flash

fix https://github.com/PMunch/nimlsp/issues/143

Using white space as trigger character make the experience of using nim a bit annoying becuase tab will always trigger completion you can compare to python: [nim](https://user-images.githubusercontent.com/22427111/192890871-c62fcaa4-7365-4767-9aa1-ff8a6129a257.webm) [python](https://user-images.githubusercontent.com/22427111/192890879-fa95b960-4191-4c86-ab14-d15dfc292f3c.webm) I propose...

In my testing selfinsert doesn't seem to work, it inserts one white-space character instead of an actual tab, changing it to insert makes it work perfectly.

Its what fish shell does, and its very handy. the use case goes like this: - use up arrow key - edit that line - forget that you're in history...

enhancement

### Summary If I already have multiple cursor and search for something, only one cursor moves I expect each cursor to move to the nearest hit [Screencast from 2022-12-03 13-38-18.webm](https://user-images.githubusercontent.com/22427111/205441856-7f6a33a3-4d17-45aa-bf4f-7d1dec6e6910.webm)...

C-bug
A-helix-term

when running update, it was not obvious for me that this is waiting for me to hit enter ![image](https://github.com/denoland/fresh/assets/22427111/14ef0c76-548f-4328-bfea-2c2dfed24863)

mod.ts ```ts export function server(port = 4221) { const listener = Deno.listen({ port }); (async () => { for await (const conn of listener) { conn.readable.pipeTo(conn.writable); } })(); return listener;...

I think its a good idea, especially if it had github action

fix https://github.com/denoland/deno_lint/issues/1198