From 520470a9d6afa273294848bc31e9ddfabe130434 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 16 Jun 2005 21:59:56 +0000 Subject: updated for version 7.0086 --- runtime/indent/vim.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/indent/vim.vim') diff --git a/runtime/indent/vim.vim b/runtime/indent/vim.vim index c96298de3..5f66571bc 100644 --- a/runtime/indent/vim.vim +++ b/runtime/indent/vim.vim @@ -1,7 +1,7 @@ " Vim indent file " Language: Vim script " Maintainer: Bram Moolenaar -" Last Change: 2005 Feb 25 +" Last Change: 2005 Jun 16 " Only load this indent file when no other was loaded. if exists("b:did_indent") @@ -51,8 +51,8 @@ function GetVimIndent() endif " If the previous line contains an "end" after a pipe, but not in an ":au" - " command. - if getline(lnum) =~ '|\s*\(ene\@!\)' && getline(lnum) !~ '^\s*au\%[tocmd]' + " command. And not when there is a backslash before the pipe. + if getline(lnum) =~ '[^\\]|\s*\(ene\@!\)' && getline(lnum) !~ '^\s*au\%[tocmd]' let ind = ind - &sw endif -- cgit v1.2.3