From 94cf53c3cc2525e39840f01b915c8f70ac724837 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 22 Mar 2016 01:34:12 -0400 Subject: [PATCH] CmdDiagnostics: Added data files --- src/commands/CmdDiagnostics.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/commands/CmdDiagnostics.cpp b/src/commands/CmdDiagnostics.cpp index b577e886..84807da9 100644 --- a/src/commands/CmdDiagnostics.cpp +++ b/src/commands/CmdDiagnostics.cpp @@ -135,6 +135,9 @@ int CmdDiagnostics (Rules& rules, Database& database, Extensions& extensions, Lo << rules.get ("db") << "/data" << "\n"; + for (auto& file : database.files ()) + out << " " << file << "\n"; + // Determine rc.editor/$EDITOR/$VISUAL. char* peditor; if ((peditor = getenv ("VISUAL")) != NULL)