2 parents 9675082 + 74430ea commit c16d288Copy full SHA for c16d288
1 file changed
plugin/vdebug.vim
@@ -34,14 +34,16 @@ if !has('python3')
34
finish
35
endif
36
37
-" Nice characters get screwed up on windows
38
-if has('win32') || has('win64')
39
- let g:vdebug_force_ascii = 1
40
-elseif has('multi_byte') == 0
41
42
-else
43
- let g:vdebug_force_ascii = 0
44
-end
+if !exists('g:vdebug_force_ascii')
+ " Nice characters get screwed up on windows
+ if has('win32') || has('win64')
+ let g:vdebug_force_ascii = 1
+ elseif has('multi_byte') == 0
+ else
+ let g:vdebug_force_ascii = 0
45
+ end
46
+endif
47
48
if !exists('g:vdebug_options')
49
let g:vdebug_options = {}
0 commit comments