aboutsummaryrefslogtreecommitdiff
path: root/pentadactyl/.pentadactylrc
diff options
context:
space:
mode:
Diffstat (limited to 'pentadactyl/.pentadactylrc')
-rw-r--r--pentadactyl/.pentadactylrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/pentadactyl/.pentadactylrc b/pentadactyl/.pentadactylrc
index 65312fa..5988081 100644
--- a/pentadactyl/.pentadactylrc
+++ b/pentadactyl/.pentadactylrc
@@ -58,11 +58,11 @@ nmap b :push2inbox<CR>
command! cite -js <<EOF
var entry = '\\n'
- + '\ \ \ \ \[...\] ' + content.getSelection().toString() + ' \[...\]\\n'
- + '\ \ \ \ \<br\/\>\<br\/\>\\n'
- + '\ \ \ \ ― ' + buffer.URL
+ + ' [...] ' + content.getSelection().toString().replace('\n', '\n ') + ' [...]\\n'
+ + ' <br/>\<br/>\\n'
+ + ' ― ' + buffer.URL
+ '\\n';
-dactyl.execute('!echo -e "' + entry + '" >> ~/note/src/web/inbox.wiki');
+dactyl.execute('!echo -e "' + entry.replace('"', '\"') + '" >> ~/note/src/web/inbox.wiki');
EOF
nmap c :cite<CR>