Evo Stamatov

Results 75 comments of Evo Stamatov

All of my team was interested in trying this fancy new terminal emulator, but the moment a GitHub login showed up _everyone_ decided we are okay with what we use...

a nasty workaround hack: **Note**: do a `npm update` or `npm -g update`, just to be sure you are up to date (use -g to do a global update) go...

@msutherl if you clone coffeecup, not coffeekup (a k difference) as @gradus says you won't need to do my hack, because he fixed it in his clone.

Use `Trix.config.textAttributes` to add your own like in: https://github.com/basecamp/trix/blob/7940a9a3b7129f8190ef37e086809260d7ccfe32/src/trix/config/text_attributes.coffee ```js Trix.config.textAttributes.red = { style: { color: "red" }, parser(element) { return element.style.color === "red"; }, inheritable: true, }; ``` Then...

[elvish](https://elv.sh) doesn't read your bash config in `.bashrc` nor `.profile`, but will read its [rc.elv file](https://elv.sh/ref/command.html#rc-file). Make sure your `$paths` are set correctly: https://elv.sh/learn/tour.html#changing-path

You've probably sorted it out but a `.gitignore` file is a good start?

@Simon54 thank you - that sorted it out for me. I'll now have to make sure this "patch" gets applied when this is deployed to CI.

Ok... I think I found a better solution than patching `Map.swift`, which was a hit-or-miss solution anyway. What I'm doing and is consistently working is: 1. I wrap the `capacitor-google-map`...