Skip to content

Commit

Permalink
feat(julials): add JuliaActivateEnv to activate a julia environment
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Sep 23, 2024
1 parent dd32991 commit 85e1c50
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions lua/lspconfig/server_configurations/julials.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
local util = require 'lspconfig.util'

local function activate_env()
local bufnr = vim.api.nvim_get_current_buf()
local julials_client = util.get_active_client_by_name(bufnr, 'julials')
if julials_client then
local julia_project_files = { 'Project.toml', 'JuliaProject.toml' }
local depot_envs = vim.fs.normalize(vim.env.JULIA_DEPOT_PATH or vim.fn.expand '~/.julia') .. '/environments'
local environments = {}
vim.list_extend(environments, vim.fs.find(julia_project_files, { type = 'file', upward = true, limit = math.huge }))
vim.list_extend(
environments,
vim.fs.find(function(name, path)
return vim.tbl_contains(julia_project_files, name) and string.sub(path, #depot_envs + 1):match '^/[^/]*$'
end, { path = depot_envs, type = 'file', limit = math.huge })
)
environments = vim.tbl_map(vim.fs.dirname, environments)
vim.ui.select(environments, { prompt = 'Select a Julia environment' }, function(environment)
if environment then
julials_client.notify('julia/activateenvironment', { envPath = environment })
vim.notify('Julia environment activated: \n`' .. environment .. '`', vim.log.levels.INFO)
end
end)
else
vim.notify(
'method julia/activateenvironment is not supported by any servers active on the current buffer',
vim.log.levels.WARN
)
end
end

local cmd = {
'julia',
'--startup-file=no',
Expand Down Expand Up @@ -49,6 +78,14 @@ return {
end,
single_file_support = true,
},
commands = {
JuliaActivateEnv = {
function()
activate_env()
end,
description = 'Activate a Julia environment',
},
},
docs = {
description = [[
https://github.com/julia-vscode/julia-vscode
Expand Down

0 comments on commit 85e1c50

Please sign in to comment.