# HG changeset patch # User Ludovic Chabant # Date 1554866342 25200 # Tue Apr 09 20:19:02 2019 -0700 # Node ID 06f4d2c01fd6daa712f9f1eb70f4e4b39a82df44 # Parent 33cc4af93b4458c0521a44c6a5bf5bacb60d2770 Fix indenting diff --git a/autoload/lawrencium.vim b/autoload/lawrencium.vim --- a/autoload/lawrencium.vim +++ b/autoload/lawrencium.vim @@ -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.