> On Oct 11, 2009, at 8:26 PM, Brett Stahlman wrote: > > Try this: > > let &viminfo = '%,"4,''4,/' . &history . ',:' . &history . ',h,f0' > > Thank you, I now understand. > I made changes and it works. > ... > set history=111 "command-line history restored > let &viminfo='%,h,"4,''4,f0,/99,:' . &history
That worked MacOS 10.4.11 with vim version 7.2.264, but fails with the system built-in vim version 6.2. It seems vim version 6.2 does not understand ''4 I changed it to the following and it now works with vim version 6.2 set history=111 let &viminfo="%,h,\"4,'4,f0,/99,:" . &history -- Bill Santa Cruz, California --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
