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:
  1. Do not disable unused keys
  2. Disable alphabets (+shift) and symbols
  3. Disable all including keys with modifiers (e.g. Ctrl+Z)
|3| -|VimSetTitleMatchMode|SetTitleMatchMode:
  1. Start with
  2. Contain
  3. Exact match
  4. |2| +|VimSetTitleMatchMode|SetTitleMatchMode:
    1. Start with
    2. Contain
    3. Exact match
    4. Regular expression
    5. |2| |VimSetTitleMatchModeFS|SetTitleMatchMode:
      1. Fast: Text is not detected for such edit control.
      2. Slow: Works for all windows, but slow.
      3. |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:
        1. Nothing.
        2. Minimum tooltip (mode information only).
        3. ToolTip (all information).
        4. 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.")