patch 8.2.4094: 'virtualedit' is window-local but using buffer-local enum

Problem:    'virtualedit' is window-local but using buffer-local enum.
Solution:   Use window-local enum. (closes #9529)
diff --git a/src/option.h b/src/option.h
index 00a2d2e..c9b63f7 100644
--- a/src/option.h
+++ b/src/option.h
@@ -1235,7 +1235,6 @@
     , BV_VSTS
     , BV_VTS
 #endif
-    , BV_VE
     , BV_COUNT	    // must be the last one
 };
 
@@ -1287,6 +1286,7 @@
 #endif
     , WV_NU
     , WV_RNU
+    , WV_VE
 #ifdef FEAT_LINEBREAK
     , WV_NUW
 #endif