From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 121311 invoked by alias); 11 Sep 2019 11:57:13 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 121303 invoked by uid 89); 11 Sep 2019 11:57:13 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-5.4 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:565, online X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 11 Sep 2019 11:57:11 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 462E2B660; Wed, 11 Sep 2019 11:57:09 +0000 (UTC) Subject: Re: Enabling Ctags Tree Wide for GCC To: Nicholas Krause , gcc@gcc.gnu.org References: From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Message-ID: Date: Wed, 11 Sep 2019 11:57:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00079.txt.bz2 On 9/11/19 7:02 AM, Nicholas Krause wrote: > Greetings, > > I was wondering what is the easiest way to allow source tree wide ctags. There doesn't > > seem to be a make x command for it nor any real documentation online and it would > > be nice to have. > > > Thanks, > > Nick > Hi. Please do not use ctags. It has very poor coverage for any C++ codebase. I prefer to use clangd (with -background-index) instead with vim-lsp (Language Server Protocol for VIM). https://clang.llvm.org/extra/clangd/Installation.html Martin