shouya

Results 59 comments of shouya

I have the same need. However, this feature may depend heavily on personal preference - different people may want to enable it in different places. Therefore, I am not sure...

My current workaround is to patch `projectile--test-name-for-impl-name` function like this: ```emacs-lisp ;; Elixir: jump to *_test.exs instead of *_test.ex (defun shou/fix-exs-test-file-name (name) (cond ((string-suffix-p "_test.ex" name) (concat name "s")) (t...

@Cardosaum thanks. Actually I waws doing something similar - periodically archiving old trees.

I have done that successfully by overriding `anki-editor--ox-anki-html-backend` with `ascii` backend, namely: ```emacs-lisp (setq anki-editor--ox-anki-html-backend 'ascii) ``` I agree it may be better to make this variable customizable.

I've been using @rdelcorro's fork and it's been working great for me. Hi @Trane9991, is there any hope on merging this PR to the upstream?

cc @emil-vdw. Thanks for that great PR btw, I was really looking forward for this feature - that's why I updated copilot.el as soon as it was merged :)

Hi @emil-vdw, here's the `*copilot events*` buffer you asked for. ``` [client-notification] Thu Aug 31 00:44:17 2023: (:jsonrpc "2.0" :method "textDocument/didFocus" :params (:textDocument (:uri "file:///home/shou/tmp/scratch/scratch-1LZkZB.org"))) [client-notification] Thu Aug 31 00:44:19...

Sad to see this issue closed without being solved yet. In the past few weeks I have been running copilot.el outside org-mode. I still really want to get copilot working...

Correcting my above comment - masking `copilot--on-doc-change` is not a perfect solution. Because it no longer notifies the change to copilot, the completion may stop working after calling `org-todo`. So...

@emil-vdw from my basic testing the result looks great! I don't see any broken org structure any more. I'm looking forward to see it merged.