aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vimperatorrc.dot.link5
1 files changed, 4 insertions, 1 deletions
diff --git a/vimperatorrc.dot.link b/vimperatorrc.dot.link
index 14ae431..56be7cb 100644
--- a/vimperatorrc.dot.link
+++ b/vimperatorrc.dot.link
@@ -24,8 +24,11 @@ map yt :js util.copyToClipboard(content.document.title, true)<cr>
" Copy page as a Markdown link
map ym :js util.copyToClipboard('[' + content.document.title + '](' + content.document.location + ')', true)<cr>
+" Copy page as a reStructutedText link
+map yc :js util.copyToClipboard('`' + content.document.location + ' <' + content.document.title + '>`_', true)<cr>
+
" Copy page as a Trac wiki link
-map yr :js util.copyToClipboard('[' + content.document.location + ' ' + content.document.title + ']', true)<cr>
+map yc :js util.copyToClipboard('[' + content.document.location + ' ' + content.document.title + ']', true)<cr>
" Copy page for sharing
map ys :js util.copyToClipboard(content.document.title + ' - ' + content.document.location, true)<cr>