Arne Bertrand

Results 20 issues of Arne Bertrand

PR #80 adds ember 4 as a minimum peerdep version, but according to the README, ember 3.16 and up is still supported? Ran into this cause our 3.28 ember-try CI...

I'm making a V1 ember addon, and I'm trying to dynamically import a non-ember npm package: [prosemirror-dev-tools](https://github.com/d4rkr00t/prosemirror-dev-tools) I followed the instructions as per [the readme](https://github.com/ef4/ember-auto-import#installing-ember-auto-import-in-an-addon), but while everything builds fine,...

Import should be: ```js import { attr } from '@ember-data/model'; ``` but instead ember-mode adds: ```js import { attr } from '@ember/data'; ``` This is on ember octane, with the...

While testing git-subrepo, I found some gotchas with regards to nested subrepos. With a bit of thinking, the way git-subrepo acts is logical, but maybe not immediately intuitive. This PR...

I'm testing out git-subrepo for our project, which has currently 2 levels of subrepos, like this: ``` app |- foo |- bar ``` This works, of course, as it's even...

When I swapped completion engines in neovim, I noticed I wasn't getting completions for types which are defined with the `type` keyword anymore. After some digging, context: https://github.com/Saghen/blink.cmp/issues/1437 , I...

I (have to) use the commonjs rollup plugin for my addon, and I'm getting the following warning in my build output: ``` [plugin commonjs--resolver] It appears a plugin has implemented...

This is something which slightly tripped me up when I installed auto-save. Committing with `git commit` from the commandline opens up neovim (for most of us, I imagine). Having autosave...

### Feature request The interactive versions of `list` and `edit` are great, cause they do a lot of heavy lifting of the fzf config. However, they are difficult to use...

### Problem description I have a sparql endpoint which only accepts `application/sparql-results+json` requests. So I added: ```java SPARQLRepository repo = new SPARQLRepository(sparqlEndpoint); repo.setAdditionalHttpHeaders(Map.of("Accept", "application/sparql-results+json,*/*;q=0.9")); ``` This worked well, for the...

📶 enhancement