Alexander Gavrilovets

Results 3 issues of Alexander Gavrilovets

I want function's arguments autocomplete like: `"Hello world".replaceAll(` 100ms later `"Hello world".replaceAll(searchValue, replaceValue` **On Android (Termux) it works great, but on Windows it does not work** 😢. **Why?** ➡️ _Additional...

I am trying to run following code: ```javascript let w = /\/(?\w+)(:(?\w+))?/i //scriptArgs = require("process").argv // for Node.js let r = [] scriptArgs.slice(1).map(a => r.push(w.exec(a).groups)) for (let z of r)...

enhancement

### The following program `sample.go` triggers an unexpected result ```go package main import ( "fmt" "math" "slices" "flag" "strings" ) func main() { nums := map[string]int{"I": 1, "V": 5, "X":...