Results 91 comments of Jaehwang Jung

plus, the signatures for `burn` and `operatorBurn` are not updated. https://github.com/ethereum/EIPs/blame/b41669ede219b9599a6a1c637e578b8a444ad6b1/EIPS/eip-777.md#L57-L58 https://github.com/ethereum/EIPs/blame/b41669ede219b9599a6a1c637e578b8a444ad6b1/EIPS/eip-777.md#L488 https://github.com/ethereum/EIPs/blame/b41669ede219b9599a6a1c637e578b8a444ad6b1/EIPS/eip-777.md#L501

The first one is a rust edition issue (old rustc doesn't support 2021 edition?) and the other is clippy lint for crossbeam-utils. I think it's better to address these in...

[`pin_holds_advance`](https://github.com/crossbeam-rs/crossbeam/blob/858bc6e03e1a688368262a4f43e8e35db69ac522/crossbeam-epoch/src/collector.rs#L199) test fails when I add artificial delay here (`std::thread::sleep(std::time::Duration::from_micros(1))`): https://github.com/crossbeam-rs/crossbeam/blob/858bc6e03e1a688368262a4f43e8e35db69ac522/crossbeam-epoch/src/internal.rs#L466-L468 This happens when the global epoch decreases, which is in contrary to this comment: https://github.com/crossbeam-rs/crossbeam/blob/858bc6e03e1a688368262a4f43e8e35db69ac522/crossbeam-epoch/src/internal.rs#L338-L343 So crossbeam is relying...

I think this needs a version guard because `` is a relatively new feature ([v7.4.1898](https://github.com/vim/vim/commit/63a60ded3fd584847a05dccf058026e682abad90))

Of course, I believe 2016 feature is old enough to use without version check in 2021. The only reason I think 2016 feature is relatively new is that vim-plug has...

It seems that recent nvim ignores paths that are not existent at the moment of setting rtp. So post-update hook fails for freshly installed plugins, while it works for updated...

I'm also in favor of manual anchor because it is `grep`-able and can be given some meaningful name. Personally, I really like [Obsidian's block ID](https://help.obsidian.md/How+to/Link+to+blocks) despite its incompatibility, because it...

https://github.com/ianding1/coqide.vim This (now unmaintained) plugin supports async proof/editing like CoqIDE and VsCoq.

Hi, I'm a bit busy recently, but I think I can take some time on weekends to implement it. Regarding immediate processing of read-only commands, I agree that this should...

Sorry, I have used up this weekend's free time dealing with another irritating vim bug.