changeset 147:06f4d2c01fd6

Fix indenting
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 09 Apr 2019 20:19:02 -0700
parents 33cc4af93b44
children fb65725f2872
files autoload/lawrencium.vim
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/autoload/lawrencium.vim	Tue Apr 09 08:15:22 2019 -0700
+++ b/autoload/lawrencium.vim	Tue Apr 09 20:19:02 2019 -0700
@@ -24,11 +24,11 @@
 
 " Shell-slashes the path (opposite of `normalizepath`).
 function! lawrencium#shellslash(path)
-  if exists('+shellslash') && !&shellslash
-    return substitute(a:path, '\v\\', '/', 'g')
-  else
-    return a:path
-  endif
+    if exists('+shellslash') && !&shellslash
+        return substitute(a:path, '\v\\', '/', 'g')
+    else
+        return a:path
+    endif
 endfunction
 
 " Like tempname() but with some control over the filename.