Somelauw
Somelauw
@ryepesg See comment above
@bpstahlman C-f seems to be the only way, but you can bind (kbd "\\"") to lispy-doublequote if you want " to terminate. I have a slightly related question: _How to...
@bpstahlman thanks, there is a difference between lispy-delete-backward and lispy-backward-delete and I was using the latter instead of the former.
What I'm currently using is: ```emacs-lisp ;; I base myself on paredit,because I don't like [ and ] to jump ;; Also, I like " and ' better in paredit-style...
@jojojames The existing `evil` theme had some problems such as duplicated key bindings, special behaviour of `y` in insert mode and unnecessary dependencies on evil-cleverparens and smartparens. At first I...
I've found that `ip` and `ap` remain useful when used inside of code blocks. If the defintion of the these text objects is changed, they should probably remain unchanged in...
Here is an idea for these bindings: ```emacs-lisp "[[" 'org-backward-heading-same-level ; C-c C-b "]]" 'org-forward-heading-same-level ; C-c C-f "[m" 'org-previous-visible-heading ; C-c C-p "]m" 'org-next-visible-heading ; C-c C-n "[x" 'org-previous-link...
Unable to reproduce. I tried the following: - Start with ```org #+BEGIN_SRC emacs-lisp (message "start-point") #+END_SRC ``` - Press `C-c '` - I get ```emacs-lisp (message "start-point") ``` - Modify...
> What I'm saying is I shouldn't have to press :w one more time to save the original org file I see. Does https://github.com/Somelauw/evil-org-mode/pull/45 work for you?
> Calling evil-write interactively from an src block edit results in the message : user-error: Please specify a file name for the buffer. `:w` and `ZZ` both work for me...