Hi,
You can use the netbeans interface to do reasonable scripting in python.
:help netbeans and search for netbeans on this list to get the latest
help file.
I have an implementation of the netbeans interface in python, which I
can forward it to you offlist if you wish.
cheers,
Philippe
codebauer wrote:
> 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
-~----------~----~----~----~------~----~------~--~---