summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-08-09 22:24:12 -0400
committerJesse Luehrs <doy@tozt.net>2016-08-09 22:36:42 -0400
commitb7e15a60b73bcd89c6a6be546d8c85d49e6fc801 (patch)
treeff1ffdae5a32a90da4a2a701c4c32030a3240564
parent3e8d6a54af3f3b0b1264372b41f9e57c4852f93f (diff)
downloadconf-b7e15a60b73bcd89c6a6be546d8c85d49e6fc801.tar.gz
conf-b7e15a60b73bcd89c6a6be546d8c85d49e6fc801.zip
jshint
-rw-r--r--vimfx/.jshintrc4
-rw-r--r--vimfx/config.js6
2 files changed, 7 insertions, 3 deletions
diff --git a/vimfx/.jshintrc b/vimfx/.jshintrc
new file mode 100644
index 0000000..e22f042
--- /dev/null
+++ b/vimfx/.jshintrc
@@ -0,0 +1,4 @@
+{
+ "moz": true,
+ "esversion": 6
+}
diff --git a/vimfx/config.js b/vimfx/config.js
index 64c2726..3378dae 100644
--- a/vimfx/config.js
+++ b/vimfx/config.js
@@ -69,7 +69,7 @@ vimfx.addCommand({
}, (args) => {
commands.focus_location_bar.run(args);
args.vim.window.gURLBar.value = '% ';
-})
+});
vimfx.set('custom.mode.normal.goto_tab', 'b');
vimfx.addCommand({
@@ -77,7 +77,7 @@ vimfx.addCommand({
description: 'Save to Pocket',
}, ({vim}) => {
vim.window.document.getElementById('pocket-button').click();
-})
+});
vimfx.set('custom.mode.normal.pocket', 's');
vimfx.addCommand({
@@ -148,4 +148,4 @@ Preferences.set({
'devtools.chrome.enabled': true,
'privacy.donottrackheader.enabled': true,
'toolkit.scrollbox.verticalScrollDistance': 1,
-})
+});