Amjad Ben Hedhili

Results 54 issues of Amjad Ben Hedhili

It would be neat to be able to trigger a color picker by clicking a color box. This probably means LSP should ship with or download platform-dependent color picker executables,...

investigation

### Summary Remove dead code from the JS output. ### Description ```nim import std/dom document.getElementById("foo").value = "bar" ``` expected: ```js document.getElementById("foo").value = "bar"; ``` got: 720 lines of JS tried...

JS

![image](https://user-images.githubusercontent.com/33235928/183729605-bb1c33cb-7105-4974-9823-ce5bdde02ad5.png)

Hi, I apologize, this isn't an issue report, I just couldn't find where to ask this and I just need this: How do I create a rounded rect shadow (`box-shadow:...

After #125 fix of #121, async doesn't work on Windows. Isn't there a way to make it work ?

runnig go to definition on the module ```nim import std/stats ``` gives: ``` :: --> nimlsp textDocument/definition(139): {'position': {'character': 14, 'line': 2}, 'workDoneToken': 'wd139', 'textDocument': {'uri': 'file:///D:/dddd/AoC2021/day07/day07.nim'}} ::

As defined in https://www.sublimetext.com/docs/3/themes.html#elements, each class supports only a set of attributes and propeties, and not all of them. PackageDev provides all properties and attributes regardless of whether the class...

enhancement

It would be more aesthetically pleasing to display package control messages in markdown.

I'm trying to run python debugger, but I can't run on any command ![ezgif com-video-to-gif](https://user-images.githubusercontent.com/33235928/65559400-d10e8e00-df3a-11e9-9fae-52917a668fd1.gif) this is my project file ```json { "folders": [ { "path": "D:\\Amjad\\Python_project" } ], "settings":...

Notice how the label contains two signatures: ```json { "signatures": [ { "documentation": "int([x]) -> integer\nint(x, base=10) -> integer\n\nConvert a number or string to an integer, or return 0 if...