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

Commit

Permalink
Merge pull request #13 from gdkrmr/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
gdkrmr authored Jul 15, 2017
2 parents 0de5bcd + f90d0f1 commit 0eaa321
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
=====
Expand Down Expand Up @@ -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)
```

Expand Down
1 change: 1 addition & 0 deletions flycheck-julia.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0eaa321

Please sign in to comment.