Skip to content

Instantly share code, notes, and snippets.

@mikavilpas
Created January 2, 2016 16:20
Show Gist options
  • Save mikavilpas/635c4958f6d8d26b2bde to your computer and use it in GitHub Desktop.
Save mikavilpas/635c4958f6d8d26b2bde to your computer and use it in GitHub Desktop.
Emacs Fsharp-mode company complete proof of concept
(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