Nick Pezza
Nick Pezza
Webgl: Canvas: ## Details - Browser and browser version: electrons 19 - OS version: macOS Monterey - xterm.js version: v5 ### Steps to reproduce 1. echo text in both renderers...
## Details - Browser and browser version: electron 14 - OS version: macOS BigSur - xterm.js version: latest ### Steps to reproduce 1. enable webgl 2. find a repo with...
In ruby you have blocks that can look like the following: ```ruby foo.each do |item| item end foo.each { |item| item } ``` `@block.outer` in the first case would cover...
When parsing Bundler inside the Ruby Stdlib in Ruby 2.6.0 the superclass of `Bundler::Persistent::Net::HTTP::Persistent::SSLReuse` is incorrectly set to `Bundler::Persistent::Net::HTTP` which is a module. The correct superclass is `Net::HTTP` (https://github.com/bundler/bundler/blob/d44d803357506895555ff97f73e60d593820a0de/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb#L10). Seems...
Super cool plugin but it unfortunately doesn't place nice with [endwise](https://github.com/tpope/vim-endwise). My guess is due to the overrides but not sure. For example: ```ruby def foo| ``` Should do the...
**Is your feature request related to a problem? Please describe.** No problem **Describe the solution you'd like** I'd like a configuration option to not group folders before files and instead...
It looks like texture healing is supported but other ligatures like arrows are not. Perhaps i am missing a setting? https://monaspace.githubnext.com
### Motivation / Background If you try to create a cte that unions for than 2 relationships you get a NoMethodError of ``` undefined method `union' for an instance of...
### Motivation / Background Recently stumbled upon `composed_of` and started to use it to model a concept. One nice thing about it I noticed was i could isolate all logic...
This is useful when you push a branch to different environments at separate times from CI. It's also useful if you have CI setup to deploy main but have a...