mirror of
https://github.com/gryf/.vim.git
synced 2025-12-18 12:00:30 +01:00
Removed unnecessary OverLength highlight
Added ColorColumn definition to wombat256grf colorscheme Added definition of ColorColumn for python filetype Downgrade pyflakes, because I don't want to have the errors in QF Wrapped substitutions with try: except blok in reST function blogify() Updated GetLatestVimScripts data file Updated plugins: vimwiki and vcscommand Removed pythoncomplete.vim since it is the same as the default form vim Removed colorschemes: lettuce and wombat256
This commit is contained in:
@@ -54,8 +54,15 @@ if name.lower().endswith(".rst"):
|
||||
vim.command('new')
|
||||
|
||||
vim.current.buffer[:] = blogify(bufcontent).split("\n")
|
||||
vim.command(r'silent %s/<tt class="docutils literal">/<code>/g')
|
||||
vim.command(r'silent %s/<\/tt>/<\/code>/g')
|
||||
try:
|
||||
vim.command(r'silent! %s/<tt class="docutils literal">/<code>/g')
|
||||
vim.command(r'silent! %s/<\/tt>/<\/code>/g')
|
||||
except:
|
||||
pass
|
||||
try:
|
||||
vim.command(r'silent! %s/<!-- more -->/\r<!-- more -->\r\r/g')
|
||||
except:
|
||||
pass
|
||||
vim.command('w %s' % name)
|
||||
vim.command('bd')
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user