Changeset 4301
- Timestamp:
- 06/03/08 04:52:56 (4 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
RELEASE_NOTES.txt (modified) (1 diff)
-
wenv/vim/indent/logtalk.vim (modified) (2 diffs)
-
wenv/vim/NOTES.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/RELEASE_NOTES.txt
r4300 r4301 38 38 Updated the syntax coloring support for the Vim text editor to properly 39 39 highlight quoted atoms and strings in the opening directive of parametric 40 objects. 40 objects. Fixed an auto-indentation bug when opening and closing a 41 conditional block in a single line in the last goal a predicate clause 42 body. Thanks to Victor Noel for the bug report. 41 43 42 44 -
trunk/wenv/vim/indent/logtalk.vim
r3072 r4301 1 1 " Maintainer: Paulo Moura <pmoura@logtalk.org> 2 " Revised on: 200 6.10.222 " Revised on: 2008.06.02 3 3 " Language: Logtalk 4 4 … … 51 51 endif 52 52 " Check for opening conditional on previous line 53 if pline =~ '^\s*\([(;]\|->\)' 53 if pline =~ '^\s*\([(;]\|->\)' && pline !~ '\.\s*\(%.*\)\?$' 54 54 let ind = ind + &sw 55 55 endif -
trunk/wenv/vim/NOTES.txt
r4297 r4301 8 8 9 9 This directory contains files that provides syntax highlighting, code 10 folding, and code completion for editing Logtalk source files with the11 text editor Vim 7.0 or later version:10 folding, code completion, and auto-indentation for editing Logtalk 11 source files with the text editor Vim 7.0 or later version: 12 12 13 13 http://www.vim.org/
