2014-07-14 22:51:33 +02:00
|
|
|
# http://daringfireball.net/projects/markdown
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2015-08-13 21:06:55 +02:00
|
|
|
hook global BufCreate .*[.](markdown|md|mkd) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype markdown
|
2014-07-14 22:51:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter shared/markdown regions
|
|
|
|
add-highlighter shared/markdown/content default-region group
|
|
|
|
|
2018-05-06 23:29:52 +02:00
|
|
|
evaluate-commands %sh{
|
2017-12-12 10:16:37 +01:00
|
|
|
languages="
|
|
|
|
c cabal clojure coffee cpp css cucumber d diff dockerfile fish gas go
|
|
|
|
haml haskell html ini java javascript json julia kak kickstart latex
|
|
|
|
lisp lua makefile markdown moon objc perl pug python ragel ruby rust
|
2018-11-10 15:39:14 +01:00
|
|
|
sass scala scss sh swift tupfile typescript yaml sql
|
2017-12-12 10:16:37 +01:00
|
|
|
"
|
|
|
|
for lang in ${languages}; do
|
markdown.kak: Clean up code-block and code-span formatting.
Previously, a code block was anything between triple-backtics, including inline
blocks:
some text ```
not a codeblock, but highlighted as one
``` other text
and even if the closing backticks had the wrong indent:
```
this is a code block containing a triple backtick
```
this is still a code block, but Kakoune thinks otherwise
```
Now we use the -match-capture flag to ensure the start and end fences have
exactly the same indent.
Previously, the generic code-block region was defined first, which meant that
it took priority over all the language-specific highlighters. Now we define
the generic code-block highlighting *after* the others, which fixes #2304.
Previously, code-spans were defined as ordinary inline markup, but in Markdown
ordinary formatting doesn't work inside code-spans. Therefore, they are now
regions unto themselves, defined according to section 6.3 of the CommonMark
spec <https://spec.commonmark.org/0.28/#code-spans>, which addresses a comment
on #2111.
2018-09-18 10:55:24 +02:00
|
|
|
printf 'add-highlighter shared/markdown/%s region -match-capture ^(\h*)```\h*%s\\b ^(\h*)``` regions\n' "${lang}" "${lang}"
|
2018-06-28 14:10:22 +02:00
|
|
|
printf 'add-highlighter shared/markdown/%s/ default-region fill meta\n' "${lang}"
|
2018-07-19 10:32:29 +02:00
|
|
|
[ "${lang}" = kak ] && ref=kakrc || ref="${lang}"
|
2018-07-02 12:59:12 +02:00
|
|
|
printf 'add-highlighter shared/markdown/%s/inner region \A```[^\\n]*\K (?=```) ref %s\n' "${lang}" "${ref}"
|
2017-12-12 10:16:37 +01:00
|
|
|
done
|
|
|
|
}
|
2014-07-14 22:51:33 +02:00
|
|
|
|
markdown.kak: Clean up code-block and code-span formatting.
Previously, a code block was anything between triple-backtics, including inline
blocks:
some text ```
not a codeblock, but highlighted as one
``` other text
and even if the closing backticks had the wrong indent:
```
this is a code block containing a triple backtick
```
this is still a code block, but Kakoune thinks otherwise
```
Now we use the -match-capture flag to ensure the start and end fences have
exactly the same indent.
Previously, the generic code-block region was defined first, which meant that
it took priority over all the language-specific highlighters. Now we define
the generic code-block highlighting *after* the others, which fixes #2304.
Previously, code-spans were defined as ordinary inline markup, but in Markdown
ordinary formatting doesn't work inside code-spans. Therefore, they are now
regions unto themselves, defined according to section 6.3 of the CommonMark
spec <https://spec.commonmark.org/0.28/#code-spans>, which addresses a comment
on #2111.
2018-09-18 10:55:24 +02:00
|
|
|
add-highlighter shared/markdown/codeblock region -match-capture \
|
|
|
|
^(\h*)```\h* \
|
|
|
|
^(\h*)```\h*$ \
|
|
|
|
fill meta
|
|
|
|
add-highlighter shared/markdown/codespan region -match-capture (`+) (`+) fill mono
|
|
|
|
|
2014-07-14 22:51:33 +02:00
|
|
|
# Setext-style header
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter shared/markdown/content/ regex (\A|\n\n)[^\n]+\n={2,}\h*\n\h*$ 0:title
|
|
|
|
add-highlighter shared/markdown/content/ regex (\A|\n\n)[^\n]+\n-{2,}\h*\n\h*$ 0:header
|
2014-07-14 22:51:33 +02:00
|
|
|
|
|
|
|
# Atx-style header
|
2018-11-18 08:28:50 +01:00
|
|
|
add-highlighter shared/markdown/content/ regex ^#[^\n]* 0:header
|
2017-10-28 05:00:51 +02:00
|
|
|
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter shared/markdown/content/ regex ^\h?((?:[\s\t]+)?[-\*])\h+[^\n]*(\n\h+[^-\*]\S+[^\n]*\n)*$ 0:list 1:bullet
|
|
|
|
add-highlighter shared/markdown/content/ regex \B\+[^\n]+?\+\B 0:mono
|
2018-09-18 11:21:28 +02:00
|
|
|
add-highlighter shared/markdown/content/ regex (?<!\*)(\*([^\s*]|([^\s*](\n?[^\n*])*[^\s*]))\*)(?!\*) 1:italic
|
|
|
|
add-highlighter shared/markdown/content/ regex (?<!_)(_([^\s_]|([^\s_](\n?[^\n_])*[^\s_]))_)(?!_) 1:italic
|
|
|
|
add-highlighter shared/markdown/content/ regex (?<!\*)(\*\*([^\s*]|([^\s*](\n?[^\n*])*[^\s*]))\*\*)(?!\*) 1:bold
|
|
|
|
add-highlighter shared/markdown/content/ regex (?<!_)(__([^\s_]|([^\s_](\n?[^\n_])*[^\s_]))__)(?!_) 1:bold
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter shared/markdown/content/ regex <(([a-z]+://.*?)|((mailto:)?[\w+-]+@[a-z]+[.][a-z]+))> 0:link
|
|
|
|
add-highlighter shared/markdown/content/ regex ^\[[^\]\n]*\]:\h*([^\n]*) 1:link
|
|
|
|
add-highlighter shared/markdown/content/ regex ^\h*(>\h*)+ 0:comment
|
|
|
|
add-highlighter shared/markdown/content/ regex \H\K\h\h$ 0:PrimarySelection
|
2014-07-14 22:51:33 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden markdown-indent-on-new-line %{
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %{
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy block quote(s), list item prefix and following white spaces
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> s ^\h*\K((>\h*)+([*+-]\h)?|(>\h*)*[*+-]\h)\h* <ret> y gh j P }
|
2014-07-14 22:51:33 +02:00
|
|
|
# preserve previous line indent
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft \; K <a-&> }
|
2015-11-04 10:48:47 +01:00
|
|
|
# remove trailing white spaces
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft -itersel %{ k<a-x> s \h+$ <ret> d } }
|
2014-07-14 22:51:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-06-28 14:10:22 +02:00
|
|
|
hook -group markdown-highlight global WinSetOption filetype=markdown %{ add-highlighter window/markdown ref markdown }
|
2016-09-25 15:15:07 +02:00
|
|
|
|
2014-07-14 22:51:33 +02:00
|
|
|
hook global WinSetOption filetype=markdown %{
|
2017-01-13 01:56:30 +01:00
|
|
|
hook window InsertChar \n -group markdown-indent markdown-indent-on-new-line
|
2014-07-14 22:51:33 +02:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group markdown-highlight global WinSetOption filetype=(?!markdown).* %{ remove-highlighter window/markdown }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2014-07-14 22:51:33 +02:00
|
|
|
hook global WinSetOption filetype=(?!markdown).* %{
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window markdown-indent
|
2014-07-14 22:51:33 +02:00
|
|
|
}
|