From b9366b1aae73ddb68ae954fb07aefba41ed0cfb0 Mon Sep 17 00:00:00 2001 From: Hiroo HAYASHI <24754036+hirooih@users.noreply.github.com> Date: Thu, 15 Aug 2024 11:00:04 +0900 Subject: [PATCH] fix README.md for ctags-companion v2023.8.0 or later (#483) From https://github.com/gediminasz/ctags-companion/releases/tag/v2023.8.0 - Switched to using the default tags file location rather than .vscode/.tags - Replaced in-memory symbol index with more efficient readtags. Signed-off-by: Hiroo HAYASHI <24754036+hirooih@users.noreply.github.com> --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a8cac93..88c49070 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,7 @@ by adding the following settings on `.vscode/settings.json` in your workspace. ```json { - "ctags-companion.command": "ctags -R --fields=+nKz -f .vscode/.tags --langmap=SystemVerilog:+.v -R rtl /opt/uvm-1.2/src", - "ctags-companion.readtagsEnabled": true, + "ctags-companion.command": "ctags -R --fields=+nKz --langmap=SystemVerilog:+.v -R rtl /opt/uvm-1.2/src", } ```