forked from ethereum/emacs-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62c8495
commit 6379ad9
Showing
4 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,9 @@ | |
;; Copyright (C) 2015-2018 Lefteris Karapetsas | ||
|
||
;; Author: Lefteris Karapetsas <[email protected]> | ||
;; Keywords: languages | ||
;; Keywords: languages, solidity, flycheck | ||
;; Version: 0.1.0 | ||
;; Package-Requires: ((flycheck "32-cvs") (solidity-mode "0.1.9")) | ||
|
||
;; 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 | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
;; Copyright (C) 2015-2018 Lefteris Karapetsas | ||
|
||
;; Author: Lefteris Karapetsas <[email protected]> | ||
;; Keywords: languages | ||
;; Keywords: languages, solidity | ||
;; Version: 0.1.9 | ||
|
||
;; This program is free software; you can redistribute it and/or modify | ||
|
@@ -529,13 +529,6 @@ Cursor must be at the function's name. Does not currently work for constructors | |
;; set hooks | ||
(run-hooks 'solidity-mode-hook)) | ||
|
||
;;; --- interface with flycheck if existing --- | ||
(when (require 'flycheck nil 'noerror) | ||
(require 'solidity-flycheck)) | ||
|
||
;;; --- autcompletion back-end for company-mode, loads if company mode is installed --- | ||
(when (require 'company nil 'noerror) | ||
(require 'company-solidity)) | ||
|
||
(provide 'solidity-mode) | ||
;;; solidity-mode.el ends here |