]> git.madduck.net Git - etc/vim.git/commitdiff

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:

swap out mkd, successfully...
authorYue Xin <yuecn41@gmail.com>
Sun, 16 Aug 2015 11:50:10 +0000 (19:50 +0800)
committeryuexin <yuecn41@gmail.com>
Wed, 2 Sep 2015 10:14:10 +0000 (18:14 +0800)
Signed-off-by: yuexin <yuecn41@gmail.com>
Makefile
README.md
after/ftplugin/markdown.vim [moved from after/ftplugin/mkd.vim with 100% similarity]
ftdetect/markdown.vim [moved from ftdetect/mkd.vim with 100% similarity]
ftplugin/markdown.vim [moved from ftplugin/mkd.vim with 100% similarity]
indent/markdown.vim [moved from indent/mkd.vim with 90% similarity]
registry/markdown.yaml [new file with mode: 0644]
registry/mkd.yaml [deleted file]
syntax/markdown.vim [moved from syntax/mkd.vim with 100% similarity]
test/map.vader
test/syntax.vader

index a39492a1bab88ab9e036205b3401b9e842b30cf2..d929849deacb4e2d139bfeb14d771318b309d290 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,12 +6,12 @@ all:
 
 install:
        mkdir -pv ${ADDONS}/ftdetect
-       cp -v ftdetect/mkd.vim ${ADDONS}/ftdetect/mkd.vim
+       cp -v ftdetect/markdown.vim ${ADDONS}/ftdetect/markdown.vim
        mkdir -pv ${ADDONS}/ftplugin
-       cp -v ftplugin/mkd.vim ${ADDONS}/ftplugin/mkd.vim
+       cp -v ftplugin/markdown.vim ${ADDONS}/ftplugin/markdown.vim
        mkdir -pv ${ADDONS}/syntax
-       cp -v syntax/mkd.vim ${ADDONS}/syntax/mkd.vim
+       cp -v syntax/markdown.vim ${ADDONS}/syntax/markdown.vim
        mkdir -pv ${ADDONS}/after/ftplugin
-       cp -v after/ftplugin/mkd.vim ${ADDONS}/after/ftplugin/mkd.vim
+       cp -v after/ftplugin/markdown.vim ${ADDONS}/after/ftplugin/markdown.vim
        mkdir -pv ${REGISTRY}
-       cp -v registry/mkd.yaml ${REGISTRY}/mkd.yaml
+       cp -v registry/markdown.yaml ${REGISTRY}/markdown.yaml
index a5bdbbec4e362148926e26b9348770635556b82f..5ddf6ed6a485612c32ff18fbdeafe64984135927 100644 (file)
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ To install without Pathogen using the Debian [vim-addon-manager](http://packages
 git clone https://github.com/plasticboy/vim-markdown.git
 cd vim-markdown
 sudo make install
-vim-addon-manager install mkd
+vim-addon-manager install markdown
 ```
 
 If you are not using any package manager, download the [tarball](https://github.com/plasticboy/vim-markdown/archive/master.tar.gz) and do this:
similarity index 100%
rename from ftdetect/mkd.vim
rename to ftdetect/markdown.vim
similarity index 100%
rename from ftplugin/mkd.vim
rename to ftplugin/markdown.vim
similarity index 90%
rename from indent/mkd.vim
rename to indent/markdown.vim
index 68e385a9732c0f3929a8c28c7d08daf01fd36c91..fb8d95d2453213aa19ae39aed8480ff1972522ba 100755 (executable)
@@ -1,12 +1,12 @@
 if exists("b:did_indent") | finish | endif
 let b:did_indent = 1
 
-setlocal indentexpr=GetMkdIndent()
+setlocal indentexpr=GetMarkdownIndent()
 setlocal nolisp
 setlocal autoindent
 
 " Only define the function once
-if exists("*GetMkdIndent") | finish | endif
+if exists("*GetMarkdownIndent") | finish | endif
 
 function! s:is_li_start(line)
     return a:line !~ '^ *\([*-]\)\%( *\1\)\{2}\%( \|\1\)*$' &&
@@ -25,7 +25,7 @@ function! s:prevnonblank(lnum)
     return i
 endfunction
 
-function GetMkdIndent()
+function GetMarkdownIndent()
     let list_ind = 4
     " Find a non-blank line above the current line.
     let lnum = prevnonblank(v:lnum - 1)
diff --git a/registry/markdown.yaml b/registry/markdown.yaml
new file mode 100644 (file)
index 0000000..63648a3
--- /dev/null
@@ -0,0 +1,7 @@
+addon: markdown
+description: "Markdown syntax highlighting"
+files:
+  - ftdetect/markdown.vim
+  - ftplugin/markdown.vim
+  - syntax/markdown.vim
+  - after/ftplugin/markdown.vim
diff --git a/registry/mkd.yaml b/registry/mkd.yaml
deleted file mode 100644 (file)
index d0ea467..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-addon: mkd
-description: "Markdown syntax highlighting"
-files:
-  - ftdetect/mkd.vim
-  - ftplugin/mkd.vim
-  - syntax/mkd.vim
-  - after/ftplugin/mkd.vim
similarity index 100%
rename from syntax/mkd.vim
rename to syntax/markdown.vim
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):
index c3dc02d0a74e37fd41b92af1606478fc5cabf2c1..bb9ef2fc06ff65d466e8b6fb77eae8b333b5f19c 100644 (file)
@@ -1,4 +1,4 @@
-Given mkd;
+Given markdown;
 a **b** c
 
 Execute (bold):
@@ -6,7 +6,7 @@ Execute (bold):
   AssertEqual SyntaxOf('b'), 'htmlBold'
   AssertNotEqual SyntaxOf('c'), 'htmlBold'
 
-Given mkd;
+Given markdown;
 a *b* c
 
 Execute (italic):
@@ -16,14 +16,14 @@ Execute (italic):
 
 # Links
 
-Given mkd;
+Given markdown;
 [a](b)
 
 Execute (link with title):
   AssertEqual SyntaxOf('a'), 'mkdLink'
   AssertEqual SyntaxOf('b'), 'mkdURL'
 
-Given mkd;
+Given markdown;
 (a)
 
 (b)
@@ -32,7 +32,7 @@ Execute (parenthesis not in link):
   AssertNotEqual SyntaxOf('a'), 'mkdURL'
   AssertNotEqual SyntaxOf('b'), 'mkdURL'
 
-Given mkd;
+Given markdown;
 [a](b) c [d](e)
 
 Execute (multiple links on a line):
@@ -40,7 +40,7 @@ Execute (multiple links on a line):
 
 # Autolinks
 
-Given mkd;
+Given markdown;
 a <http://b> c
 
 Execute (autolink):
@@ -50,25 +50,25 @@ Execute (autolink):
   AssertEqual SyntaxOf('>'), 'mkdDelimiter'
   AssertNotEqual SyntaxOf('c'), 'mkdInlineURL'
 
-Given mkd;
+Given markdown;
 <HtTp://a>
 
 Execute (autolink with scheme case is insensitive):
   AssertEqual SyntaxOf('a'), 'mkdInlineURL'
 
-Given mkd;
+Given markdown;
 <notascheme://a>
 
 Execute (autolink without known scheme is not a link):
   AssertNotEqual SyntaxOf('n'), 'mkdInlineURL'
 
-Given mkd;
+Given markdown;
 <a>
 
 Execute (autolink without scheme is not a link):
   AssertNotEqual SyntaxOf('a'), 'mkdInlineURL'
 
-Given mkd;
+Given markdown;
 < http://a >
 <http://b c>
 <http://d
@@ -81,7 +81,7 @@ Execute (autolink with space is not a link):
   AssertNotEqual SyntaxOf('d'), 'mkdInlineURL'
   AssertNotEqual SyntaxOf('e'), 'mkdInlineURL'
 
-Given mkd;
+Given markdown;
 \<http://a>
 
 Execute (autolinks can be backslash escaped):
@@ -89,7 +89,7 @@ Execute (autolinks can be backslash escaped):
 
 # Code Blocks
 
-Given mkd;
+Given markdown;
 ~~~
 code
 ~~~
@@ -97,7 +97,7 @@ code
 Execute (code blocks can be fenced with tildes):
   AssertEqual SyntaxOf('c'), 'mkdCode'
 
-Given mkd;
+Given markdown;
 ~~~ruby
 code
 ~~~
@@ -107,7 +107,7 @@ Execute (code blocks can have a language specifier):
 
 # Math
 
-Given mkd;
+Given markdown;
 a $x$ b
 c $$y$$ d
 \$e\$
@@ -131,7 +131,7 @@ Execute (math):
   AssertNotEqual SyntaxOf('x'), 'mkdMath'
   AssertNotEqual SyntaxOf('y'), 'mkdMath'
 
-Given mkd;
+Given markdown;
 a
 
 $
@@ -149,7 +149,7 @@ Execute (multiline math):
 
 # YAML frontmatter
 
-Given mkd;
+Given markdown;
 ---
 a: b
 ---
@@ -163,7 +163,7 @@ Execute (YAML frontmatter is controlled by the option):
   syn off | syn on
   AssertNotEqual SyntaxOf('a'), 'yamlBlockMappingKey'
 
-Given mkd;
+Given markdown;
 
 ---
 a: b
@@ -174,7 +174,7 @@ Execute (YAML frontmatter only works if it's the first thing in the file):
   syn off | syn on
   AssertNotEqual SyntaxOf('a'), 'yamlBlockMappingKey'
 
-Given mkd;
+Given markdown;
 ---
 a: b
 ---