aboutsummaryrefslogtreecommitdiff
path: root/pentadactyl/.pentadactylrc
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-03-07 21:41:39 +0100
committerAdrian Kummerlaender2016-03-07 21:41:39 +0100
commit11890827f16dbcc2856a4305ac6d068df679cff2 (patch)
treecdce61677c2f4a1d80699ef0bcd443cf2666a518 /pentadactyl/.pentadactylrc
parent9528a454b425fb8d06cd66194eb823b7ab4745b1 (diff)
downloaddotfiles-11890827f16dbcc2856a4305ac6d068df679cff2.tar
dotfiles-11890827f16dbcc2856a4305ac6d068df679cff2.tar.gz
dotfiles-11890827f16dbcc2856a4305ac6d068df679cff2.tar.bz2
dotfiles-11890827f16dbcc2856a4305ac6d068df679cff2.tar.lz
dotfiles-11890827f16dbcc2856a4305ac6d068df679cff2.tar.xz
dotfiles-11890827f16dbcc2856a4305ac6d068df679cff2.tar.zst
dotfiles-11890827f16dbcc2856a4305ac6d068df679cff2.zip
Implement cite command in _pentadactyl_
* `vimrc` changes are required to prevent _airline_ from generating unnecessary warnings concerning the spaces used to signal a blockquote
Diffstat (limited to 'pentadactyl/.pentadactylrc')
-rw-r--r--pentadactyl/.pentadactylrc15
1 files changed, 15 insertions, 0 deletions
diff --git a/pentadactyl/.pentadactylrc b/pentadactyl/.pentadactylrc
index 7826648..702c881 100644
--- a/pentadactyl/.pentadactylrc
+++ b/pentadactyl/.pentadactylrc
@@ -59,3 +59,18 @@ if ( selection ) {
dactyl.execute('!echo ' + entry + ' >> ~/note/src/web/inbox.wiki');
EOF
nmap b :push2inbox<CR>
+
+command! cite -js <<EOF
+function escape(msg) {
+ return msg.replace(/([^a-zA-Z0-9_])/g, "\\$1");
+}
+
+var entry = '\\n'
+ + '\\ \\ \\ \\ \\[...\\] ' + escape(content.getSelection().toString()) + ' \\[...\\]\\n'
+ + '\\ \\ \\ \\ \\<br\\/\\>\\<br\\/\\>\\n'
+ + '\\ \\ \\ \\ ― ' + escape(buffer.URL)
+ + '\\n';
+
+dactyl.execute('!echo ' + entry + ' >> ~/note/src/web/inbox.wiki');
+EOF
+nmap c :cite<CR>