aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/logtalk.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-11-07 01:34:28 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-11-07 01:37:30 +0100
commita39bf019580d82f8ca5f9e8d99dd856418ffc491 (patch)
tree9040de854b2065059b7b41ab1c5d099b9174b1a8 /runtime/indent/logtalk.vim
parent599170de8304d74baa3e18df0929330e3773a14d (diff)
downloadrneovim-a39bf019580d82f8ca5f9e8d99dd856418ffc491.tar.gz
rneovim-a39bf019580d82f8ca5f9e8d99dd856418ffc491.tar.bz2
rneovim-a39bf019580d82f8ca5f9e8d99dd856418ffc491.zip
vim-patch:3ec574f2b549
Update runtime files. Includes changing &sw to shiftwidth() for all indent scripts. https://github.com/vim/vim/commit/3ec574f2b549f456f664f689d6da36dc5719aeb9
Diffstat (limited to 'runtime/indent/logtalk.vim')
-rw-r--r--runtime/indent/logtalk.vim12
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/indent/logtalk.vim b/runtime/indent/logtalk.vim
index 99e6ec896b..5b69663e1d 100644
--- a/runtime/indent/logtalk.vim
+++ b/runtime/indent/logtalk.vim
@@ -38,24 +38,24 @@ function! GetLogtalkIndent()
endif
" Check for entity opening directive on previous line
if pline =~ '^\s*:-\s\(object\|protocol\|category\)\ze(.*,$'
- let ind = ind + &sw
+ let ind = ind + shiftwidth()
" Check for clause head on previous line
elseif pline =~ ':-\s*\(%.*\)\?$'
- let ind = ind + &sw
+ let ind = ind + shiftwidth()
" Check for entity closing directive on previous line
elseif pline =~ '^\s*:-\send_\(object\|protocol\|category\)\.\(%.*\)\?$'
- let ind = ind - &sw
+ let ind = ind - shiftwidth()
" Check for end of clause on previous line
elseif pline =~ '\.\s*\(%.*\)\?$'
- let ind = ind - &sw
+ let ind = ind - shiftwidth()
endif
" Check for opening conditional on previous line
if pline =~ '^\s*\([(;]\|->\)' && pline !~ '\.\s*\(%.*\)\?$' && pline !~ '^.*\([)][,]\s*\(%.*\)\?$\)'
- let ind = ind + &sw
+ let ind = ind + shiftwidth()
endif
" Check for closing an unclosed paren, or middle ; or ->
if line =~ '^\s*\([);]\|->\)'
- let ind = ind - &sw
+ let ind = ind - shiftwidth()
endif
return ind
endfunction