diff --git a/README.md b/README.md
index 8e11e3ad..b635a049 100644
--- a/README.md
+++ b/README.md
@@ -140,7 +140,7 @@ All of these can be changed from the setting menu, too.
|VimJJ|If 1, `jj` changes the mode to the normal mode from the insert mode.|0|
|VimTwoLetterEsc|A list of character pairs to press together during the insert mode to get to the Normal mode.
For example, a value of `jf` means pressing `j` and `f` at the same time will enter the Normal mode.
Multiple combination can be set by separated by `,`. (e.g. `jf,jk,sd`)||
|VimDisableUnused|Disable level of unused keys in other than the insert mode:
- Do not disable unused keys
- Disable alphabets (+shift) and symbols
- Disable all including keys with modifiers (e.g. Ctrl+Z)
|3|
-|VimSetTitleMatchMode|SetTitleMatchMode:
- Start with
- Contain
- Exact match
|2|
+|VimSetTitleMatchMode|SetTitleMatchMode:
- Start with
- Contain
- Exact match
- Regular expression
|2|
|VimSetTitleMatchModeFS|SetTitleMatchMode:
- Fast: Text is not detected for such edit control.
- Slow: Works for all windows, but slow.
|Fast|
|VimIconCheckInterval|Interval to check vim_ahk status (ms) and change tray icon (see below picture).
If it is set to 0, the original AHK icon is set and not changed.|1000|
|VimVerbose|Verbose level:
- Nothing.
- Minimum tooltip (mode information only).
- ToolTip (all information).
- Debug mode with a message box, which doesn't disappear automatically.
|1|
diff --git a/lib/vim_ahk.ahk b/lib/vim_ahk.ahk
index 9a7a4cd8..0b558225 100644
--- a/lib/vim_ahk.ahk
+++ b/lib/vim_ahk.ahk
@@ -124,10 +124,10 @@ class VimAhk{
, "1: Do not disable unused keys`n2: Disable alphabets (+shift) and symbols`n3: Disable all including keys with modifiers (e.g. Ctrl+Z)")
this.AddToConf("VimSetTitleMatchMode", "2", "2"
, "SetTitleMatchMode"
- , "[Mode] 1: Start with, 2: Contain, 3: Exact match.`n[Fast/Slow] Fast: Text is not detected for such edit control, Slow: Works for all windows, but slow.")
+ , "[Mode] 1: Start with, 2: Contain, 3: Exact match, RegExp: Regular expression.`n[Fast/Slow] Fast: Text is not detected for such edit control, Slow: Works for all windows, but slow.")
this.AddToConf("VimSetTitleMatchModeFS", "Fast", "Fast"
, "SetTitleMatchMode"
- , "[Mode]1: Start with, 2: Contain, 3: Exact match.`n[Fast/Slow]: Fast: Text is not detected for such edit control, Slow: Works for all windows, but slow.")
+ , "[Mode]1: Start with, 2: Contain, 3: Exact match, RegExp: Regular expression.`n[Fast/Slow]: Fast: Text is not detected for such edit control, Slow: Works for all windows, but slow.")
this.AddToConf("VimIconCheckInterval", 1000, 1000
, "Icon check interval (ms)"
, "Interval to check vim_ahk status (ms) and change tray icon. If it is set to 0, the original AHK icon is set.")