We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
发现在打开600行的大文件的时候非常卡顿,通过profiler-start,profile-report得到是fix-show-paren-function这部分的问题,只能删除。。不知有没有其他解决方案,相关代码:
profiler-start,profile-report
fix-show-paren-function
(define-advice show-paren-function (:around (fn) fix-show-paren-function) (cond ((looking-at-p "\\s(") (funcall fn)) (t (save-excursin (ignore-errors (backward-up-list)) (funcall fn)))))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
发现在打开600行的大文件的时候非常卡顿,通过
profiler-start,profile-report
得到是fix-show-paren-function
这部分的问题,只能删除。。不知有没有其他解决方案,相关代码:The text was updated successfully, but these errors were encountered: