We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799d143 commit ee75fddCopy full SHA for ee75fdd
ftplugin/python/ipy.vim
@@ -196,10 +196,8 @@ def get_doc_buffer(level=0):
196
#vim.command('pcl')
197
#vim.command('pedit doc')
198
#vim.command('normal ') # go to previous window
199
- # "rest" is the syntax of python documentation. Stock vim doesn't have
200
- # a syntax file for rest, but if the user has installed one then this will
201
- # cause the docs to be colorized.
202
- vim.command('setlocal syntax=rest')
+ # use the ReST formatting that ships with stock vim
+ vim.command('setlocal syntax=rst')
203
204
def update_subchannel_msgs(debug=False):
205
msgs = km.sub_channel.get_msgs()
0 commit comments