emacs-fsharp-mode icon indicating copy to clipboard operation
emacs-fsharp-mode copied to clipboard

F# Emacs mode

Results 48 emacs-fsharp-mode issues
Sort by recently updated
recently updated
newest added

### Description After using Bolero template command to create a new project opening the Main.fs results in a message about the file not being a part of the project. ```/data/projects/fsharp/SignUp/src/SignUp.Client/Main.fs...

### Description We can use dotnet fsi on the inferior mode, but we can't send any code ### Repro steps `C-c C-r` of some code in F# buffer and use...

### Description I cannot get fsharp-mode to correctly indent nested arrays ### Repro steps Try to type something like ```fsharp [ [ 12 13 ] ] ``` ### Expected behavior...

### Description I cannot get fsharp-mode to load any project file: the simplest I've tried so far has been the one generated by `dotnet new classlib -lang f#` which also...

https://github.com/fsharp/emacs-fsharp-mode/blob/96513ea53b51dd5abc32c0a0d5b1443484e367be/fsharp-mode-font.el#L77 ``` fsharp static member FMapC2 (f: float -> float -> float) (c1, c2) = {r=f c1.r c2.r; g = f c1.g c2.g; b = f c1.b c2.b} ``` Type...

Is it possible to add tab completion for inferior-fsharp, just like inferior-python or utop?

enhancement
help wanted

I may not fully understand the workings of the `folding` minor mode, and how it interacts with other modes, however this one _may_ be an easy addition: [Documentation on folding](http://www.emacswiki.org/emacs/FoldingMode)...

enhancement

### Description Hi, When I run the example from [fslab](https://fslab.org/getting-started/), the completion is not working when there is some backquote. ### Repro steps There is two examples, which one is...

### Description fsharp-mode cannot displays type signatures and tooltips for input fsx files. also fsharp interactive and run through sfsharp seems to not work. it is possibly connected ### Repro...

### Description Tab completion seems not to work as I would expect for enums. ### Repro steps Start with something like: ```f# type Color = Red=0 ``` Try to add...