Last active
February 24, 2021 12:00
-
-
Save syusui-s/3a6b5b578f1c54a9bf9b497303b1267e to your computer and use it in GitHub Desktop.
vim-quickrun runner plugin for F# Script (.fsx) : run your .fsx more quickly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:quickrun_config.fsharp = { | |
| \ 'type': 'fsharp/concurrent_process/dotnet_fsi', | |
| \ } | |
| let g:quickrun_config["fsharp/concurrent_process/dotnet_fsi"] = { | |
| \ 'runner': 'concurrent_process', | |
| \ 'command': 'dotnet', | |
| \ 'cmdopt': 'fsi', | |
| \ 'runner/concurrent_process/load': '#load "%S";;', | |
| \ 'runner/concurrent_process/prompt': '> $', | |
| \ 'tempfile': '%{tempname()}.fsx', | |
| \ } | |
| let g:quickrun_config["fsharp/concurrent_process/fsharpi"] = { | |
| \ 'runner': 'concurrent_process', | |
| \ 'command': 'fsharpi', | |
| \ 'runner/concurrent_process/load': '#load "%S";;', | |
| \ 'runner/concurrent_process/prompt': '> $', | |
| \ 'tempfile': '%{tempname()}.fsx', | |
| \ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment