aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2020-12-27 01:43:09 +0100
committerMax Christian Pohle2020-12-27 01:43:09 +0100
commit785fa78f80e79a72f479a1e7ba2fcebe6151f6ba (patch)
treeaca8d4b60abfca814c63a8b2ba9ebb7ed50fa20c
parentd423247bf1fafd5f76b3f56cb82fdd269559b13f (diff)
downloadvim-karlmarks-785fa78f80e79a72f479a1e7ba2fcebe6151f6ba.tar.bz2
vim-karlmarks-785fa78f80e79a72f479a1e7ba2fcebe6151f6ba.zip
Fixed README
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 8ba6d83..1a353ee 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ and extract it inside `~/.vim/pack/coderonline/start/`.
42## Configure optional and additional marks 42## Configure optional and additional marks
43 43
44Here comes some inspiration for additional marks you could enable. Some 44Here comes some inspiration for additional marks you could enable. Some
45are potentially disturbing and were for that reason not pre-configured: 45are potentially disturbing and are not pre-configured for that reason:
46 46
47 let g:karlmarks = '"' " position in buffer when left 47 let g:karlmarks = '"' " position in buffer when left
48 let g:karlmarks .= '{}' " start/end paragraph 48 let g:karlmarks .= '{}' " start/end paragraph
@@ -52,9 +52,9 @@ are potentially disturbing and were for that reason not pre-configured:
52 let g:karlmarks .= "^" " insert mode stopped 52 let g:karlmarks .= "^" " insert mode stopped
53 let g:karlmarks .= "'`" 53 let g:karlmarks .= "'`"
54 54
55but the `g_karlmarks_additional` setting defaults to 55but the `g_karlmarks` setting defaults to
56 56
57 let g:karlmarks_additional = "<>" 57 let g:karlmarks = "<>"
58 58
59to allow easier modification of the last selected block, e.g. reposition the 59to allow easier modification of the last selected block, e.g. reposition the
60start of the block with `m<` and use `gv` to show the new selection. 60start of the block with `m<` and use `gv` to show the new selection.
..