Jon

Results 9 comments of Jon

I don't know if a plugin is needed for this simple setup. Nonetheless, exploring this repository was a lot of fun. It works for my use case, but further testing...

Screengif: ![ScreenRecording2024-05-01at23 02 56-ezgif com-censor](https://github.com/nrwl/nx/assets/16549839/8230aa17-eb2e-4549-ad92-c0cccca4cfcb)

Added `"target": "esnext"` and now it just works. ``` # tsconfig.node.js { "compilerOptions": { "target": "esnext", "composite": true, "module": "ESNext", "moduleResolution": "Node", "allowSyntheticDefaultImports": true }, "include": [ "vite.config.ts" ] }...

> `storageClassname: local-path` spec: storageClassName: local-path Capital N

Here is my example: ```rs pub fn toggle_focus(&mut self) { let focus = match &self.focus { Some(focus) => match focus { Focus::Key => Focus::Value, Focus::Value => Focus::Key, }, None =>...

Cool, this is interesting, as the edit mode now requires a focus. So you won't need to keep track of the focus directly, you just save it as the context...

Awesome! Now another thing that is confusing to me is the name tick_rate. Usually, something with higher rate happens more often. But for the tick_rate the opposite is true. It...

So, looking at the ratatui-async-template, they use a float for the number of ticks in a second. And then for calculating the delay between the ticks, they use the following...

Thank you joshka. Okay, I will orient my feedback towards the rewrite. Right off the bat, the dark theme colors are easier on the eye and I find the increased...