Aaron Ross
Aaron Ross
now handles .bash_history and .zsh_history with `extended_history` enabled (closes #1)
Hello! Thanks so much for this awesome project. I noticed that there was some desire to be able to run this without the web interface, so I took some time...
## Goals The **UI** will be rewritten in **React** + **TypeScript** + **Apollo Client**. The **backend** will be rewritten with **Apollo Server** + **TypeScript**. The **data layer** will use **SQLite**...
Fix the example for `convertDateToTime` to match the expected signature.
When parsing a cell with data type `inlineStr`, the value is contained within this XML structure: ```xml VALUE ``` Previously, these values were parsed only if they followed a cell...
See #269 for previous discussion. ## Changes - upgrade `styled-components` to latest version (`4.2.0`) - change `injectGlobal` to `createGlobalStyle` - change `withComponent` at declaration to `as` when instantiating component -...
While installing dependencies, both during step 4 of project creation as well as when adding them manually to an existing project, the UI simply displays an indeterminate spinner until the...
### Expected Behavior Sending a GET request to `http://localhost:3000/some/path?foo=bar+baz` should send the following HTTP request to the server running at port `3000`: ``` GET /some/path?foo=bar+baz HTTP/1.1 ``` Specifically, the query...
The current implementation transforms the entire buffer. It would be nice to allow transforming only a particular range, either explicitly provided via `:h :command-range` (`:-2,+2AsciiBlockify) or by calling with a...
Currently, `SmartCalc::execute` is run every 250ms, regardless of whether any input is available or if the input has changed since the last time it was run. Ideally, `execute` should only...