Ashwin Naren

Results 197 comments of Ashwin Naren

Are we planning to bump the version number every release? If so `cargo release` might be useful (although we'd probably skip the publishing step); we could set up substitutions for...

> TypeError: There are no type variables left in dict[~_T, None] That seems to be a typing/typing codegen error however.

> Are you perhaps in China? I think our default search engine is duckduckgo.com, which AFAIK is blocked in china. We don't have anything advanced like region / language detection...

> > Is it potentially worth having an option to configure the default search engine? AFAIK newtab.html uses duckduckgo and nothing else. > > I think that would be great....

Actually the search page is configurable from `ServoShellPreferences` ... it'll take a bit of work to expose that via something like servo-internals. In the meantime it should be possible to...

At some point ctypes will be good enough that we can use the python pyrepl, which will fix compatibility.

> Does CPython's REPL have a `vi` mode? "Ctrl-Alt-J switches from Emacs mode to Vi mode in readline programs" I think it indirectly does. I suppose we could file a...

Yes, we use the readline crate. However the new python repl is implemented in python, so we can switch to that once ctypes works well enough

Running `cargo fmt` will fix part of the "Check Rust code with rustfmt and clippy" check. Running the following and fixing all errors/warnings should fix the other tests: ``` cargo...