This repository was archived by the owner on Nov 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ flycheck-julia — Flycheck for Julia
66[ ![ MELPA Stable] ( https://stable.melpa.org/packages/flycheck-julia-badge.svg )] ( https://stable.melpa.org/#/flycheck-julia )
77[ ![ Build master] ( https://api.travis-ci.org/gdkrmr/flycheck-julia.svg?branch=master )] ( https://travis-ci.org/gdkrmr/flycheck-julia )
88
9- - Add a [ Julia] [ ] syntax checker for [ Emacs] [ ] and [ Flycheck] [ ] using [ Lint.jl] [ ]
9+ A [ Julia] [ ] syntax checker for [ Emacs] [ ] and [ Flycheck] [ ] using [ Lint.jl] [ ]
1010
1111Installation
1212=====
@@ -48,7 +48,9 @@ Installing from a fresh emacs install
4848 ``` elisp
4949 (require 'package)
5050 (add-to-list 'package-archives '("MELPA Stable" . "https://stable.melpa.org/packages/"))
51- (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/"))
51+ ;; If you want always the latest versions uncomment the following line:
52+ ;; (add-to-list 'package-archives '("MELPA" . "https://melpa.org/packages/"))
53+ (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/"))
5254 (package-initialize)
5355 ```
5456
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ CHECKER and CALLBACK are flycheck requirements."
9797 (start-process-shell-command
9898 " flycheck-julia-server" " *julia-linter*"
9999 ; ; TODO: use pipes or something different than an open port
100+ ; ; TODO: decide how too handle query on exit (set-process-query-on-exit-flag)
100101 (concat flycheck-julia-executable
101102 " -e \' using Lint\; lintserver\( "
102103 (number-to-string flycheck-julia-port)
You can’t perform that action at this time.
0 commit comments