with python

FacebookTwitter
This chapter describes Leo’s vim-like bindings, including how to install them. Installing vim bindings Place a copy of the “@keys Vim bindings” node and its sub-nodes, located in the leoSettings.leo file, under the “@settings” node in the myLeoSettings.leo file

Start - Using Vim Bindings with Leo — Leo v4.9 documentation - Pentadactyl

http://webpages.charter.net/edreamleo/vimBindings.html#general-commands

Start - VIM as Python IDE | Alain M. Lafon - Pentadactyl

http://blog.dispatched.ch/2009/05/24/vim-as-python-ide/ Finding the perfect IDE for Python isn’t an easy feat. There are a great many to chose from, but even though some of them offer really nifty features, I can’t help myself but feel attracted to VIM anyway. I feel that no IDE accomplishes the task of giving the comfort of complete power over the code – something is always missing out.
http://vim.wikia.com/wiki/Continue_omnicompletion_for_python_modules

Start - Continue omnicompletion for python modules - Vim Tips Wiki - Pentadactyl

I was using the Python omni-completion feature in Vim, and I noticed that when you complete a module name, it inserts the module name, followed by a dot (presumably because you would then want to access something inside the module). This is helpful, except that it breaks common omnicompletion keybindings, such as imap <silent><buffer> . .<C-X><C-O> In order to get completions for this module, one would have to either manually type <C-X><C-O> to run the completion function again, or delete and then re-insert the period.