Skip to content

Commit 0868900

Browse files
committed
Remove a redundant information
And add a new info in RegExpr Search
1 parent e63224a commit 0868900

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

content/docs/config-files.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,8 @@ The following sections are defined:
153153
3. `<History>`: the list of recently used files.
154154
3. `<ProjectPanels>`: associates workspace files with a given project panel
155155

156-
*Note:* (new to v7.8.3) The command line interpreter that is invoked by "Open Containing Folder in cmd" and "CMD here" can be changed in the `<GUIConfigs>` section. For example, add the following line to set the cli to *powershell*
156+
There are some non-UI options for advanced users, please check [**Preferences for Advanced Users**](../preferences/#preferences-for-advanced-users) to get more details.
157157

158-
<GUIConfig name="commandLineInterpreter">powershell</GUIConfig>
159-
160-
In principle, any command that can be found in your PATH can be used, but starting up an MSYS/MinGW-like environment usually requires more than just running *bash* or *zsh*. This also applies if you want to start your favorite cli in a *conhost* emulator like ConEmu.
161158

162159
## Keyword lists: `langs.xml`
163160

content/docs/preferences.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,13 +319,13 @@ The following settings are for rather specific needs and could cause some confus
319319
```
320320
<FindHistory nbMaxFindHistoryPath="10" nbMaxFindHistoryFilter="10" nbMaxFindHistoryFind="10" nbMaxFindHistoryReplace="10" matchWord="no" matchCase="no" wrap="yes" directionDown="yes" fifRecuisive="yes" fifInHiddenFolder="no" dlgAlwaysVisible="no" fifFilterFollowsDoc="no" fifFolderFollowsDoc="no" searchMode="0" transparencyMode="1" transparency="150" dotMatchesNewline="no" isSearch2ButtonsMode="yes" "regexBackward4PowerUser"="yes">
321321
```
322-
Simply add `"regexBackward4PowerUser"="yes"` if this option is absent.
322+
Simply add `"regexBackward4PowerUser"="yes"` if this option is absent.
323323

324324
* Changing the command-line interpreter used: by default, **File > Open Containing Folder > cmd** will launch the `cmd.exe` command-line interpreter. If you have a preferred command-line interpreter (such as `powershell`), you can add another `<GUIConfig...>` tag inside the `<GUIConfigs>` section:
325325
```
326326
<GUIConfig name="commandLineInterpreter">powershell</GUIConfig>
327327
```
328-
If your command-line interpreter is not in your path, make sure to include the drive and folder in the contents of that tag. If there are spaces, make sure to use quotes around the path:
328+
If your command-line interpreter is not in your path, make sure to include the drive and folder in the contents of that tag. If there are spaces, make sure to use quotes around the path:
329329
```
330330
<GUIConfig name="commandLineInterpreter">"c:\path\with spaces\to\cli.exe"</GUIConfig>
331331
```

content/docs/searching.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,8 @@ Notepad++ regular expressions use the Boost regular expression library v1.70, wh
286286

287287
The Notepad++ Community has a [FAQ on other resources for regular expressions](https://notepad-plus-plus.org/community/topic/15765/faq-desk-where-to-find-regex-documentation).
288288

289+
Note: Starting in v7.8.7, regex backward search is disallowed due to sometimes surprising results. If you really need this feature, please see [**Allow regex backward search**](../preferences/#preferences-for-advanced-users) to learn how to enable this option.
290+
289291
### Regex Special Characters
290292

291293
In a regular expression (shortened into regex throughout), special characters interpreted are:

0 commit comments

Comments
 (0)