mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
Merge pull request #4665 from hpwamr/Mui_Beta
MUI - Add some doc and comments
This commit is contained in:
commit
76e38701fc
@ -5,16 +5,16 @@
|
||||
SettingsVersion=5
|
||||
[Settings2]
|
||||
;IMEInteraction=0
|
||||
;DateTimeFormat= (-> <Locale dependent short format>)
|
||||
;DateTimeLongFormat= (-> <Locale dependent long format>)
|
||||
;TimeStampRegEx= (-> \$Date:[^\$]+\$ ) (Find-Pattern to Update Stamps)
|
||||
;TimeStampFormat= (-> $Date: %s $) {Print format should fit to TimeStampRegEx}
|
||||
;DateTimeFormat= ;(-> <Locale dependent short format>)
|
||||
;DateTimeLongFormat= ;(-> <Locale dependent long format>)
|
||||
;TimeStampRegEx= ;(-> \$Date:[^\$]+\$ ) (Find-Pattern to Update Stamps)
|
||||
;TimeStampFormat= ;(-> $Date: %s $) {Print format should fit to TimeStampRegEx}
|
||||
;DefaultDirectory=
|
||||
;DefaultExtension=txt
|
||||
;DenyVirtualSpaceAccess=0
|
||||
;filebrowser.exe=minipath.exe
|
||||
;grepWin.exe=grepWinNP3.exe
|
||||
;FileCheckInterval=2000 (min: 500[msec] - if equal or less, notify immediately)
|
||||
;FileCheckInterval=2000 ;(min: 500[msec] - if equal or less, notify immediately)
|
||||
;FileChangedIndicator=[@]
|
||||
;FileDeletedIndicator=[X]
|
||||
;FileDlgFilters=
|
||||
@ -51,23 +51,23 @@ SettingsVersion=5
|
||||
;UpdateDelayMarkAllOccurrences=50
|
||||
;CurrentLineHorizontalSlop=40
|
||||
;CurrentLineVerticalSlop=5
|
||||
;UndoTransactionTimeout=0 ;in [ms]
|
||||
;UndoTransactionTimeout=0 ;in [msec]
|
||||
;AdministrationTool.exe=
|
||||
;DevDebugMode=0
|
||||
;AnalyzeReliableConfidenceLevel=90
|
||||
;LocaleAnsiCodePageAnalysisBonus=33
|
||||
;LexerSQLNumberSignAsComment=1
|
||||
;ExitOnESCSkipLevel=2
|
||||
;ZoomTooltipTimeout=3200 ;in [ms]
|
||||
;WrapAroundTooltipTimeout=2000 ;in [ms]
|
||||
;ZoomTooltipTimeout=3200 ;in [msec]
|
||||
;WrapAroundTooltipTimeout=2000 ;in [msec]
|
||||
;LargeIconScalePrecent=150
|
||||
;DarkModeBkgColor=0x1F1F1F
|
||||
;DarkModeBtnFaceColor=0x333333
|
||||
;DarkModeTxtColor=0xEFEFEF
|
||||
;DarkModeHiglightContrast=75
|
||||
;HyperlinkShellExURLWithApp=""
|
||||
;HyperlinkShellExURLCmdLnArgs="${URL}" (use ${URL} as place holder for clicked Hyperlink URL string)
|
||||
;HyperlinkFileProtocolVerb="" (ShellExecuteEx()::lpVerb (""=default, "edit", "explore", "find", "open", "print", "properties", "runas")
|
||||
;HyperlinkShellExURLCmdLnArgs="${URL}" ;(use ${URL} as place holder for clicked Hyperlink URL string)
|
||||
;HyperlinkFileProtocolVerb="" ;(ShellExecuteEx()::lpVerb (""=default, "edit", "explore", "find", "open", "print", "properties", "runas")
|
||||
;CodeFontPrefPrioList="Cascadia Code,Cascadia Mono,Cousine,Fira Code,Source Code Pro,Roboto Mono,DejaVu Sans Mono,Inconsolata,Consolas,Lucida Console"
|
||||
;TextFontPrefPrioList="Cascadia Mono,Cousine,Roboto Mono,DejaVu Sans Mono,Inconsolata,Consolas,Lucida Console"
|
||||
[Statusbar Settings]
|
||||
|
||||
21
Readme.md
21
Readme.md
@ -210,10 +210,11 @@ This allows you to perform much more powerful search and replace operations in f
|
||||
- or from "Edit --> Search --> Search in Files"
|
||||
- or simply with "`Ctrl+Shift+F`"
|
||||
|
||||
#### `FileCheckInterval=0`
|
||||
#### `FileCheckInterval=2000`
|
||||
|
||||
The interval (in milliseconds) to check for external modification of the currently opened file.
|
||||
- Defaults is 0 ms.
|
||||
- Defaults is 2000 msec.
|
||||
- Min: 500[msec] - if equal or less, notify immediately.
|
||||
|
||||
#### `FileChangedIndicator=[@]`
|
||||
|
||||
@ -390,9 +391,11 @@ If the string contains spaces, you have to double-quote it,
|
||||
|
||||
#### `CurrentLineVerticalSlop=5`
|
||||
|
||||
#### `UndoTransactionTimeout=0` ;in [ms]
|
||||
#### `UndoTransactionTimeout=0`
|
||||
|
||||
UndoTransactionTimeout=1 (will be clamped to 10ms min.) will separate nearly every keystroke as single undo action.
|
||||
- in [msec]
|
||||
|
||||
UndoTransactionTimeout=1 (will be clamped to 10msec min.) will separate nearly every keystroke as single undo action.
|
||||
(UndoTransactionTimeout=0 will switch this timer OFF)
|
||||
|
||||
#### `AdministrationTool.exe=`
|
||||
@ -430,13 +433,15 @@ New parameter "[Settings2] ExitOnESCSkipLevel = 2"
|
||||
- Level 1 : ESC cancels message-box and ignores Selection.
|
||||
- Level 0 : ESC cancels all states and proceeds to Exit (if configured).
|
||||
|
||||
#### `ZoomTooltipTimeout=3200` ;in [ms]
|
||||
#### `ZoomTooltipTimeout=3200`
|
||||
|
||||
- A value of zero (0) (or less than 100 ms) will disable the tooltip display.
|
||||
- in [msec]
|
||||
- A value of zero (0) (or less than 100 msec) will disable the tooltip display.
|
||||
|
||||
#### `WrapAroundTooltipTimeout=2000` ;in [ms]
|
||||
#### `WrapAroundTooltipTimeout=2000`
|
||||
|
||||
- A value of zero (0) (or less than 100 ms) will disable the tooltip display.
|
||||
- in [msec]
|
||||
- A value of zero (0) (or less than 100 msec) will disable the tooltip display.
|
||||
|
||||
#### `LargeIconScalePrecent=150`
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user