Skip to content
This repository was archived by the owner on Nov 23, 2021. It is now read-only.

Commit 0eaa321

Browse files
authored
Merge pull request #13 from gdkrmr/dev
Dev
2 parents 0de5bcd + f90d0f1 commit 0eaa321

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1111
Installation
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

flycheck-julia.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)