From e35cdbb6af821ebe1f14c0578f9f05732025f920 Mon Sep 17 00:00:00 2001 From: Lukas Geiger Date: Mon, 3 Dec 2018 09:30:58 +0100 Subject: [PATCH] Add `follow_imports` config to goto-definition Depends on https://github.com/palantir/python-language-server/pull/457 --- package.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/package.json b/package.json index 6a3eece8..a7063f9b 100644 --- a/package.json +++ b/package.json @@ -86,6 +86,18 @@ "type": "boolean", "default": true, "description": "Enable or disable Jedi Definition." + }, + "follow_imports": { + "title": "Follow imports", + "type": "boolean", + "default": false, + "description": "The goto call will follow imports." + }, + "follow_builtin_imports": { + "title": "Follow builtin imports", + "type": "boolean", + "default": false, + "description": "If 'follow imports' is True will decide if it follow builtin imports." } } },