diff options
author | Adrian Kummerlaender | 2016-03-07 21:41:39 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2016-03-07 21:41:39 +0100 |
commit | 11890827f16dbcc2856a4305ac6d068df679cff2 (patch) | |
tree | cdce61677c2f4a1d80699ef0bcd443cf2666a518 /pentadactyl/.pentadactylrc | |
parent | 9528a454b425fb8d06cd66194eb823b7ab4745b1 (diff) | |
download | dotfiles-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/.pentadactylrc | 15 |
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> |