Results 52 comments of Farseen

Being able to avoid recompilation for changes only in static html content would be really nice. For example: ```jinja2 {% if flag %} Foobar {% endif %} ``` to ```jinja2...

> Its main purpose is to resolve the (currently quite awful) situation of desktop frameworks. +1

See also https://github.com/romkatv/powerlevel10k/issues/1618#issuecomment-955651678

`sed -i.bak -E '/zle \.?reset-prompt/d' ~/.oh-my-zsh/custom/plugins/zsh-vi-mode/zsh-vi-mode.zsh` Removing `zle reset-prompt` fixes the issue and doesn't seem to break anything. Ref https://github.com/romkatv/powerlevel10k/issues/1618#issuecomment-955656371

Ooh. For some reason, the current theme I use powerlevel10k, which has mode indicators, still works correctly. ![image](https://user-images.githubusercontent.com/40014472/139578337-4c1e190e-b915-4bf4-910c-542d16bb5907.png) ![image](https://user-images.githubusercontent.com/40014472/139578327-212ecefb-7948-4197-a0c9-5d8b3c1d640d.png) I think this theme does the refresh automatically. Could you make...

I'm not sure if "caveat" is the right word to use in the title. Also not sure if this should directly go in the Readme instead of a separate FAQ...

There is a `state` argument that you can pass to navigate. I think you will be able to access it using `history.state` (https://developer.mozilla.org/en-US/docs/Web/API/History/state)

Typescript requiring full extension in imports is fine. But I feel like it's typescript's responsibility to rewrite that from ".ts" to ".js". Otherwise, every other tool will need to have...

@philkunz Let's consider the pros vs cons. Feel free to add to this list :) If typescript decides to transpile import statements, just like other language construct it transpiles: Pros:...

Does handling this in the application have any disadvantages? We could do this by doing multiple single inserts using a for loop right?