I'm trying to set up an editor for my Julia installation, after a while I 
found on youtube a nice video like this
https://www.youtube.com/watch?v=17NZC2rgfaY

I attended all the procedure and I modified the juno script as suggested by 
the video and I reported it here as an attached script, but unfortunately 
when I open "light table" it says that he can not connect to julia.

I am quite sure of the path because I typed it on the windows command line 
and I opened the julia command line.

Is there someone who can say me what's wrong? 
;; User behaviors
;; -----------------------------
;; Behaviors are stored as a set of diffs that are merged together
;; to create the final set of functionality that makes up Light Table. You can
;; modify these diffs to either add or subtract functionality.
;;
;; Behaviors are added to tags, objects with those tags then automatically gain
;; whatever logic the behavior imparts. To see a list of user-level behaviors,
;; start typing a word related to the functionality you want in between the 
square
;; brackets (e.g. "theme").

[
 ;; The app tag is kind of like global scope. You assign behaviors that affect
 ;; all of Light Table to it.
 [:app :lt.objs.style/set-skin "dark"]
 [:app :lt.objs.plugins/load-js "user_compiled.js"]
 [:app :lt.objs.langs.julia/julia-path 
"C:\\Users\\fedel_000\\AppData\\Local\\Julia-0.3.11\\bin\\julia.exe]
 

 ;; The editor tag is applied to all editors
 [:editor :lt.objs.editor/no-wrap]
 [:editor :lt.objs.style/set-theme "june-night"]

 ;; Here we can add behaviors to just clojure editors
 [:editor.clojure :lt.plugins.clojure/print-length 1000]

 ;; Behaviors specific to a user-defined object
 [:user.hello :lt.plugins.user/on-close-destroy]

 ;; To subtract a behavior, prefix the name with '-' e.g.
 ;;  [:app :-lt.objs.intro/show-intro]
]

Reply via email to