diff --git a/CHANGELOG.md b/CHANGELOG.md index d19d695..b54c3e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,10 @@ All notable changes to the "vscode-search-everywhere" extension will be documented in this file. -## [1.1.0] - 2021-06-24 +## [1.1.0] - 2021-07-19 - Setting `searchEverywhere.shouldUseFilesAndSearchExclude` replaced with `searchEverywhere.excludeMode` allowing to choose source of exclude patterns: extension, files and search, gitignore +- Added debouncing for handleDidChangeTextDocument event callback +- Added caching for handleDidChangeTextDocument event callback to general increase performance ## [1.0.9] - 2021-05-24 - Fixed bug concerning loading items to not existing quick pick on handleDidProcessing callback. QuickPick initialization moved to handleWillProcessing callback, - Fixed bug concerning updating list after removing whole folder with multiple files, diff --git a/README.md b/README.md index 1deaf2b..cc6de40 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,7 @@ Default value: * `searchEverywhere.excludeMode` -Ability to choose which exclude option should be applied. If gitignore file is not found or is empty, extension setting is used as a fallback. Available options: `search everywhere`, `files and search`, `gitignore`. +Ability to choose which exclude option should be applied. If gitignore file is not found or is empty, the extension option is used as a fallback. Available options: `search everywhere`, `files and search`, `gitignore`. To see the changes from the updated gitignore file after indexing, the reload must be done. Default value: `search everywhere`. ## Release Notes diff --git a/package.json b/package.json index 9f9ace2..b72af78 100644 --- a/package.json +++ b/package.json @@ -152,7 +152,7 @@ "gitignore" ], "default": "search everywhere", - "description": "Ability to choose which exclude option should be applied. If gitignore file is not found or is empty, extension setting is used as a fallback." + "description": "Ability to choose which exclude option should be applied. If gitignore file is not found or is empty, the extension option is used as a fallback. To see the changes from the updated gitignore file after indexing, the reload must be done." } } },