Jesse Luehrs
Jesse Luehrs
I use a multi-line prompt, and if i do something like "da(", the line above my prompt is deleted, and the entire prompt is moved up a line.
still includes a bunch of deprecated things, but compilation is a first step
### Describe the bug async mode was recently enabled by default, and when used, `history-search-end` doesn't work properly. the exact way it fails is a bit inconsistent - it feels...
this code causes a panic for me after running for ~30 seconds: ```rust use async_std::io::WriteExt as _; use std::os::unix::io::{FromRawFd as _, IntoRawFd as _}; async fn async_main() -> anyhow::Result {...
### What crate(s) in this repo are involved in the problem? tokio-console, console-subscriber ### What is the issue? occasionally when running my application under tokio-console, i have been noticing that...
in an async program, it is pretty common to want to be able to wait on something like `read.or(write).or(exit)`, which isn't actually possible with the current api, since calling `status`...
``` perl #!/usr/bin/env perl use strict; use warnings; use 5.016; warn sub { my ($n) = @_; return 1 if $n < 2; return $n * __SUB__->($n - 1); }->(15);...
Right now, to create an accessor using the mop, you need to do something like ``` $meta->add_method( $meta->method_class->new( name => $attr->key_name, body => sub { my $self = shift; $attr->fetch_data_in_slot_for($self);...
If a class sets `method_class` to a certain value, it should then be able to assume that all methods defined in a class whose metaclass inherits from it also inherit...