Siteshwar Vashisht 8e3389
diff --git a/README.md b/README.md
Siteshwar Vashisht 8e3389
--- a/README.md
Siteshwar Vashisht 8e3389
+++ b/README.md
Siteshwar Vashisht 8e3389
@@ -121,6 +121,31 @@ A. No. Use `M-/` to (in the words of the bash man page) attempt file
Siteshwar Vashisht 8e3389
 A. Put them in `~/.bash_completion`, which is parsed at the end of the
Siteshwar Vashisht 8e3389
    main completion script. See also the next question.
Siteshwar Vashisht 8e3389
Siteshwar Vashisht 8e3389
+**Q. How can I override a completion shipped by bash-completion?**
Siteshwar Vashisht 8e3389
+
Siteshwar Vashisht 8e3389
+A. Install a local completion of your own appropriately for the desired
Siteshwar Vashisht 8e3389
+   command, and it will take precedence over the one shipped by us. See the
Siteshwar Vashisht 8e3389
+   next answer for details where to install it, if you are doing it on per
Siteshwar Vashisht 8e3389
+   user basis. If you want to do it system wide, you can install eagerly
Siteshwar Vashisht 8e3389
+   loaded files in `compatdir` (see a couple of questions further down for
Siteshwar Vashisht 8e3389
+   more info) and install a completion for the commands to override
Siteshwar Vashisht 8e3389
+   completions shipped by us.
Siteshwar Vashisht 8e3389
+
Siteshwar Vashisht 8e3389
+   If you want to use bash's default completion instead of one of ours,
Siteshwar Vashisht 8e3389
+   something like this should work (where `$cmd` is the command to override
Siteshwar Vashisht 8e3389
+   completion for): `complete -o default -o bashdefault $cmd`
Siteshwar Vashisht 8e3389
+
Siteshwar Vashisht 8e3389
+**Q. Where should I install my own local completions?**
Siteshwar Vashisht 8e3389
+
Siteshwar Vashisht 8e3389
+A. Put them in the `completions` subdir of `$BASH_COMPLETION_USER_DIR`
Siteshwar Vashisht 8e3389
+   (defaults to `$XDG_DATA_HOME/bash-completion` or
Siteshwar Vashisht 8e3389
+    `~/.local/share/bash-completion`
Siteshwar Vashisht 8e3389
+   if `$XDG_DATA_HOME` is not set) to have them loaded on demand.
Siteshwar Vashisht 8e3389
+   See also the next question's answer for considerations for these
Siteshwar Vashisht 8e3389
+   files' names, they apply here as well. Alternatively, you can write
Siteshwar Vashisht 8e3389
+   them directly in `~/.bash_completion` which is loaded eagerly by
Siteshwar Vashisht 8e3389
+   our main script.
Siteshwar Vashisht 8e3389
+
Siteshwar Vashisht 8e3389
 **Q. I author/maintain package X and would like to maintain my own
Siteshwar Vashisht 8e3389
    completion code for this package. Where should I put it to be sure
Siteshwar Vashisht 8e3389
    that interactive bash shells will find it and source it?**