All Projects → timmhirsens → Vscode Elixir

timmhirsens / Vscode Elixir

Licence: mit
This plugin is no longer maintained!

Programming Languages

elixir
2628 projects

Projects that are alternatives of or similar to Vscode Elixir

Xmake Vscode
🍩 A XMake integration in Visual Studio Code
Stars: ✭ 84 (-67.94%)
Mutual labels:  vscode, editor-plugin
Ionide Vscode Fsharp
VS Code plugin for F# development
Stars: ✭ 660 (+151.91%)
Mutual labels:  vscode, editor-plugin
vscode-angular-html
Angular syntax highlighting for HTML templates
Stars: ✭ 35 (-86.64%)
Mutual labels:  vscode
container
Custom containers for various usecases
Stars: ✭ 12 (-95.42%)
Mutual labels:  vscode
root-file-viewer
View ROOT files directly in VS Code!
Stars: ✭ 20 (-92.37%)
Mutual labels:  vscode
vscode-auto-npx
Auto resolving local Node.js binaries in VS Code terminal.
Stars: ✭ 87 (-66.79%)
Mutual labels:  vscode
docker-vscode-php
Visual Studio Code in a container for PHP/Drupal development
Stars: ✭ 44 (-83.21%)
Mutual labels:  vscode
everforest-vscode
Everforest Color Scheme for Visual Studio Code
Stars: ✭ 76 (-70.99%)
Mutual labels:  vscode
Colab Ssh
Connect to Google Colab using SSH
Stars: ✭ 249 (-4.96%)
Mutual labels:  vscode
vscode-appcelerator-titanium
Appcelerator development tools and UI package for Visual Studio Code.
Stars: ✭ 35 (-86.64%)
Mutual labels:  vscode
GIT
📚 GIT 사용법을 배워 봅시다 🔥
Stars: ✭ 63 (-75.95%)
Mutual labels:  vscode
VSCode-Anywhere
VSCode with preconfigured tools for your programming languages : binaries, settings, extensions and documentations
Stars: ✭ 26 (-90.08%)
Mutual labels:  vscode
project-japanese-proofreading
テキストファイルやMarkdownファイルの日本語の文章をチェックするVS Codeの拡張機能
Stars: ✭ 81 (-69.08%)
Mutual labels:  vscode
dotfiles
Configs for apps I care about
Stars: ✭ 19 (-92.75%)
Mutual labels:  vscode
vscodium.github.io
a landing page for info about vscodium
Stars: ✭ 44 (-83.21%)
Mutual labels:  vscode
gloom
A dark and gloomy pastel color syntax theme for Visual Studio Code
Stars: ✭ 31 (-88.17%)
Mutual labels:  vscode
config-public
Linux/WSL config to optimize ergonomics, security, and productivity: vim/neovim, zsh, tmux, i3, emacs, vscode, ipython, jupyter, ranger, fzf, kitty, xkb, selfquant, firejail, systemd, etc
Stars: ✭ 14 (-94.66%)
Mutual labels:  vscode
vscode-ecsstractor
Extracting selectors from HTML / JSX / TSX and generate CSS file.
Stars: ✭ 45 (-82.82%)
Mutual labels:  vscode
cloud-computer
☁️ The Cloud Native Computer
Stars: ✭ 5 (-98.09%)
Mutual labels:  vscode
Vscode Stylelint
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 260 (-0.76%)
Mutual labels:  vscode

This project is no longer maintained. Please checkout https://marketplace.visualstudio.com/items?itemName=JakeBecker.elixir-ls as an alternative

Elixir Support for Visual Studio Code

Download Download Gitter Build Status

Read the CHANGELOG to see what has changed in this extension over time.

This extension adds rich elixir language support to VS Code including:

  • Syntax Coloring
  • Snippets
  • Intellisense

Features

Autocomplete

example

Problems

problems

Theme used in the examples: 'Atom One Dark'

Using

Make sure you have installed elixir with all its dependencies correctly and make sure it's in your path. You can check this by typing elixir --version into a terminal.

There currently is no option to change the path of the elixir executable. If you feel like there is a need for this, feel free to open up a pull request.

Autocomplete

Autocomplete/Intellisense is implemented using the wonderful ElixirSense project. For the auto complete to work properly, you will have to recompile your source code from time to time (using mix compile) for it to pick up the latest changes to your source code.

If your are having issues with the new implmentation you can switch back to the old one (alchemist server) by setting the property elixir.useElixirSense to false

Problem Reporting

To get compile warning / errors and test failures in your problem view, add the following to your .vscode/tasks.json:

{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "build",
      "type": "shell",
      "command": "mix compile",
      "problemMatcher": [
        "$mixCompileError",
        "$mixCompileWarning"
      ],
      "group": {
        "kind": "build",
        "isDefault": true
      }
    },
    {
      "label": "test",
      "type": "shell",
      "command": "mix test",
      "problemMatcher": [
        "$mixCompileError",
        "$mixCompileWarning",
        "$mixTestFailure"
      ],
      "group": {
        "kind": "test",
        "isDefault": true
      }
    }
  ]
}

See https://code.visualstudio.com/docs/editor/tasks for the documentation about tasks or https://code.visualstudio.com/docs/editor/tasks-appendix#_schema-for-tasksjson for the documentation about the tasks.json schema.

Emmet completions

To get Emmet support in html.eex files add the following to your user settings (Ctrl + ,):

"emmet.includeLanguages": {"HTML (Eex)": "html"}

Contributors

These wonderful people have so far contributed to this extension. Feel free to add your name here:

(This list is in no particular order.)

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].