Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add manual update example to readme #33

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,16 @@ displays:
#+begin_quote
[ Info: Received new data from Julia Symbol Server.
#+end_quote

*** Do I have to wait for a new release to update the server's dependecies?
No, you can manually update the self-contained julia environment that eglot-jl
is configured to create by default. Using the REPL, as an example:

#+begin_src julia
julia> using Pkg
julia> cd("/home/username/.emacs.d/elpa/eglot-jl-20211208.359/") # where your version of eglot-jl is
julia> Pkg.activate(".")
julia> Pkg.update()
#+end_src

This will update the dependencies of the server to latest compatible version.
non-Jedi marked this conversation as resolved.
Show resolved Hide resolved