クエン酸

Results 51 comments of クエン酸

Oh my... Don't paste other thing into the file. The file can contain only: ```lisp (message (shell-command-to-string (format "%s new '%s'" (hexo-find-command) "testttttt"))) ``` Then `M-x eval-buffer` in this file's...

I mean **`M-x eval-buffer` in this file's buffer,** instead of `*Hexo*` buffer.

How about `(message (hexo-find-command))` ?

I guess I know where the problem is. `hexo.el` execute `hexo` command, which is actually the file `YOUR_HEXO_REPO/node_modules/hexo/bin/hexo`, whose the content is: ```js #!/usr/bin/env node 'use strict'; require('hexo-cli')(); ``` Now...

Oops, sorry, I mixed you up with another bug (happened only in Windows) which I just fixed in `tldr.el` today.... Hmmm, you use Mac, I cannot understand why you still...

Can you execute `YOUR_HEXO_REPO/node_modules/hexo/bin/hexo` correctly in Emacs? (e.g. `M-! /PATH/TO/YOUR/HEXO/REPO/node_modules/hexo/bin/hexo`)

Have you made variable `hexo-new-format` safe?

Is this issue still existing?

1. Sorry, I forgot to say that zlc's completion works well in C-x C-f, but have problems in other conditions, such as M-x. 2. No, my .emacs doesn't contain the...

Thank for patiently and detailed reply. A.After removing these two lines indeed solve "some" problems : ``` lisp (define-key map (kbd "") 'zlc-select-next-vertical) (define-key map (kbd "") 'zlc-select-previous-vertical) ``` But:...