aboutsummaryrefslogtreecommitdiff
path: root/after
diff options
context:
space:
mode:
authorMax Christian Pohle2020-07-16 20:41:11 +0200
committerMax Christian Pohle2020-07-16 20:41:11 +0200
commit3abfad483660e8dcdd77965a237c271a90cec8e7 (patch)
treef5ac85cf568b8865fc25a6e3ae07861ea6b4ca20 /after
parent19156c818fdd12865c6d17872eea917ab3aaee82 (diff)
downloadvim-3abfad483660e8dcdd77965a237c271a90cec8e7.tar.bz2
vim-3abfad483660e8dcdd77965a237c271a90cec8e7.zip
Tiny mostly optical improvements
Diffstat (limited to 'after')
-rw-r--r--after/ftplugin/python.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/after/ftplugin/python.vim b/after/ftplugin/python.vim
index 642e1c0..a5c454a 100644
--- a/after/ftplugin/python.vim
+++ b/after/ftplugin/python.vim
@@ -8,3 +8,5 @@ for p in sys.path:
8 # Command 'set' needs backslash before each space. 8 # Command 'set' needs backslash before each space.
9 vim.command(r"set path+=%s" % (p.replace(" ", r"\ "))) 9 vim.command(r"set path+=%s" % (p.replace(" ", r"\ ")))
10EOF 10EOF
11
12hi link pythonDecoratorName pythonDecorator
..