Created
January 2, 2016 16:20
-
-
Save mikavilpas/635c4958f6d8d26b2bde to your computer and use it in GitHub Desktop.
Emacs Fsharp-mode company complete proof of concept
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
(defun fsharp-ac/electric-dot () | |
(interactive) | |
(unless (company-in-string-or-comment) | |
(company-complete))) | |
(define-key evil-insert-state-map (kbd "<f12>") | |
(lambda () | |
(interactive) | |
(fsharp-ac/electric-dot))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment