We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 073dc99 + 956e3db commit 3e2b48dCopy full SHA for 3e2b48d
autoload/pymode/doc.vim
@@ -29,6 +29,9 @@ fun! pymode#doc#show(word) "{{{
29
setlocal nomodifiable
30
setlocal nomodified
31
setlocal filetype=rst
32
+ if g:pymode_doc_vertical
33
+ wincmd L
34
+ endif
35
wincmd p
36
37
endfunction "}}}
plugin/pymode.vim
@@ -52,6 +52,9 @@ call pymode#default("g:pymode_options", 1)
52
call pymode#default("g:pymode_options_max_line_length", 80)
53
call pymode#default("g:pymode_options_colorcolumn", 1)
54
55
+" Enable/disable vertical display of python documentation
56
+call pymode#default("g:pymode_doc_vertical", 0)
57
+
58
" Minimal height of pymode quickfix window
59
call pymode#default('g:pymode_quickfix_maxheight', 6)
60
0 commit comments