Noritada Kobayashi

Results 34 comments of Noritada Kobayashi

@tomhoule Thank you very much! Yes. Build scripts run before normal compilation process of `.rs` files including proc macros. My `build.rs` is just as simple as following code (just a...

In Rust 1.54.0, [function-like macros become able to be used in attributes](https://blog.rust-lang.org/2021/07/29/Rust-1.54.0.html#attributes-can-invoke-function-like-macros) like this: ```rust #[path = concat!(env!("OUT_DIR"), "/generated.rs")] mod generated; ``` So, how about syntax like this (as I...

@jswhit Thank you for merging the previous PR. I have rebased and re-pushed the branch for this PR.

Hello! I also had the same issue in using `Alt + ←`. From logs of mine and @undersquire, I thought that the terminal receives an event `Alt + Left Alt...

I read the source code, found the problem area and have started implementation, hoping to be able to submit a PR.

@ConradIrwin I have submitted a PR #7687. I hope you will take a look at it when you have time.

(Currently, I have made only the first change. As for the second change, I have not been able to change the selection range when keystroke is only `shift-v`.)

Just a quick look at the code, but it seems to me that the problem is caused by the width of the menu being taken from the width of the...

Thank you very much! I've booked at Calendly.

@ConradIrwin I have updated the main part. Could you review it? "Paragraphs" in vim include not only non-blank paragraphs but also "blank paragraphs," which is a little different from what...