diff options
author | listout <listout@protonmail.com> | 2022-09-16 16:51:44 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-16 16:51:44 +0530 |
commit | 2087bfc2026f0a008f8e0b6814f54c9dd4e671a9 (patch) | |
tree | 9210d5265d6459b2a4b6d841ad4d8b441a16b19a /after | |
parent | 0c316323066754515137f8b175d6c9a6b3bab913 (diff) |
nvim: ftplugin/markdown: removing old autopairs code
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'after')
-rw-r--r-- | after/ftplugin/markdown.vim | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/after/ftplugin/markdown.vim b/after/ftplugin/markdown.vim index 2ffe41a..1306802 100644 --- a/after/ftplugin/markdown.vim +++ b/after/ftplugin/markdown.vim @@ -19,17 +19,4 @@ highlight Conceal ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE " Make `gf` create new files if not exists map gf :e <cfile><CR> -" Auto complete for $ in pandoc markdown -let g:AutoPairs = { - \ "`":"`", - \ "$":"$", - \ "$$":"$$", - \ "```":"```", - \ "(":")", - \ "[":"]", - \ "{":"}", - \ "( ": " )", - \ "[ ": " ]", - \ "{ ": " }", - \ } let java_ignore_javadoc=1 |