* howard Schwartz [2011.03.21 19:10]: > But when I try this mapping with an html string like www.google.com, vim > addes extra characters to the www.google.com string. They appear too > fast for me to capture, but include things like %20 which appear to > be instructions to a terminal like xterm.
'www.google.com' is not an html string, it's a host name. It's likely been interpreted as a URL when you tried that command because things like '%20' are escape sequence for encoding special characters in a URL, not terminal instructions. The one you quote is for a space (ascii '20' in hexadecimal). -- JR -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
