Arthur Leonard Andersen

Results 34 comments of Arthur Leonard Andersen

I'd love to help. Do you have other contributors and where do you communicate? Maybe a https://gitter.im/home channel would be cool? Personally I need Redmine integration with milestones and clock...

I have the same problem. Though this seems to be a problem with the latest version of the emacs-xwidget branch. I can´t even execute the xwidget-demo.el stuff. It segfaults right...

I also would love to add additional selectors like `(:auto-outline-path t :tag ("intermediary"))` so that only tagged headlines get a separate block. I normally use `org-tags-exclude-from-inheritance` to keep this tag...

I think this duplicates #32. Could that be? No solution so far. :crying_cat_face:

Hey! Thank you for your quick answer. Much appreciated! I could help if get a little nudge in the right direction. I will look through the source to find out...

Extracted the exporting to reuse your latest changes for the quick fields aswell.

Yesterday I have played around a bit: ```elisp (setq anki-editor-quick-field-mapping '(("Basic" . ("Front" . nil)))) (defun anki-editor-get-quick-fields () "" (interactive) (let* (quick-fields (note-heading (org-element-at-point)) (note-title (org-element-property :title note-heading)) (note-type (org-element-property...

Thanks @louietan This means that I would still have to keep a `Back` heading for each card? How would anki-editor know which is `Front` and which is `Back`? I think...

I just stumbled over this too. @janhesters, your useEffect looks good. The react-apollo `Query` component does it like this: https://github.com/apollographql/react-apollo/blob/5cb63b3625ce5e4a3d3e4ba132eaec2a38ef5d90/src/Query.tsx#L228-L239 Following the same logic: ```js const { loading, data, error...

@pak11273 Could you post example code? Generally you can only use hooks (e.g. `useState`) within functional react components. So you should not put `useState` into callbacks. What you could do...