Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autoload文件夹中util.vim中的2个md5应改为md5sum #5

Open
zbhover opened this issue Jul 28, 2023 · 1 comment
Open

autoload文件夹中util.vim中的2个md5应改为md5sum #5

zbhover opened this issue Jul 28, 2023 · 1 comment

Comments

@zbhover
Copy link

zbhover commented Jul 28, 2023

function! util#md5(s)
if executable('md5')
return substitute(system('echo -n "'.a:s.'" | md5'), '\n', '', 'g')

这段代码中的md5不是可执行文件,应改为md5sum

function! util#md5(s)
if executable('md5sum')
return substitute(system('echo -n "'.a:s.'" | md5sum'), '\n', '', 'g')

我的系统是deepin v23

@bujnlc8
Copy link
Owner

bujnlc8 commented Jul 28, 2023

已修复 #6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants