steinarb

Results 82 comments of steinarb

The editorconfig-exclude-regexps did work for me. I customized editorconfig-exclude-regexps and tried to match buffers ending with .jar: ``` '(editorconfig-exclude-regexps '("\\.jar$")) ``` And after this .jar files opened correctly in a...

I removed both customizations and added a handwritten config in .emacs, and the following also works: ``` ;; editorconfig formatting support ;;;================================ (when (locate-library "editorconfig") (editorconfig-mode 1) (setq editorconfig-exclude-regexps '("\\.jar$")))...

Even though I found a config workaround, this probably should be fixed in the way that editorconfig doesn't touch buffers where mode-class is special. For more detail, please see the...

>>>>> Jen-Chieh Shen ***@***.***>: > This doesn't look right. Do you mean `archive-mode`? I just picked the leftmost mode in the mode list when opening a .jar file, which is...

Posts probably should be removed from hashtags that are removed as well?

Once it is fixed it would be nice if there was a pass done over all edited articles and the hashtags updated.

I have pushed a repro on https://github.com/steinarb/handlereg/tree/redux-first-history-issue-137 To run it you need java sdk and maven installed: 1. Clone and build ``` mkdir -p ~/git cd ~/git git clone https://github.com/steinarb/handlereg.git...

Found this https://stackoverflow.com/a/69796015 Tried the suggested workaround: move <Router> to outside of the <App> component: https://github.com/steinarb/handlereg/commit/d257d9dc132be5e598ab6f8075b4938a3f979895 Didn't make any difference. Still got the following error in the console: ``` chunk-K6AXKMTT.mjs:182...

This is where the error message originates: https://github.com/remix-run/react-router/blob/e099d6927c7ea2bd97bae015e32fa96a6b0c84e0/packages/react-router/lib/hooks.tsx#L438

Looks like useInRouterContext() is false and the error message is output when this is null ``` React.useContext(LocationContext) ``` https://github.com/remix-run/react-router/blob/e099d6927c7ea2bd97bae015e32fa96a6b0c84e0/packages/react-router/lib/hooks.tsx#L105 So possibly HistoryRouter doesn't set up LocationContext?