aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Le <solnovus@gmail.com>2011-01-19 14:23:28 -0800
committerKevin Le <solnovus@gmail.com>2011-01-19 14:23:28 -0800
commit83b661e864059c980f62815aa45883cdfb8e801a (patch)
tree91872bff0e3fddcd00204bca3eff2685ae342a7f
parent5331c9c2bc443a59e5d8f8d07ab12b58d8f33e80 (diff)
reformatted readme to reST
-rw-r--r--README.rst (renamed from README)81
1 files changed, 51 insertions, 30 deletions
diff --git a/README b/README.rst
index 0d1a41e..deaffab 100644
--- a/README
+++ b/README.rst
@@ -1,16 +1,16 @@
-created by
-Ingo Karkat
+====================
+CamelCaseMotion.vim
+====================
-script type
-utility
+Created By Ingo Karkat (https://github.com/inkarkat)
-description
-DESCRIPTION
+Description
+============
Vim provides many built-in motions, e.g. to move to the next word, or end of
the current word. Most programming languages use either CamelCase
("anIdentifier") or underscore_notation ("an_identifier") naming conventions
for identifiers. The best way to navigate inside those identifiers using Vim
-built-in motions is the [count]f{char} motion, i.e. f{uppercase-char} or f_,
+built-in motions is the [count]f{char} motion, i.e. f{uppercase-char} or f\_,
respectively. But we can make this easier:
This script defines motions ',w', ',b' and ',e' (similar to 'w', 'b', 'e'),
@@ -27,58 +27,77 @@ operator-pending and visual mode. Analog to that, this script defines inner
"word" motions 'i,w', 'i,b' and 'i,e', which select the "word" (or multiple
"words" if a [count] is given) where the cursor is located.
-USAGE
+Usage
+======
Use the new motions',w',',b' and ',e' in normal mode, operator-pending mode (cp.
:help operator), and visual mode. For example, type 'bc,w' to change 'Camel' in
'CamelCase' to something else.
-EXAMPLE: motions
-Given the following CamelCase identifiers in a source code fragment:
+**Motions Example**
+
+Given the following CamelCase identifiers in a source code fragment::
+
set Script31337PathAndNameWithoutExtension11=%~dpn0
set Script31337PathANDNameWITHOUTExtension11=%~dpn0
-and the corresponding identifiers in underscore_notation:
+
+and the corresponding identifiers in underscore_notation::
+
set script_31337_path_and_name_without_extension_11=%~dpn0
set SCRIPT_31337_PATH_AND_NAME_WITHOUT_EXTENSION_11=%~dpn0
,w moves to ([x] is cursor position): [s]et, [s]cript, [3]1337, [p]ath,
- [a]nd, [n]ame, [w]ithout, [e]xtension, [1]1, [d]pn0, dpn[0], [s]et
+[a]nd, [n]ame, [w]ithout, [e]xtension, [1]1, [d]pn0, dpn[0], [s]et
+
,b moves to: [d]pn0, [1]1, [e]xtension, [w]ithout, ...
+
,e moves to: se[t], scrip[t], 3133[7], pat[h], an[d], nam[e], withou[t],
- extensio[n], 1[1], dpn[0]
+extensio[n], 1[1], dpn[0]
+
+**Inner Motions Example**
+Given the following identifier, with the cursor positioned at [x]::
-EXAMPLE: inner motions
-Given the following identifier, with the cursor positioned at [x]:
script_31337_path_and_na[m]e_without_extension_11
-v3i,w selects script_31337_path_and_[name_without_extension_]11
+v3i,w selects script_31337_path_and_[name_without_extension\_]11
+
v3i,b selects script_31337_[path_and_name]_without_extension_11
+
v3i,e selects script_31337_path_and_[name_without_extension]_11
+
Instead of visual mode, you can also use c3i,w to change, d3i,w to delete,
gU3i,w to upper-case, and so on.
-Source: Based on http://vim.wikia.com/wiki/Moving_through_camel_case_words by
-Anthony Van Ham.
+**Source**
+
+Based on http://vim.wikia.com/wiki/Moving_through_camel_case_words by Anthony Van Ham.
-install details
-INSTALLATION
+Installation
+=============
This script is packaged as a vimball. If you have the "gunzip" decompressor
-in your PATH, simply edit the *.vba.gz package in Vim; otherwise, decompress
+in your PATH, simply edit the \*.vba.gz package in Vim; otherwise, decompress
the archive first, e.g. using WinZip. Inside Vim, install by sourcing the
-vimball or via the :UseVimball command.
+vimball or via the ``:UseVimball`` command.
+
+::
+
vim camelcasemotion.vba.gz
:so %
-To uninstall, use the :RmVimball command.
-DEPENDENCIES
-- Requires Vim 7.0 or higher.
+To uninstall, use the ``:RmVimball`` command.
+
+**Dependencies**
+
+Requires Vim 7.0 or higher.
+
+**Configuration**
-CONFIGURATION
If you want to use different mappings, map your keys to the
-<Plug>CamelCaseMotion_? mapping targets _before_ sourcing this script (e.g. in
+``<Plug>CamelCaseMotion_?`` mapping targets _before_ sourcing this script (e.g. in
your .vimrc).
-EXAMPLE: Replace the default 'w', 'b' and 'e' mappings instead of defining
-additional mappings',w', ',b' and ',e':
+**Example**: Replace the default 'w', 'b' and 'e' mappings instead of defining
+additional mappings',w', ',b' and ',e'::
+
map <silent> w <Plug>CamelCaseMotion_w
map <silent> b <Plug>CamelCaseMotion_b
map <silent> e <Plug>CamelCaseMotion_e
@@ -86,7 +105,9 @@ additional mappings',w', ',b' and ',e':
sunmap b
sunmap e
-EXAMPLE: Replace default 'iw' text-object and define 'ib' and 'ie' motions:
+**Example**: Replace default 'iw' text-object and define 'ib' and 'ie'
+motions::
+
omap <silent> iw <Plug>CamelCaseMotion_iw
xmap <silent> iw <Plug>CamelCaseMotion_iw
omap <silent> ib <Plug>CamelCaseMotion_ib