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

vimrc cleanup, change mapping for class selection in python ft plugin

This commit is contained in:
2011-07-21 18:09:52 +02:00
parent 24fd62a10c
commit ad9a205b79
2 changed files with 11 additions and 8 deletions

View File

@@ -61,7 +61,8 @@ vmap ]# :call PythonCommentSelection()<CR>
map ]u :call PythonUncommentSelection()<CR>
vmap ]u :call PythonUncommentSelection()<CR>
map ]c :call PythonSelectObject("class")<CR>
" gryf: change mapping for class selection
map ]C :call PythonSelectObject("class")<CR>
map ]d :call PythonSelectObject("function")<CR>
map ]<up> :call PythonNextLine(-1)<CR>