1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Removed ACP plugin. Found it annoying after a while. Reorganized rst2blogger plugin. Added documentation for it.

This commit is contained in:
2010-12-07 20:57:23 +01:00
parent b3d266aca3
commit 388bc749e7
15 changed files with 760 additions and 2065 deletions

View File

@@ -106,3 +106,11 @@ snippet docmodule
"""
snippet debug
LOG.debug(self.${1:method_name}.__doc__.strip())
snippet edbg
import sys
pydevdPath = r"/mnt/data/IDE/eclipse/plugins/org.python.pydev.debug_1.6.3.2010100513/pysrc"
if not pydevdPath in sys.path:
sys.path.append(pydevdPath)
import pydevd
pydevd.settrace()