Updated GUI and IDE Access (markdown)
diff --git a/GUI-and-IDE-Access.md b/GUI-and-IDE-Access.md
index 1da358a..ec8d5af 100644
--- a/GUI-and-IDE-Access.md
+++ b/GUI-and-IDE-Access.md
@@ -56,3 +56,12 @@
 The last step is to generate a compile_commands.json to cquery. This file will contain the specific compiler command lines used to build V8 to cquery. Run the following command in the V8 checkout.
 
 `ninja -C out.gn/x64.release -t compdb cxx cc > compile_commands.json`
+
+This needs to be re-executed from time to time to teach cquery about new source files.
+
+### Useful Settings
+The auto-closing of parenthesis in VisualStudioCode is not working too well. It can be disabled with
+```
+"editor.autoClosingBrackets": false
+```
+in the user settings.