需求
在使用 org-mode 写文档时,插入图片后默认不显示,想要直接在 org文件中预览图片,可以使用
org-toggle-inline-images
但是问题来了,开启预览模式后,移动光标跳过文件内容,找了一下
参考链接 [1] 那么问题来了,如何只在开启 org-toggle-inline-images 后关闭 smooth-scrooling, 关闭 org-toggle-inline-images 后开启 smooth-scrooling
解决
给出代码,使用 defadvice
(defadvice org-toggle-inline-images (after org-open-at-point activate) (if smooth-scrolling-mode (smooth-scrolling-mode -1) (smooth-scrolling-mode 1)))