diff --git a/README.md b/README.md index 267abf4..0ad003f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ flycheck-julia — Flycheck for Julia [![MELPA Stable](https://stable.melpa.org/packages/flycheck-julia-badge.svg)](https://stable.melpa.org/#/flycheck-julia) [![Build master](https://api.travis-ci.org/gdkrmr/flycheck-julia.svg?branch=master)](https://travis-ci.org/gdkrmr/flycheck-julia) -- Add a [Julia][] syntax checker for [Emacs][] and [Flycheck][] using [Lint.jl][] +A [Julia][] syntax checker for [Emacs][] and [Flycheck][] using [Lint.jl][] Installation ===== @@ -48,7 +48,9 @@ Installing from a fresh emacs install ```elisp (require 'package) (add-to-list 'package-archives '("MELPA Stable" . "https://stable.melpa.org/packages/")) - (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")) + ;; If you want always the latest versions uncomment the following line: + ;; (add-to-list 'package-archives '("MELPA" . "https://melpa.org/packages/")) + (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/")) (package-initialize) ``` diff --git a/flycheck-julia.el b/flycheck-julia.el index 15c2f15..33367e8 100644 --- a/flycheck-julia.el +++ b/flycheck-julia.el @@ -97,6 +97,7 @@ CHECKER and CALLBACK are flycheck requirements." (start-process-shell-command "flycheck-julia-server" "*julia-linter*" ;; TODO: use pipes or something different than an open port + ;; TODO: decide how too handle query on exit (set-process-query-on-exit-flag) (concat flycheck-julia-executable " -e \'using Lint\; lintserver\(" (number-to-string flycheck-julia-port)