Hi,
I anyone has any idea about the roadmap for improving the vim<->Python
interface? Is anyone working on this at the moment?
I'm interested in writing some code browsing scripts in Python and
subscribing to keyboard input from a buffer. I've seen it done with ex
commands but it's not pretty, e.g. Mapping every key to a function
call!!!
Lusty-explorer.vim (Ruby not Python!)
---cut---
printables = '/!"#$%&\'()*+,-.0123456789:<=>?#@"' \
'ABCDEFGHIJKLMNOPQRSTUVWXYZ' \
'[]^_`abcdefghijklmnopqrstuvwxyz{}~'
map_command = "noremap <silent> <buffer> "
printables.each_byte do |b|
exe "#{map_command} <Char-#{b}> :call
#{self.class}KeyPressed(#{b})<CR>"
end
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---