aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/markdown.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-04 15:06:24 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-04 15:07:43 +1300
commitbfc727f28f7305850aa724ecc685be8c942a219f (patch)
treec7b41864d3f3ba42dc8309cfaa210540d32a853f /vim/after/ftplugin/markdown.vim
parentRemove accidentally created html.vim~ file (diff)
downloaddotfiles-bfc727f28f7305850aa724ecc685be8c942a219f.tar.gz
dotfiles-bfc727f28f7305850aa724ecc685be8c942a219f.zip
Remove b:undo_ftplugin cmds for double-key maps
The relevant maps were removed in commit 5f1f5b9, but these unmap instructions were left behind.
Diffstat (limited to 'vim/after/ftplugin/markdown.vim')
-rw-r--r--vim/after/ftplugin/markdown.vim2
1 files changed, 0 insertions, 2 deletions
diff --git a/vim/after/ftplugin/markdown.vim b/vim/after/ftplugin/markdown.vim
index f129deba..82fbe9da 100644
--- a/vim/after/ftplugin/markdown.vim
+++ b/vim/after/ftplugin/markdown.vim
@@ -27,7 +27,6 @@ nnoremap <buffer> <expr> <LocalLeader>q
xnoremap <buffer> <expr> <LocalLeader>q
\ quote#Quote()
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>q'
- \ . '|nunmap <buffer> <LocalLeader>qq'
\ . '|xunmap <buffer> <LocalLeader>q'
" Quote operator with reformatting
@@ -36,5 +35,4 @@ nnoremap <buffer> <expr> <LocalLeader>Q
xnoremap <buffer> <expr> <LocalLeader>Q
\ quote#QuoteReformat()
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>Q'
- \ . '|nunmap <buffer> <LocalLeader>QQ'
\ . '|xunmap <buffer> <LocalLeader>Q'