replace 'files to include' with "*_/_Container.cs" (only change is the upper case C instead of lower case) search again, this time results are found as expected. Since Windows NTFS is not a case-sensitive file system, the expected results is that I can search in files using any case...
If I ask VS Code to search only .PRG files, it shows up wrong results If I change the case of file types I want, other wrong result is shown. In a short way, VS Code Find in Files is using a case sensitive search for the file extensions in file system, when it should use a c...
defined(WANT_CASE_SENSITIVE_TARGETS) if (*name != '.') { const char *n; char *lname, *ln; lname = xstrdup (name); for (n = name, ln = lname; *n != '\0'; ++n, ++ln) if (isupper ((unsigned char)*n)) *ln = tolower ((unsigned char)*n); else *ln = *n; *ln...
// - onWindowChange: A dirty file is automatically saved when the window loses focus // "files.autoSave": "onFocusChange", // Controls the font size in pixels. "editor.fontSize": 14, // The number of spaces a tab is equal to. This setting is overridden based on the file contents ...
// - workbench.action.terminal.selectToPreviousLine 1646 // - workbench.action.terminal.sendSequence 1647 // - workbench.action.terminal.split 1648 // - workbench.action.terminal.splitInActiveWorkspace 1649 // - workbench.action.terminal.toggleFindCaseSensitiveTerminalFocus ...
This allows for dictionaries to be checked into the project.The cities dictionary is used for every file type, because it was added to the list to dictionaries. The medicalTerms dictionary is only used when editing markdown or plaintext files....
function getIndexByword (word, text, caseSensitive, weight) { if (!word || !text) { return []; }; var startIndex = 0; // 每次匹配的开始索引 var index = -1; // 匹配到的索引值 var result = []; // 匹配结果 if (!caseSensitive) { word = word.toLowerCase(); te...
VSCode(全称:Visual Studio Code)是一款由微软开发且跨平台的现代化轻量化免费开源代码编辑器。 VSCode支持语法高亮、代码自动补全(又称 IntelliSense)、代码重构、查看定义功能,并且内置了命令行工具和 Git 版本控制系统。 用户可以更改主题和键盘快捷方式实现个性化设置,也可以通过内置的扩展程序商店安装扩展以拓展软件功...
"search.smartCase": false, // 控制在搜索文件时是否使用全局 `.gitignore` 和 `.ignore` 文件。 "search.useGlobalIgnoreFiles": false, // 控制在搜索文件时是否使用 `.gitignore` 和 `.ignore` 文件。 "search.useIgnoreFiles": true, // 弃用。当使用仅 PCRE2 支持的正则表达式功能时,将自...
{"out":true,// set this to false to include"out"folder in search results"dist":true,"**/node_modules":true,"coverage":true,"languageServer*/**":true,".vscode-test":true,".vscode test":true},"[python]":{"editor.detectIndentation":false,"editor.insertSpaces":true,"editor.tabSize":4...