* Horvath Adam on Thursday, March 29, 2007 at 10:03:17 +0200: > \"bluemarine\" > to change > anything > > Code I try: > let repl = substitute(repl, "\\\"bluemarine\\\"", "anything", "g") > > What's wrong? I can not figure out.
Use single quotes: let repl = substitute(repl, '\\"bluemarine\\"', 'anything', 'g') c -- Vim plugin to paste current GNU Screen buffer in (almost) any mode: <http://www.vim.org/scripts/script.php?script_id=1512>
