Vlad Irnov wrote: > According to > :help +feature-list > the smallest version with persistent_undo is Huge, > line 367 in doc/various.txt is > H *+persistent_undo* Persistent undo |undo-persistence| > > But it's really Normal. I get +persistent_undo after compiling Normal > version on Windows with MinGW.
Info in various.txt appears to be inconsistent indeed with vim/src/feature.h which enables FEAT_PERSISTENT_UNDO for "normal" build: vim/src/features.h: 1308 /* 1309 * +persistent_undo 'undofile', 'undodir' options, :wundo and :rundo, a :nd 1310 * implementation. 1311 */ 1312 #ifdef FEAT_NORMAL 1313 # define FEAT_PERSISTENT_UNDO 1314 #endif -- Dominique -- You received this message from the "vim_dev" 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
