Tuo Pe wrote: > On Ubuntu there were no problems; on Windows, however, > Backspace key doesn't work! I have this piece of code (`_' > denotes cursor). > > for con in content: > if ntpath.isdir(con): > print con,_ > > In insert mode I am unable to delete the comma!
I guess that Backspace has been mapped in insert mode to do something tricky, and the script is broken. Try: :verbose imap <BS> :verbose imap The first is probably all you need, but the second will list all insert mode mappings and what set them. Probably just rename the script (not *.vim) or move it, then use something else. John --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
