<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/vim-ada/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/vim-ada/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 11 Oct 2023 11:25:13 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/vim-ada/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Martin Krischik</title><link>https://sourceforge.net/p/vim-ada/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -80,8 +80,13 @@
 Install from https://github.com/krischik/vim-ada using dein
 (https://github.com/Shougo/dein.vim) or similar:

-{{code|lang=vim| call dein#begin('$HOME/vimfiles/bundles') call
-dein#add('krischik/vim-ada') call dein#end() call dein#install() }}
+    
+    
+       call dein#begin('$HOME/vimfiles/bundles')
+       call dein#add('krischik/vim-ada')
+       call dein#end()
+       call dein#install()
+    

 ## References

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Krischik</dc:creator><pubDate>Wed, 11 Oct 2023 11:25:13 -0000</pubDate><guid>https://sourceforge.net6a960c0981308c25394fd4f32173c4c84aaa0625</guid></item><item><title>Home modified by Martin Krischik</title><link>https://sourceforge.net/p/vim-ada/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -10,11 +10,10 @@
 Contains all files for the new Ada mode. It also has a vim help file which you
 can call with

-{{code|lang=vim|
-
-    help ada.txt. 
-
-}}
+    
+    
+       :help ada.txt.
+    

 Included is:

@@ -29,12 +28,11 @@

 Don't forget to actually activate filetype and syntax support:

-{{code|lang=vim|
-
-    filetype plugin indent on 
-    syntax enable 
-
-}}
+    
+    
+       :filetype plugin indent on
+       :syntax enable
+    

 The Ada mode can be be further extend with the following Scripts:

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Krischik</dc:creator><pubDate>Wed, 11 Oct 2023 11:25:13 -0000</pubDate><guid>https://sourceforge.netde8a5e7d85f6b9914f37f640740b40904f3149f2</guid></item><item><title>Home modified by Martin Krischik</title><link>https://sourceforge.net/p/vim-ada/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,104 @@
-Welcome to your wiki!
+[TOC]

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+# Ada Bundle

-The wiki uses [Markdown](/p/vim-ada/wiki/markdown_syntax/) syntax.
+This is a maintained mirror of
+http://www.vim.org/scripts/script.php?script_id=1609

-[[members limit=20]]
-[[download_button]]
+## Description
+
+Contains all files for the new Ada mode. It also has a vim help file which you
+can call with
+
+{{code|lang=vim|
+
+    help ada.txt. 
+
+}}
+
+Included is:
+
+  * Syntax highlight 
+  * Auto indenting 
+  * Tag searching 
+  * Classic code completion 
+  * Omni code completion 
+  * Online help 
+
+For some functionality you need a ctags program.
+
+Don't forget to actually activate filetype and syntax support:
+
+{{code|lang=vim|
+
+    filetype plugin indent on 
+    syntax enable 
+
+}}
+
+The Ada mode can be be further extend with the following Scripts:
+
+Rainbow Parenthesis
+
+     vimscript#1561, https://github.com/krischik/vim-rainbow-parenthesis.git 
+Numbered Backups
+
+     vimscript#1537, https://github.com/krischik/vim-backup.git 
+nerd_comments.vim
+
+     vimscript#1218 
+matchit.vim
+
+     vimscript#39 
+taglist.vim
+
+     vimscript#273 
+
+The GNU Ada project [3] offers ready patched binary rpm's including the Ada-
+Mode, all the scripts mentioned above and Ada aware exuberant Ctags for easy
+installation.
+
+Changes with official version, included in Vim/Neovim:
+
+  * Add support for both Rainbow Parenthesis and Rainbow Parentheses Improved plugin. 
+  * Removed all tags commands which are now in base Vim (like jump to tag). 
+  * Added support for Ale plugin. 
+  * Updated help file. 
+  * Removed support for Dec Ada compiler. 
+  * Fixed and extended support for Vim sessions on loading GNAT project files (it is possible to enable or disable it). 
+  * Added support for Ada 2012. 
+  * Updated omni completion function: now it should be a bit faster and show items definitions too. 
+  * Removed support for GNAT xref. 
+  * Some other fixes for bugs. 
+
+If you want fully extend your experience with Vim/NeoVim as Ada IDE, I
+recommend to use Vim-Ada bundle: https://github.com/thindil/vim-ada
+
+All propositions and problems about this version of vim-ada, please report
+here, not to the maintainers of Vim or NeoVim.
+
+## Installation
+
+Install from https://github.com/krischik/vim-ada using dein
+(https://github.com/Shougo/dein.vim) or similar:
+
+{{code|lang=vim| call dein#begin('$HOME/vimfiles/bundles') call
+dein#add('krischik/vim-ada') call dein#end() call dein#install() }}
+
+## References
+
+Ada Bundle  Vim-Script |
+https://www.vim.org/scripts/script.php?script_id=1609  
+---|---  
+Source |  https://github.com/krischik/vim-ada  
+Wiki |  https://github.com/krischik/vim-ada/wiki  
+Releases |  https://github.com/krischik/vim-ada/releases  
+Issues |  https://github.com/krischik/vim-ada/issues  
+Discussions |  https://github.com/krischik/vim-ada/discussions  
+  
+## Comments
+
+/* vim: set textwidth=0 wrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab
+: */ /* vim: set filetype=mediawiki fileencoding=utf8 fileformat=unix
+foldmethod=marker : */ /* vim: set nospell spelllang=en_gb : */
+
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Krischik</dc:creator><pubDate>Wed, 11 Oct 2023 11:25:13 -0000</pubDate><guid>https://sourceforge.net11f2c42d02c9a544fa7192b4942fc0489996f660</guid></item><item><title>Home modified by Martin Krischik</title><link>https://sourceforge.net/p/vim-ada/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/vim-ada/wiki/markdown_syntax/" rel="nofollow"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
	&lt;ul class="md-users-list"&gt;
		&lt;li&gt;&lt;a href="/u/krischik/"&gt;Martin Krischik&lt;/a&gt; (admin)&lt;/li&gt;
		
	&lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-65268616653860e445d971e5" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Krischik</dc:creator><pubDate>Wed, 11 Oct 2023 11:25:12 -0000</pubDate><guid>https://sourceforge.nete37634b44618107752ff5c420926574c82051be5</guid></item></channel></rss>