X Tutup
Skip to content

Commit 9956aba

Browse files
committed
Fix pydocs
1 parent d4634ca commit 9956aba

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
## 2012-04-18 0.6.3
5+
-------------------
6+
* Fix pydocs integration
7+
48
## 2012-04-10 0.6.2
59
-------------------
610
* Fix pymode_run for "unnamed" clipboard

ftplugin/python/pymode.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if g:pymode_doc
4545

4646
" DESC: Set keys
4747
exe "nnoremap <silent> <buffer> " g:pymode_doc_key ":call pymode#doc#Show(expand('<cword>'))<CR>"
48-
exe "vnoremap <silent> <buffer> " g:pymode_doc_key ":call pymode#doc#Show('<C-R><C-A>')<CR>"
48+
exe "vnoremap <silent> <buffer> " g:pymode_doc_key ":<C-U>call pymode#doc#Show(@*)<CR>"
4949

5050
endif
5151

plugin/pymode.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let g:pymode_version = "0.6.2"
1+
let g:pymode_version = "0.6.3"
22

33
com! PymodeVersion echomsg "Current python-mode version: " . g:pymode_version
44

0 commit comments

Comments
 (0)
X Tutup