All Projects → julia-vscode → Languageserver.jl

julia-vscode / Languageserver.jl

Licence: other
An implementation of the Microsoft Language Server Protocol for the julia language.

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Languageserver.jl

Azure Sdk For Net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://docs.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
Stars: ✭ 3,079 (+1280.72%)
Mutual labels:  microsoft
Powerplatformconnectors
This is a repository for Microsoft Power Automate, Power Apps, and Azure Logic Apps connectors
Stars: ✭ 209 (-6.28%)
Mutual labels:  microsoft
Pixel level land classification
Tutorial demonstrating how to create a semantic segmentation (pixel-level classification) model to predict land cover from aerial imagery. This model can be used to identify newly developed or flooded land. Uses ground-truth labels and processed NAIP imagery provided by the Chesapeake Conservancy.
Stars: ✭ 217 (-2.69%)
Mutual labels:  microsoft
Lnkup
Generates malicious LNK file payloads for data exfiltration
Stars: ✭ 205 (-8.07%)
Mutual labels:  microsoft
Fsautocomplete
F# language server using Language Server Protocol
Stars: ✭ 208 (-6.73%)
Mutual labels:  language-server-protocol
Reset Windows Update Tool
Troubleshooting Tool with Windows Updates (Developed in Dev-C++).
Stars: ✭ 208 (-6.73%)
Mutual labels:  microsoft
Powershell Scripts
PowerShell scripts ranging from SCCM, MSO, AD, and other corporate enterprise uses... to sending cat facts to coworkers.
Stars: ✭ 201 (-9.87%)
Mutual labels:  microsoft
Airsim Neurips2019 Drone Racing
Drone Racing @ NeurIPS 2019, built on Microsoft AirSim
Stars: ✭ 220 (-1.35%)
Mutual labels:  microsoft
Cquery
C/C++ language server supporting multi-million line code base, powered by libclang. Emacs, Vim, VSCode, and others with language server protocol support. Cross references, completion, diagnostics, semantic highlighting and more
Stars: ✭ 2,338 (+948.43%)
Mutual labels:  language-server-protocol
Hololens facial recognition
A Unity hololens app to detect faces and display their attributes
Stars: ✭ 217 (-2.69%)
Mutual labels:  microsoft
Sharepointdsc
The SharePointDsc PowerShell module provides DSC resources that can be used to deploy and manage a SharePoint farm
Stars: ✭ 205 (-8.07%)
Mutual labels:  microsoft
Ccls
C/C++/ObjC language server supporting cross references, hierarchies, completion and semantic highlighting
Stars: ✭ 2,756 (+1135.87%)
Mutual labels:  language-server-protocol
Intelephense
Intellisense for PHP
Stars: ✭ 212 (-4.93%)
Mutual labels:  language-server-protocol
Mmlspark
Simple and Distributed Machine Learning
Stars: ✭ 2,899 (+1200%)
Mutual labels:  microsoft
Azure Devops Migration Tools
Azure DevOps Migration Tools allow you to migrate Teams, Backlogs, Tasks, Test Cases, and Plans & Suits from one Project to another in Azure DevOps / TFS both within the same Organisation, and between Organisations.
Stars: ✭ 218 (-2.24%)
Mutual labels:  microsoft
Accessibility Insights Windows
Accessibility Insights for Windows
Stars: ✭ 202 (-9.42%)
Mutual labels:  microsoft
Sql Language Server
SQL Language Server
Stars: ✭ 210 (-5.83%)
Mutual labels:  language-server-protocol
Haskell Ide Engine
The engine for haskell ide-integration. Not an IDE
Stars: ✭ 2,433 (+991.03%)
Mutual labels:  language-server-protocol
Lua Lsp
A Lua language server
Stars: ✭ 219 (-1.79%)
Mutual labels:  language-server-protocol
Lsp
Haskell library for the Microsoft Language Server Protocol
Stars: ✭ 212 (-4.93%)
Mutual labels:  language-server-protocol

LanguageServer

Project Status: Active - The project has reached a stable, usable state and is being actively developed. codecov

Overview

This package implements the Microsoft Language Server Protocol for the Julia programming language.

Text editors with a client for the Language Server Protocol are able to make use of the Julia Language Server for various code editing features:

Installation and Usage

Documentation: Dev

To install LanguageServer.jl into the current environment:

using Pkg
Pkg.add("LanguageServer")

To run an instance of LanguageServer.jl on env_path, you can run Julia as follows:

julia --project=/path/to/LanguageServer.jl/environment \
  -e "using LanguageServer, LanguageServer.SymbolServer; runserver()" \
  <env_path>

If env_path is not specified, the language server will run on the parent project of pwd or on the default .julia/environments/v#.# if there is no parent project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].