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

Version 1.7: Use <Down> instead of 'j', so it should work when j is mapped.

This commit is contained in:
Mikael Berthe
2003-07-25 00:00:00 +00:00
committed by Able Scraper
parent dc9722e464
commit 7643722ee3

View File

@@ -1,8 +1,8 @@
" -*- vim -*-
" FILE: python.vim
" LAST MODIFICATION: 2003/06/12 08:19
" LAST MODIFICATION: 2003/07/25 19:00
" (C) Copyright 2001-2003 Mikael Berthe <mikael.b@netcourrier.com>
" Version: 1.6
" Version: 1.7
" USAGE:
"
@@ -191,7 +191,7 @@ function! PythonCommentSelection() range
if strlen(getline(cl))
execute "normal ".ind."|i".commentString
endif
execute "normal j"
execute "normal \<Down>"
let cl = cl + 1
endwhile
endfunction
@@ -247,7 +247,7 @@ function! PythonSelectObject(obj)
execute "normal V".cl."G"
else
" Select the whole block
normal j
execute "normal \<Down>"
let cl = line('.')
execute ":".beg
execute "normal V".PythonBoB(cl, 1, 0)."G"