From 889552c8cf075245f2c25ce75a517894fa9964b5 Mon Sep 17 00:00:00 2001 From: Alisue Date: Sun, 31 Jan 2021 14:21:14 +0900 Subject: [PATCH] Fix lint --- autoload/fern_git_status/process.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fern_git_status/process.vim b/autoload/fern_git_status/process.vim index cff92d4..a8e36dd 100644 --- a/autoload/fern_git_status/process.vim +++ b/autoload/fern_git_status/process.vim @@ -70,7 +70,7 @@ endfunction " Git for Windows return slash separated path but the path is " not compatible with fern's slash separated path so normalization " is required -if has("win32") +if has('win32') function! s:normalize_path(path) abort let filepath = fern#internal#filepath#from_slash(a:path) return fern#internal#filepath#to_slash(filepath)