liuzhishan

Results 3 comments of liuzhishan

Hi, with the help from [how-to-impliment-a-with-undo-collapse-macro-using-change-group-feature](https://emacs.stackexchange.com/questions/54402/how-to-impliment-a-with-undo-collapse-macro-using-change-group-feature), I find a way to paste and indent, just add the following code to config.el. It will do indent after paste. ``` (defmacro with-undo-amalgamate...

> @tomdl89 thanks for the advice ! I tried it with `evil-with-single-undo` and it worked perfectly, thanks! ``` (defun evil-paste-after-and-indent(count) (interactive "*P") (evil-with-single-undo (evil-paste-after count) (evil-indent (evil-get-marker ?\[) (evil-get-marker ?\]))))...

the reason of "Cannot open load file: no such file or directory, ede/maven" might be that built-in cedet is already loaded, so that the cedet from https://github.com/alexott/cedet/tree/devel is not loaded....