- Timestamp:
- 06/16/08 03:37:23 (4 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 modified
-
RELEASE_NOTES.txt (modified) (2 diffs)
-
wenv/vim/ftplugin (added)
-
wenv/vim/ftplugin/logtalk.vim (added)
-
wenv/vim/NOTES.txt (modified) (1 diff)
-
wenv/vim/syntax/logtalk.vim (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/RELEASE_NOTES.txt
r4314 r4316 11 11 12 12 13 2.32.0 - June ??, 200813 2.32.0 - June 16, 2008 14 14 15 15 Updated the Logtalk compiler and runtime to use multifile predicates for … … 56 56 "searching" example). Improved the example documentation. 57 57 58 Updated the syntax coloring support for the Vim text editor to properly 59 highlight quoted atoms and strings in the opening directive of parametric 60 objects. Fixed an auto-indentation bug when opening and closing a 61 conditional block in a single line in the last goal a predicate clause 62 body. Thanks to Victor Noel for the bug report. 58 Added a filetype plugin for the Vim text editor. Updated the installation 59 instructions. Updated the syntax coloring support to properly highlight 60 quoted atoms and strings in the opening directive of parametric objects. 61 Fixed an auto-indentation bug when opening and closing a conditional 62 block in a single line in the last goal a predicate clause body. Thanks 63 to Victor Noel for the bug report. 63 64 64 65 -
trunk/wenv/vim/NOTES.txt
r4302 r4316 38 38 39 39 4. Copy the file "indent/logtalk.vim" to the "indent" sub-directory in 40 your VIM installation directory (replacing any existing older file) and 41 add the following lines to your ~/.vimrc file: 40 your VIM installation directory (replacing any existing older file). 41 42 5. Copy the file "ftplugin/logtalk.vim" to the "ftplugin" sub-directory in 43 your VIM installation directory (replacing any existing older file). 44 45 6. Add the following lines to your ~/.vimrc file: 42 46 43 47 syntax on 44 48 filetype indent on 49 filetype plugin on -
trunk/wenv/vim/syntax/logtalk.vim
r4284 r4316 3 3 " Language: Logtalk 4 4 " Maintainer: Paulo Moura <pmoura@logtalk.org> 5 " Last Change: May 26, 20085 " Last Change: June 16, 2008 6 6 7 7 … … 397 397 398 398 let b:current_syntax = "logtalk" 399 400 setlocal ts=4401 setlocal sw=4402 setlocal fdm=syntax403 setlocal fdc=2404 setlocal autoindent
