gitextract__62fiqaz/ ├── .dir-locals.el ├── .github/ │ ├── pull_request_template.md │ └── workflows/ │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Eldev ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.org ├── eglot-fsharp.el ├── fsharp-mode-font.el ├── fsharp-mode-structure.el ├── fsharp-mode-util.el ├── fsharp-mode.el ├── inf-fsharp-mode.el └── test/ ├── CompileCommandData/ │ ├── Directory With Spaces/ │ │ ├── noproj/ │ │ │ └── test.fs │ │ └── proj/ │ │ ├── test.fs │ │ └── test.fsproj │ ├── noproj/ │ │ └── test.fs │ └── proj/ │ ├── Makefile │ ├── test.fs │ └── test.fsproj ├── FindSlnData/ │ ├── bar.sln │ ├── noproj/ │ │ └── test.fs │ ├── sln/ │ │ └── foo.sln │ └── test.fsproj ├── StructureTest/ │ ├── Blocks.fs │ ├── BracketIndent.fs │ ├── ContinuationLines.fs │ ├── Literals.fs │ ├── Nesting.fs │ └── Relative.fs ├── Test1/ │ ├── Error.fs │ ├── FileTwo.fs │ ├── NoProject.fs │ ├── Pervasive.fs │ ├── Program.fs │ ├── Script.fsx │ └── Test1.fsproj ├── Test2/ │ ├── Main.fs │ └── Test2.fsproj ├── apps/ │ ├── FQuake3/ │ │ ├── NativeMappings.fs │ │ └── NativeMappings.fs.faceup │ ├── FSharp.Compatibility/ │ │ ├── Format.fs │ │ └── Format.fs.faceup │ └── RecordHighlighting/ │ ├── Test.fsx │ └── Test.fsx.faceup ├── eglot-fsharp-integration-util.el ├── expression.fsx ├── fsharp-mode-font-tests.el ├── fsharp-mode-structure-tests.el ├── fsi-tests.el ├── integration-tests.el └── nuget.fsx