Yeger
Yeger
I read the code and I learned that it is not possible (all links will draw the image in [renderLinkIcon](https://github.com/excalidraw/excalidraw/blob/760fd7b3a685e61e73bf0e34f3983ae0dd341b6a/src/renderer/renderScene.ts#L1070) function: ``` linkCanvasCacheContext.drawImage(EXTERNAL_LINK_IMG, 0, 0, width, height); ``` I'm editing...
In case it is of interest to others, I changed in my cloned version the `width` and `height` to be 0. ``` linkCanvasCacheContext.fillRect(0, 0, 0, 0); linkCanvasCacheContext.drawImage(EXTERNAL_LINK_IMG, 0, 0, 0,...
Hi, I'm not using `oh-my-zsh` on regular base, but it seems to work with a clean installation of it on a macOS 10.15.7. I don't have any other ideas, but...
Hi, Thanks for opening the issue. You are right that the function `send_notification()` receives a list. But there is no need to change `contentChanges=[contentChanges]` because the `contentChanges` parameter of the...
Hi, Thank you for your contribution. As you can see we are in a transition to pydantic models, and these structs already exists there. Please change the implementation to pydantic,...
The context is not implemented yet. It should be something like that (not tested): ```python from pydantic import BaseModel from typing import Optional class TextDocumentIdentifier(BaseModel): """ Identifies a text document...
I added an example of more classes here: https://github.com/yeger00/pylspclient/pull/47
I don't mind adding the library as a depndency but I don't really like to support attrs. I didn't fully understand option #2 - how do you think to implement...
Hi, First of all thank you for the PR and your work and efforts, much appreciated. Second, this is a pretty big PR, too big for me to handle at...
Hi I was looking at this issue as part of Hactoberfest and when I tried to reproduce this bug but I couldn't. Was it resolve? Thanks