spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
taka2 2020-07-14T12:13:46.115900Z

I changed my config so that I can use "jj" instead of "esc", but I noticed that I had to press the key so quickly. I want to delay the input grace. How can I do it?

Richard 2020-07-14T12:15:40.116700Z

(setq-default evil-escape-delay 0.5)

taka2 2020-07-14T12:16:10.116800Z

Thanks!

Richard 2020-07-14T12:17:06.117Z

You're welcome. I use ',.' to do the same.

Richard 2020-07-14T12:17:07.117200Z

(setq-default evil-escape-key-sequence ",." evil-escape-unordered-key-sequence "true" evil-escape-delay 0.5)

taka2 2020-07-14T12:18:06.117400Z

What is "evil-escape-unordered-key-sequence"?

Richard 2020-07-14T13:02:16.117600Z

I can enter ,. or .,

Richard 2020-07-14T13:02:32.117800Z

It doesn't matter for you if it's jj

taka2 2020-07-14T14:33:35.118Z

I see.