It says in the cream faq that if you want cream expert mode to behave more like normal vim you can add the following to your cream-user.vim file:
nmap <Esc> <Nop> set noinsertmode That does however not work like how I expected it to work. If you have that you can not go from insert mode to normal mode by pressing Esc. What happens is that when you press Esc while in insertmode "^L" gets printed to the active buffer. (It's the noinsertmode setting that causes this behaviour). "^L" also gets printed to the buffer when pressing Ctrl+L. According to an earlier post to the mailinglist you can put inoremap <silent> <C-L> <C-\><C-n> in your cream-user.vim file to fix the Ctrl+L behavior. It seems to work, so I added this as well to my cream-user inoremap <Esc> <C-L> <C-\><C-n> and that seems to work as well. So now my question is this: What does those commands do? And, Why aren't they in the faq? //Tobbe ------------------------------------------------------------------------- SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ cream-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cream-general
