From 6657e0d6a475c34570716cd8a41c65d2206d5f2e Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 25 Sep 2010 12:11:16 -0400 Subject: [PATCH] Add javascript completion to :execute. --HG-- extra : rebase_source : b5b32b8bf199466588cc8ef5a88334027d12de3e --- common/content/dactyl.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/content/dactyl.js b/common/content/dactyl.js index a771d2b9..380eefe5 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -1412,7 +1412,10 @@ const Dactyl = Module("dactyl", { catch (e) { dactyl.echoerr(e); } - }, { literal: 0 }); + }, { + completer: function (context) completion.javascript(context), + literal: 0 + }); ///////////////////////////////////////////////////////////////////////////