1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-25 10:32:19 +03:00

Merge remote-tracking branch 'lenormf/rc/markdown.kak-trailing-whitespaces'

This commit is contained in:
Maxime Coste 2015-08-25 19:22:30 +01:00
commit 60f2067c91

View File

@ -48,14 +48,6 @@ addhl -group /markdown/content regex \H\K\h\h$ 0:PrimarySelection
# Commands
# ‾‾‾‾‾‾‾‾
def -hidden _markdown_filter_around_selections %{
eval -draft -itersel %{
exec <a-x>
# remove trailing white spaces
try %{ exec -draft s \h+$ <ret> d }
}
}
def -hidden _markdown_indent_on_new_line %{
eval -draft -itersel %{
# preserve previous line indent
@ -72,13 +64,10 @@ def -hidden _markdown_indent_on_new_line %{
hook global WinSetOption filetype=markdown %{
addhl ref markdown
hook window InsertEnd .* -group markdown-hooks _markdown_filter_around_selections
hook window InsertChar \n -group markdown-indent _markdown_indent_on_new_line
}
hook global WinSetOption filetype=(?!markdown).* %{
rmhl markdown
rmhooks window markdown-indent
rmhooks window markdown-hooks
}