From aa2f4591a14b55ca25b543fa647223a2d51fcb1d Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx <3.14.e.ter@gmail.com> Date: Wed, 1 Feb 2017 17:35:22 +0100 Subject: [PATCH] Add activationCommands The activation of term3 can take very long in comparison with other packages, and makes atom's startup slow, even when term3 is never used. Adding activationCommands defers the activation until one of these commands is used. --- package.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/package.json b/package.json index e72b01d..4977bb9 100644 --- a/package.json +++ b/package.json @@ -39,5 +39,14 @@ "0.1.3": "service_0_1_3" } } + }, + "activationCommands": { + "atom-workspace": [ + "term3:open", + "term3:open-split-up", + "term3:open-split-right", + "term3:open-split-down", + "term3:open-split-left" + ] } }