aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Le <solnovus@gmail.com>2015-11-23 14:54:46 -0800
committerKevin Le <solnovus@gmail.com>2015-11-23 15:07:14 -0800
commitb3995f5ee908fa184af877b5da1a0d274af55bb2 (patch)
tree2083ef763f5d544b0eaafc19b93ac89fdd22ee57
parent32ba8b08b4923acaf4564b581fbff88e1dff719d (diff)
markdown readme
-rw-r--r--README.md (renamed from README.rst)134
1 files changed, 76 insertions, 58 deletions
diff --git a/README.rst b/README.md
index bb86391..462eb20 100644
--- a/README.rst
+++ b/README.md
@@ -1,11 +1,10 @@
-====================
CamelCaseMotion.vim
====================
-Created By Ingo Karkat (https://github.com/inkarkat)
+Created By [Ingo Karkat](https://github.com/inkarkat)
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
@@ -29,64 +28,84 @@ given) where the cursor is located.
Usage
======
-To use the default mappings, add the following to your vimrc::
- camelcasemotion#CreateMotionMappings('<leader>')
+To use the default mappings, add the following to your vimrc:
+
+```vim
+camelcasemotion#CreateMotionMappings('<leader>')
+```
If you want to use different mappings, map your keys to the
<Plug>CamelCaseMotion_? mapping targets your vimrc).
-EXAMPLE: Map to w, b and e mappings::
- map <silent> w <Plug>CamelCaseMotion_w
- map <silent> b <Plug>CamelCaseMotion_b
- map <silent> e <Plug>CamelCaseMotion_e
- map <silent> ge <Plug>CamelCaseMotion_ge
- sunmap w
- sunmap b
- sunmap e
- sunmap ge
-
-EXAMPLE: Map iw, ib and ie motions::
- omap <silent> iw <Plug>CamelCaseMotion_iw
- xmap <silent> iw <Plug>CamelCaseMotion_iw
- omap <silent> ib <Plug>CamelCaseMotion_ib
- xmap <silent> ib <Plug>CamelCaseMotion_ib
- omap <silent> ie <Plug>CamelCaseMotion_ie
- xmap <silent> ie <Plug>CamelCaseMotion_ie
+EXAMPLE: Map to w, b and e mappings:
+
+```vim
+map <silent> w <Plug>CamelCaseMotion_w
+map <silent> b <Plug>CamelCaseMotion_b
+map <silent> e <Plug>CamelCaseMotion_e
+map <silent> ge <Plug>CamelCaseMotion_ge
+sunmap w
+sunmap b
+sunmap e
+sunmap ge
+```
+
+EXAMPLE: Map iw, ib and ie motions:
+
+```vim
+omap <silent> iw <Plug>CamelCaseMotion_iw
+xmap <silent> iw <Plug>CamelCaseMotion_iw
+omap <silent> ib <Plug>CamelCaseMotion_ib
+xmap <silent> ib <Plug>CamelCaseMotion_ib
+omap <silent> ie <Plug>CamelCaseMotion_ie
+xmap <silent> ie <Plug>CamelCaseMotion_ie
+```
Most commonly motions are '<leader>w', '<leader>b' and '<leader>e', all of which can
-be used in normal mode, operator-pending mode (cp. :help operator), and visual
+be used in normal mode, operator-pending mode (cp. `:help operator`), and visual
mode. For example, type 'bc<leader>w' to change 'Camel' in 'CamelCase' to
something else.
-The ``<leader>`` string is defined with the ``mapleader`` variable in vim, and
-defaults to the backslash character (``\``). Therefore, the motions defined by
+The `<leader>` string is defined with the `mapleader` variable in vim, and
+defaults to the backslash character (`\\`). Therefore, the motions defined by
this plugin would resolve to '\\w', '\\b' and '\\e'. Some vim users prefer to use
-the comma key (``,``), which you may have already defined in your vimrc. To
-check your current mapleader, execute::
+the comma key (`,`), which you may have already defined in your vimrc. To
+check your current mapleader, execute:
- :let mapleader
+```vim
+:let mapleader
+```
-If you get an error, you are still using the default (``\``). If you wish to
-define a new mapleader, try::
+If you get an error, you are still using the default (`\\`). If you wish to
+define a new mapleader, try:
- :let mapleader = "your_new_mapleader_string"
+```vim
+:let mapleader = "your_new_mapleader_string"
+```
-Drop the ``:`` if you are defining the mapleader in your vimrc. For more
-information about mapleader, check out::
+Drop the `:` if you are defining the mapleader in your vimrc. For more
+information about mapleader, check out:
- :help mapleader
+```vim
+:help mapleader
+```
-**Motions Example**
+Motions Example
+---------------
-Given the following CamelCase identifiers in a source code fragment::
+Given the following CamelCase identifiers in a source code fragment:
- set Script31337PathAndNameWithoutExtension11=%~dpn0
- set Script31337PathANDNameWITHOUTExtension11=%~dpn0
+```
+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
+```
+set script_31337_path_and_name_without_extension_11=%~dpn0
+set SCRIPT_31337_PATH_AND_NAME_WITHOUT_EXTENSION_11=%~dpn0
+```
<leader>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
@@ -96,10 +115,13 @@ and the corresponding identifiers in underscore_notation::
<leader>e moves to: se[t], scrip[t], 3133[7], pat[h], an[d], nam[e], withou[t],
extensio[n], 1[1], dpn[0]
-**Inner Motions Example**
-Given the following identifier, with the cursor positioned at [x]::
+Inner Motions Example
+---------------------
+Given the following identifier, with the cursor positioned at [x]:
- script_31337_path_and_na[m]e_without_extension_11
+```
+script_31337_path_and_na[m]e_without_extension_11
+```
v3i<leader>w selects script_31337_path_and_[name_without_extension\_]11
@@ -110,24 +132,20 @@ v3i<leader>e selects script_31337_path_and_[name_without_extension]_11
Instead of visual mode, you can also use c3i<leader>w to change, d3i<leader>w
to delete, gU3i<leader>w to upper-case, and so on.
-**Source**
+Source
+------
-Based on http://vim.wikia.com/wiki/Moving_through_camel_case_words by Anthony Van Ham.
+Based on [Moving through camel case words](http://vim.wikia.com/wiki/Moving_through_camel_case_words) by Anthony Van Ham.
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
-the archive first, e.g. using WinZip. Inside Vim, install by sourcing the
-vimball or via the ``:UseVimball`` command.
-
-::
-
- vim camelcasemotion.vba.gz
- :so %
+------------
+If you're using [Vundle](https://github.com/VundleVim/Vundle.vim),
+just add `Plugin 'bkad/CamelCaseMotion'` to your .vimrc and run `:PluginInstall`.
-To uninstall, use the ``:RmVimball`` command.
+If you're using [pathogen](https://github.com/tpope/vim-pathogen),
+add this repo to your bundle directory.
-**Dependencies**
+Dependencies
+------------
Requires Vim 7.0 or higher.