From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-0.0 required=3.0 tests=BAYES_40 autolearn=ham autolearn_force=no version=3.4.5-pre1 X-Received: by 2002:a37:7fc2:: with SMTP id a185mr14387386qkd.202.1612144363065; Sun, 31 Jan 2021 17:52:43 -0800 (PST) X-Received: by 2002:a25:6ec3:: with SMTP id j186mr21794861ybc.165.1612144362808; Sun, 31 Jan 2021 17:52:42 -0800 (PST) Path: eternal-september.org!reader02.eternal-september.org!news.mixmin.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sun, 31 Jan 2021 17:52:42 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: google-groups.googlegroups.com; posting-host=2601:3c3:401:f550:7d46:e91a:6e78:7532; posting-account=JSxOkAoAAADa00TJoz2WZ_46XrZCdXeS NNTP-Posting-Host: 2601:3c3:401:f550:7d46:e91a:6e78:7532 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: GPS/Gnat Studio: Code completion with other projects From: John Perry Injection-Date: Mon, 01 Feb 2021 01:52:43 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader02.eternal-september.org comp.lang.ada:61255 List-Id: Hi! Suppose I've developed a package A, saved as a project. Now I'm working on package B. I make A available by specifying it in my gpr file, either as a with statement or by adding it to Source_Dirs. In package B I have the statement "with A;". At this point, while I edit package B, Gnat Studio will code-complete any entity of package B, as well as any entity from the Ada standard library, but it won't code-complete entities from package A, such as A.Some_Feature. How do I get Gnat Studio to do that? thanks john perry