From 22a08f5732b7e35a7e9104083143263984a46b89 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 14 Oct 2014 16:13:18 -0400 Subject: [PATCH] Removed the plugin part of the markdown plugin in polyglot and configs --- vim/bundle/vim-polyglot-darkcloud | 2 +- vim/config/keyboard.vim | 17 ++++------------- vim/config/plugins.vim | 14 -------------- 3 files changed, 5 insertions(+), 28 deletions(-) diff --git a/vim/bundle/vim-polyglot-darkcloud b/vim/bundle/vim-polyglot-darkcloud index facec03..7b8ad64 160000 --- a/vim/bundle/vim-polyglot-darkcloud +++ b/vim/bundle/vim-polyglot-darkcloud @@ -1 +1 @@ -Subproject commit facec033630a248a44cac9e6f44690bca0b6eb20 +Subproject commit 7b8ad6437fa928f8c934c6883127960340a653eb diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index d0b5a96..f8b1987 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -247,16 +247,12 @@ " ?> | (A) -> close the dialog " ?< | (A) -> close the dialog " -" (markdown) -" | (A) -> show heading TOC instead of the taglist -" | (A) -> show heading TOC instead of the taglist -" -" (markdown toc) +" (qf sidebar mappings) " | (A) -> left click + left justify the cursor " | (A) -> same as the left click " | (A) -> same as the left click -" | (A) -> select heading to edit -" | (A) -> select heading but remain in toc +" | (A) -> select entry +" | (A) -> select entry but remain in qf sidebar " | (A) -> up " | (A) -> down " h | (A) -> j @@ -679,12 +675,7 @@ autocmd FileType help map ? ':q' endif - "markdown: launch table of contents instead of the tagbar - autocmd FileType mkd map ':Toch' - autocmd FileType mkd map ':Toch' - autocmd Filetype mkd nnoremap F ':TableFormat:echo "Markdown tables have been formatted with :FormatTable"' - - "markdown table of contents + "mappings for qf-based plugins autocmd FileType qf map 0 autocmd FileType qf map autocmd FileType qf map diff --git a/vim/config/plugins.vim b/vim/config/plugins.vim index 82d0a22..01b3e8b 100644 --- a/vim/config/plugins.vim +++ b/vim/config/plugins.vim @@ -77,20 +77,6 @@ let g:vim_json_syntax_conceal=0 "}}} -"MARKDOWN: {{{ - let g:vim_markdown_folding_disabled=0 - let g:vim_markdown_initial_foldlevel=2 - - "Remove default mappings then set them to fix issues with vimdiff - let g:vim_markdown_no_default_key_mappings=1 - nmap ]] (Markdown_MoveToNextHeader) - nmap [[ (Markdown_MoveToPreviousHeader) - nmap ][ (Markdown_MoveToNextSiblingHeader) - nmap [] (Markdown_MoveToPreviousSiblingHeader) - nmap ]c (Markdown_MoveToCurHeader) - nmap ]u (Markdown_MoveToParentHeader) -"}}} - "MATCHTAGALWAYS: {{{ let g:mta_filetypes = {'aspnet':1, 'html':1, 'xhtml':1, 'php':1, 'xml':1, 'jinja':1} "}}}