Ted Driggs
Ted Driggs
The interface for `SharedElementTransitionGroup` says it's required, but the examples on https://react-layout-transition.surge.sh/ it's not set and those work. Is the example incorrect?
Since the repo is written in TypeScript, having a separately-maintained `@types` package seems unnecessary. Would it be possible to export the type declarations as part of the built package?
This seems to work fine - and even be checked for in the code - but the TS types don't allow it.
The `get-type` command (requested in #620) takes a line and character number which point to a complete identifier in the input text. The command will then attempt to determine the...
Fixes #775. This fix is very similar to the one for trait functions: 1. Look to see if cursor is after a declaration keyword 2. If so, try to find...
PR #729 started replacing `usize` and `(usize, usize)` with the more meaningful terms `Point` and `SourceByteRange`. However, to avoid any compat problems this was done using type aliases, so there...
Racer version: 2.0.8 ## Repro In the following code one would expect `racer complete` at the `~` to produce `0` and `1` for the tuple fields. ```rust struct FooBar {...
```rust pub struct Foo; impl ::std::str::FromStr for Foo { type ~Err = (); // ... remainder elided } ``` **Desired Behavior:** When the cursor is at `~` in the example...
Before submitting a very backwards-incompatible pull request, I'd be interested to get people's opinions on moving from enum struct variants to enum "newtype" variants for the `Event` enum, similar to...
In cybersecurity data, URLs are likely to be adversary-controlled. Visiting them is therefore **very bad**, for two reasons: 1. They could attempt to infect your machine 2. Your visit could...