开发者

How to set Emacs variable doc-view-continuous?

开发者 https://www.devze.com 2023-03-29 03:09 出处:网络
Can anyone help me set the emacs variable doc-view-continuous? If I set it to non-nil then I can use C-n to scroll to the next page.

Can anyone help me set the emacs variable doc-view-continuous?

If I set it to non-nil then I can use C-n to scroll to the next page. http://www.gnu.org/software/libtool/manual/emacs/Navigation.html#Navigation

In emacs I have tried:

M-x customize-variable

followed by doc-v开发者_如何学Pythoniew- but doc-view-continuous is not an option.

I have also tried:

C-x set-variable

followed by doc-view- with the same problem

Any help will be appreciated. Alex Olssen


Use

M-x customize-group doc-view RET

There you can set Doc View Continuous.

See http://www.emacswiki.org/emacs/DocViewMode


If you don't like customize, add this to your .emacs:

(setq doc-view-continuous t)

;; or

(set-variable 'dov-view-continues t)

Completion probably doesn't work because doc-view isn't loaded yet.

0

精彩评论

暂无评论...
验证码 换一张
取 消