From 106db7654586a25fc61cb06b50a4e6d2b08a32a7 Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Mon, 2 Jun 2014 09:40:50 +0200 Subject: [PATCH] Don't allow spaces before headers in nav mappings. It breaks too often when you have code blocks with comments that start with `#`, and no one uses spaces before headers. --- ftplugin/mkd.vim | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ftplugin/mkd.vim b/ftplugin/mkd.vim index 9c07714..33eac2c 100644 --- a/ftplugin/mkd.vim +++ b/ftplugin/mkd.vim @@ -47,12 +47,12 @@ " For each level, contains the regexp that matches at that level only. let s:levelRegexpDict = { - \ 1: '\v^(\s*#[^#]|.+\n\=+$)', - \ 2: '\v^(\s*##[^#]|.+\n-+$)', - \ 3: '\v^\s*###[^#]', - \ 4: '\v^\s*####[^#]', - \ 5: '\v^\s*#####[^#]', - \ 6: '\v^\s*######[^#]' + \ 1: '\v^(#[^#]|.+\n\=+$)', + \ 2: '\v^(##[^#]|.+\n-+$)', + \ 3: '\v^###[^#]', + \ 4: '\v^####[^#]', + \ 5: '\v^#####[^#]', + \ 6: '\v^######[^#]' \ } " Maches any header level of any type. @@ -60,7 +60,7 @@ let s:levelRegexpDict = { " This could be deduced from `s:levelRegexpDict`, but it is more " efficient to have a single regexp for this. " -let s:headersRegexp = '\v^(\s*#|.+\n(\=+|-+)$)' +let s:headersRegexp = '\v^(#|.+\n(\=+|-+)$)' " Returns the line number of the first header before `line`, called the " current header. -- 2.39.2