]> git.madduck.net Git - etc/vim.git/blobdiff - test/map.vader

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add tests for preamble fold of python-mode style #213
[etc/vim.git] / test / map.vader
index ea96182088c3489a03c005f282134e14eef5da43..e6d2dffdf4b63c3c40579aa8847a2421aedfd717 100644 (file)
@@ -1,46 +1,46 @@
-Given mkd;
+Given markdown;
 a <http://b> c
 
 Execute (gx autolink):
   let b:url = 'http://b'
   let b:line = getline(1)
-  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/mkd.vim', 'Markdown_GetUrlForPosition')
+  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/markdown.vim', 'Markdown_GetUrlForPosition')
   AssertEqual b:func(1, match(b:line, 'a') + 1), ''
   AssertEqual b:func(1, match(b:line, '<') + 1), b:url
   AssertEqual b:func(1, match(b:line, 'h') + 1), b:url
   AssertEqual b:func(1, match(b:line, '>') + 1), b:url
   AssertEqual b:func(1, match(b:line, 'c') + 1), ''
 
-Given mkd;
+Given markdown;
 a http://b.bb c
 
 Execute (gx implicit autolink):
   let b:url = 'http://b.bb'
   let b:line = getline(1)
-  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/mkd.vim', 'Markdown_GetUrlForPosition')
+  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/markdown.vim', 'Markdown_GetUrlForPosition')
   AssertEqual b:func(1, match(b:line, 'a') + 1), ''
   AssertEqual b:func(1, match(b:line, 'h') + 1), b:url
   AssertEqual b:func(1, match(b:line, 'c') + 1), ''
 
-Given mkd;
+Given markdown;
 [a]: http://b "c"
 
 Execute (gx link reference definition):
   let b:url = 'http://b'
   let b:line = getline(1)
-  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/mkd.vim', 'Markdown_GetUrlForPosition')
+  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/markdown.vim', 'Markdown_GetUrlForPosition')
   " TODO would be cool if all of the following gave the link.
   AssertEqual b:func(1, match(b:line, 'a') + 1), ''
   AssertEqual b:func(1, match(b:line, 'h') + 1), b:url
   AssertEqual b:func(1, match(b:line, 'c') + 1), ''
 
-Given mkd;
+Given markdown;
 a [b](c) d
 
 Execute (gx autolink):
   let b:url = 'c'
   let b:line = getline(1)
-  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/mkd.vim', 'Markdown_GetUrlForPosition')
+  let b:func = Markdown_GetFunc('vim-markdown/ftplugin/markdown.vim', 'Markdown_GetUrlForPosition')
   AssertEqual b:func(1, match(b:line, 'a') + 1), ''
   AssertEqual b:func(1, match(b:line, '[') + 1), b:url
   AssertEqual b:func(1, match(b:line, 'b') + 1), b:url
@@ -50,7 +50,7 @@ Execute (gx autolink):
   AssertEqual b:func(1, match(b:line, ')') + 1), b:url
   AssertEqual b:func(1, match(b:line, 'd') + 1), ''
 
-Given mkd;
+Given markdown;
 # a
 
 b
@@ -66,7 +66,7 @@ Execute (]] same level):
   normal [[
   AssertEqual line('.'), 1
 
-Given mkd;
+Given markdown;
 # a
 
 b
@@ -82,7 +82,7 @@ Execute (]] different levels level):
   normal [[
   AssertEqual line('.'), 1
 
-Given mkd;
+Given markdown;
 # a
 
 b
@@ -102,7 +102,7 @@ Execute (][ different levels level):
   normal []
   AssertEqual line('.'), 1
 
-Given mkd;
+Given markdown;
 # a
 
 b
@@ -113,7 +113,7 @@ Execute (]c):
   normal ]c
   AssertEqual line('.'), 1
 
-Given mkd;
+Given markdown;
 # a
 
 Execute (Toc does not set nomodifiable on other files):