From d74c2928a18b55dec3531d87279779fb80e6daf3 Mon Sep 17 00:00:00 2001 From: mattn Date: Tue, 9 Mar 2010 02:48:16 +0900 Subject: [PATCH] no need to filter. --- zencoding.vim | 7 ------- 1 file changed, 7 deletions(-) diff --git a/zencoding.vim b/zencoding.vim index f635af5..5ef10ce 100644 --- a/zencoding.vim +++ b/zencoding.vim @@ -1621,13 +1621,6 @@ endfunction function! s:get_content_from_url(url) silent! new silent! exec '0r!curl -s -L "'.substitute(a:url, '#.*', '', '').'"' - if executable('nkf') - if &enc == 'utf-8' - silent! %!nkf -X8 - elseif &enc == 'cp932' - silent! %!nkf -Xs - endif - endif let ret = join(getline(1, '$'), "\n") silent! bw! return ret