Skip to content
Snippets Groups Projects
Unverified Commit 407205e5 authored by nekowasabi's avatar nekowasabi Committed by GitHub
Browse files

Fix: barbled multibyte text(exe. Japanese).

parent 874f7dd4
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,9 @@ if s:is_win
" Use utf-8 for fzf.vim commands
" Return array of shell commands for cmd.exe
function! s:enc_to_cp(str)
if s:is_win && has('gui')
return iconv(a:str, 'utf-8', &encoding)
endif
if !has('iconv')
return a:str
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment