Renaud Paquay
Renaud Paquay
The fact that `\` is an escape character for `\t` (i.e. `TAB`) for example makes the "text search" feature less intuitive, but copy/pasting any text (from a VS Editor window,...
The list of default files to include/exclude for Chromium enlistments was written years ago and has not been updated since then. For example, the search pattern exclude "*.s" files (assembly...
As a .NET app, the VsChromium server process will only use one process group by default. This limits the # of cores to 64 maximum. According to https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/runtime/thread-useallcpugroups-element, a simple...
VsChromium should support long paths, using the long path syntax, as long paths are becoming more frequent with large/complex applications. It is not clear is Visual Studio will allow opening...
* Add `FileInfo.getKey()` that returns a file identifier than can be used to compare efficiently files for equality. If the key is not available, the method returns `null`. * This...
Windows: Use NtQueryDirectoryFile to enumerate file entries * NtQueryDirectoryFile is more efficient than FindFindFile/FindNextFile * Include a minimal copy of "ntifs.h" containing the definitions required to call NtQueryDirectoryFile and RtlNtStatusToDosError....
Currently, the `mkstream` command creates a json file with the stream source and type. The mount.stream command then reads the json file and creates a custom stream implementation according to...
socketfs current only support the `ws:` protocol. It should support the `wss:` protocol too, similar to the node.js `http-server` command. So, we should add the following options to the socketfs...
Every time we run a command in wash (e.g. `echo foo`), we leak 2 instances of JsExecuteContext. It seems the culprit is the call to `dependsOn` in the `ExecuteContext` contructor:...
``` Type `exit` or Ctrl-D to exit. jsfs:/> echo 'hello' >text.txt jsfs:/> cat text.txt hello jsfs:/> sort