We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f0167 commit d2b32a6Copy full SHA for d2b32a6
autoload/pymode/doc.vim
@@ -8,6 +8,9 @@ fun! pymode#doc#show(word) "{{{
8
else
9
call pymode#tempbuffer_open('__doc__')
10
PymodePython pymode.get_documentation()
11
+ setlocal nomodifiable
12
+ setlocal nomodified
13
+ setlocal filetype=rst
14
wincmd p
15
endif
16
endfunction "}}}
autoload/pymode/rope.vim
@@ -70,6 +70,9 @@ fun! pymode#rope#show_doc()
70
if !empty(l:output)
71
call pymode#tempbuffer_open('__doc____rope__')
72
call append(0, l:output)
73
74
75
76
77
end
78
endfunction
0 commit comments