Remove the hooks that take care of trailing whitespaces

This commit is contained in:
Frank LENORMAND 2015-08-25 16:23:47 +03:00
parent 7a36a4644e
commit c65c0b394a

View File

@ -48,14 +48,6 @@ addhl -group /markdown/content regex \H\K\h\h$ 0:PrimarySelection
# Commands # 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 %{ def -hidden _markdown_indent_on_new_line %{
eval -draft -itersel %{ eval -draft -itersel %{
# preserve previous line indent # preserve previous line indent
@ -72,13 +64,10 @@ def -hidden _markdown_indent_on_new_line %{
hook global WinSetOption filetype=markdown %{ hook global WinSetOption filetype=markdown %{
addhl ref 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 window InsertChar \n -group markdown-indent _markdown_indent_on_new_line
} }
hook global WinSetOption filetype=(?!markdown).* %{ hook global WinSetOption filetype=(?!markdown).* %{
rmhl markdown rmhl markdown
rmhooks window markdown-indent rmhooks window markdown-indent
rmhooks window markdown-hooks
} }