X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/ae271c7a4532c675f9c052021918fc25966a149a..2f1103bcc483bc52c733d40fa55f6b03f79d3847:/test/map.vader?ds=inline

diff --git a/test/map.vader b/test/map.vader
index ea96182..92947f5 100644
--- a/test/map.vader
+++ b/test/map.vader
@@ -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
@@ -112,16 +112,3 @@ Execute (]c):
   AssertEqual line('.'), 3
   normal ]c
   AssertEqual line('.'), 1
-
-Given mkd;
-# a
-
-Execute (Toc does not set nomodifiable on other files):
-  " Sanity check.
-  Assert &modifiable
-
-  :Toc
-  :lclose
-  :edit a
-
-  Assert &modifiable