Add a module for F# programming (#1334)
This commit is contained in:
parent
0eb5896530
commit
4f3a700b16
5 changed files with 62 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
||||||
* Add a Racket module.
|
* Add a Racket module.
|
||||||
* Add a Lua module.
|
* Add a Lua module.
|
||||||
* Auto-install `racket-mode` if needed.
|
* Auto-install `racket-mode` if needed.
|
||||||
|
* Add a F# module.
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|
||||||
|
|
|
@ -65,6 +65,7 @@ The following programming languages have enhanced support in Prelude:
|
||||||
- [Emacs Lisp](modules/emacs_lisp.md)
|
- [Emacs Lisp](modules/emacs_lisp.md)
|
||||||
- Erlang
|
- Erlang
|
||||||
- Elixir
|
- Elixir
|
||||||
|
- [F#](modules/fsharp.md)
|
||||||
- Go
|
- Go
|
||||||
- Haskell
|
- Haskell
|
||||||
- JavaScript
|
- JavaScript
|
||||||
|
|
11
doc/modules/fsharp.md
Normal file
11
doc/modules/fsharp.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Prelude F#
|
||||||
|
|
||||||
|
!!! Note
|
||||||
|
|
||||||
|
This module builds on top of the shared [Programming](programming.md) module.
|
||||||
|
|
||||||
|
## F# mode
|
||||||
|
|
||||||
|
This module uses
|
||||||
|
[`fsharp-mode`](https://github.com/fsharp/emacs-fsharp-mode) and
|
||||||
|
`eglot-fsharp` with almost no extra configuration.
|
48
modules/prelude-fsharp.el
Normal file
48
modules/prelude-fsharp.el
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
;;; prelude-fsharp.el --- Emacs Prelude: F# programming support.
|
||||||
|
;;
|
||||||
|
;; Author: Andre Boechat <andre.boechat@tutanota.com>
|
||||||
|
|
||||||
|
;; This file is not part of GNU Emacs.
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
|
||||||
|
;; Basic setup for F# programming based on fsharp-mode and Eglot.
|
||||||
|
|
||||||
|
;;; License:
|
||||||
|
|
||||||
|
;; This program is free software; you can redistribute it and/or
|
||||||
|
;; modify it under the terms of the GNU General Public License
|
||||||
|
;; as published by the Free Software Foundation; either version 3
|
||||||
|
;; of the License, or (at your option) any later version.
|
||||||
|
;;
|
||||||
|
;; This program is distributed in the hope that it will be useful,
|
||||||
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
;; GNU General Public License for more details.
|
||||||
|
;;
|
||||||
|
;; You should have received a copy of the GNU General Public License
|
||||||
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
||||||
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
;; Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(require 'prelude-programming)
|
||||||
|
(prelude-require-packages '(fsharp-mode eglot-fsharp))
|
||||||
|
|
||||||
|
(with-eval-after-load 'fsharp-mode
|
||||||
|
(defun prelude-fsharp-mode-defaults ()
|
||||||
|
;; A reasonable default path to the F# compiler and interpreter on
|
||||||
|
;; Unix-like systems.
|
||||||
|
;; https://github.com/fsharp/emacs-fsharp-mode#compiler-and-repl-paths
|
||||||
|
(setq inferior-fsharp-program "dotnet fsi --readline-")
|
||||||
|
(require 'eglot-sharp))
|
||||||
|
|
||||||
|
(setq prelude-fsharp-mode-hook 'prelude-fsharp-mode-defaults)
|
||||||
|
|
||||||
|
(add-hook 'fsharp-mode-hook (lambda ()
|
||||||
|
(run-hooks 'prelude-sharp-mode-hook))))
|
||||||
|
|
||||||
|
(provide 'prelude-fsharp)
|
||||||
|
|
||||||
|
;;; prelude-fsharp.el ends here
|
|
@ -73,6 +73,7 @@
|
||||||
(require 'prelude-emacs-lisp)
|
(require 'prelude-emacs-lisp)
|
||||||
;; (require 'prelude-erlang)
|
;; (require 'prelude-erlang)
|
||||||
;; (require 'prelude-elixir)
|
;; (require 'prelude-elixir)
|
||||||
|
;; (require 'prelude-fsharp)
|
||||||
;; (require 'prelude-go)
|
;; (require 'prelude-go)
|
||||||
;; (require 'prelude-haskell)
|
;; (require 'prelude-haskell)
|
||||||
(require 'prelude-js)
|
(require 'prelude-js)
|
||||||
|
|
Loading…
Reference in a new issue