summaryrefslogtreecommitdiffstats
path: root/.vim/doc
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xssn.at>2010-12-04 23:01:02 +0100
committerFlorian Pritz <bluewind@xssn.at>2010-12-04 23:01:02 +0100
commit70f0ef31d89e361cb7c37de9b1b73a829c41c9a4 (patch)
treece5b4a5c9c20732e28676c913bca97ef26669360 /.vim/doc
parentaaeadcdc572d127939e239a93bec09fa1a7475a3 (diff)
downloaddotfiles-70f0ef31d89e361cb7c37de9b1b73a829c41c9a4.tar.gz
dotfiles-70f0ef31d89e361cb7c37de9b1b73a829c41c9a4.tar.xz
vim: add new plugins; add movement keymappings
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to '.vim/doc')
-rw-r--r--.vim/doc/rainbow_parenthsis.txt88
-rw-r--r--.vim/doc/tags32
2 files changed, 120 insertions, 0 deletions
diff --git a/.vim/doc/rainbow_parenthsis.txt b/.vim/doc/rainbow_parenthsis.txt
new file mode 100644
index 0000000..c8f15ec
--- /dev/null
+++ b/.vim/doc/rainbow_parenthsis.txt
@@ -0,0 +1,88 @@
+*rainbow_parenthsis.txt* Colorize Parenthsis
+
+Author: Martin Krischik (krischik@users.sourceforge.net)
+ John Gilmore
+ Luc Hermitte (hermitte@free.fr)
+
+For Vim version 7.0 and above
+Last change: 09 Oct, 2007
+
+1. Overview |rainbow_parenthsis-about|
+2. Commands |rainbow_parenthsis-commands|
+2. Functions |rainbow_parenthsis-functions|
+3. Configuration |rainbow_parenthsis-configure|
+
+==============================================================================
+ *rainbow_parenthsis-about*
+1. Overview~
+
+rainbow_parenthsis allows you to view the contents of a file in real time. When a
+change in the file is detected, the window displaying the file is updated and
+repositioned to the last line.
+
+The update is not exactly real time, but usually updates within a few seconds
+of the file change. The update interval of the output is determined by the
+|updatetime| parameter, along with continued usage of Vim. This means that if
+you are not doing any editing or motion commands, the preview window will not
+be updated. See |CursorHold| for more information.
+
+Because this window becomes the preview window, it will accept all related
+commands. For more information, see |preview-window|.
+
+==============================================================================
+ *rainbow_parenthsis-commands*
+2. Commands~
+
+The rainbow_parenthsis plugin does not create any automatic mappings, but provides the
+following commands:
+
+ *:ToggleRaibowParenthesis*
+|:ToggleRaibowParenthesis|
+ Manualy start rainbow parenthesis.. If no bracket type has been loaded
+ yet then round brackets will be loaded by default.
+
+==============================================================================
+ *rainbow_parenthsis-functions*
+2. Functions~
+
+|rainbow_parenthsis#Activate()| *rainbow_parenthsis#Activate()*
+ Acticate the loaded parenthsis
+
+|rainbow_parenthsis#Clear()| *rainbow_parenthsis#Clear()*
+ Deactivate rainbow parenthesis
+
+|rainbow_parenthsis#Toggle()| *rainbow_parenthsis#Toggle()*
+ Toogles rainbow parenthesis status. If no bracket type has been loaded
+ yet then round brackets will be loaded.
+
+|rainbow_parenthsis#LoadRound()| *rainbow_parenthsis#LoadRound()*
+ Load syntax for parenthesis or round brackets '(' ')' - This will be
+ loaded by default if nothing else has been loaded.
+
+|rainbow_parenthsis#LoadSquare()| *rainbow_parenthsis#LoadSquare()*
+ Load syntax for box brackets or square brackets '[' ']'
+
+|rainbow_parenthsis#LoadBraces()| *rainbow_parenthsis#LoadBraces()*
+ Load syntax for curly brackets or braces '{' '}'
+
+|rainbow_parenthsis#LoadChevrons()| *rainbow_parenthsis#LoadChevrons()*
+ Load syntax for angle brackets or chevrons '<' '>'
+
+==============================================================================
+ *rainbow_parenthsis-configure*
+3. Configuration~
+
+The best way to use rainbow_parenthsis is to add it to sytax plugin of any
+filetype used:
+>
+ >if exists("g:btm_rainbow_color") && g:btm_rainbow_color
+ > call rainbow_parenthsis#LoadSquare ()
+ > call rainbow_parenthsis#LoadRound ()
+ > call rainbow_parenthsis#Activate ()
+ >endif
+>
+This way you don't need to load all options available but only those which
+are of importance to the actual filetype.
+
+==============================================================================
+vim:textwidth=78:tabstop=8:noexpandtab:filetype=help
diff --git a/.vim/doc/tags b/.vim/doc/tags
index 93b871e..8bc6648 100644
--- a/.vim/doc/tags
+++ b/.vim/doc/tags
@@ -1,6 +1,7 @@
'snippets' snipMate.txt /*'snippets'*
.snippet snipMate.txt /*.snippet*
.snippets snipMate.txt /*.snippets*
+:ToggleRaibowParenthesis rainbow_parenthsis.txt /*:ToggleRaibowParenthesis*
Align-copyright Align.txt /*Align-copyright*
ExtractSnips() snipMate.txt /*ExtractSnips()*
ExtractSnipsFile() snipMate.txt /*ExtractSnipsFile()*
@@ -90,12 +91,28 @@ alignmap-tt Align.txt /*alignmap-tt*
alignmap-t~ Align.txt /*alignmap-t~*
alignmaps Align.txt /*alignmaps*
alignusage Align.txt /*alignusage*
+cs surround.txt /*cs*
+ds surround.txt /*ds*
g:snippets_dir snipMate.txt /*g:snippets_dir*
g:snips_author snipMate.txt /*g:snips_author*
+i_CTRL-G_S surround.txt /*i_CTRL-G_S*
+i_CTRL-G_s surround.txt /*i_CTRL-G_s*
i_CTRL-R_<Tab> snipMate.txt /*i_CTRL-R_<Tab>*
list-snippets snipMate.txt /*list-snippets*
multi_snip snipMate.txt /*multi_snip*
otl2html vo_readme.txt /*otl2html*
+rainbow_parenthsis#Activate() rainbow_parenthsis.txt /*rainbow_parenthsis#Activate()*
+rainbow_parenthsis#Clear() rainbow_parenthsis.txt /*rainbow_parenthsis#Clear()*
+rainbow_parenthsis#LoadBraces() rainbow_parenthsis.txt /*rainbow_parenthsis#LoadBraces()*
+rainbow_parenthsis#LoadChevrons() rainbow_parenthsis.txt /*rainbow_parenthsis#LoadChevrons()*
+rainbow_parenthsis#LoadRound() rainbow_parenthsis.txt /*rainbow_parenthsis#LoadRound()*
+rainbow_parenthsis#LoadSquare() rainbow_parenthsis.txt /*rainbow_parenthsis#LoadSquare()*
+rainbow_parenthsis#Toggle() rainbow_parenthsis.txt /*rainbow_parenthsis#Toggle()*
+rainbow_parenthsis-about rainbow_parenthsis.txt /*rainbow_parenthsis-about*
+rainbow_parenthsis-commands rainbow_parenthsis.txt /*rainbow_parenthsis-commands*
+rainbow_parenthsis-configure rainbow_parenthsis.txt /*rainbow_parenthsis-configure*
+rainbow_parenthsis-functions rainbow_parenthsis.txt /*rainbow_parenthsis-functions*
+rainbow_parenthsis.txt rainbow_parenthsis.txt /*rainbow_parenthsis.txt*
snipMate snipMate.txt /*snipMate*
snipMate-$# snipMate.txt /*snipMate-$#*
snipMate-${#:} snipMate.txt /*snipMate-${#:}*
@@ -117,6 +134,16 @@ snipMate.txt snipMate.txt /*snipMate.txt*
snippet snipMate.txt /*snippet*
snippet-syntax snipMate.txt /*snippet-syntax*
snippets snipMate.txt /*snippets*
+surround surround.txt /*surround*
+surround-author surround.txt /*surround-author*
+surround-customizing surround.txt /*surround-customizing*
+surround-issues surround.txt /*surround-issues*
+surround-mappings surround.txt /*surround-mappings*
+surround-replacements surround.txt /*surround-replacements*
+surround-targets surround.txt /*surround-targets*
+surround.txt surround.txt /*surround.txt*
+vS surround.txt /*vS*
+vgS surround.txt /*vgS*
vimoutliner vo_readme.txt /*vimoutliner*
vo vo_readme.txt /*vo*
vo-activities vo_readme.txt /*vo-activities*
@@ -147,3 +174,8 @@ vo-troubleshooting vo_readme.txt /*vo-troubleshooting*
vo-updating vo_readme.txt /*vo-updating*
vo-version vo_readme.txt /*vo-version*
vo_readme.txt vo_readme.txt /*vo_readme.txt*
+vs surround.txt /*vs*
+yS surround.txt /*yS*
+ySS surround.txt /*ySS*
+ys surround.txt /*ys*
+yss surround.txt /*yss*