- Neovim >= 1.6-dev
- Elixir host
Windows platform is not supported.
- Add the plugin to vim runtime.
vim-plug example:
Plug 'dm1try/ilexir'
- Run
UpdateElixirPlugins
command. - Restart the editor.
On the way: Take a look at this asciinema demo for a quick start.
IlexirStartApp /path/to/app
- runs a hosted app in the specified directory.IlexirStartInWorkingDir
- the shortcut for running in current working directory.
Available options:env
- app enviroment (default "dev")script
- start script for mix apps (default "app.start")
IlexirStartInWorkingDir --env dev --script phoenix.server
IlexirOpenIex
- opens IEx for a running app.IlexirEval
- evals selected lines.
ilexir_autocompile
- 1
(default) or 0
, enable/disable auto compiling.
The file can be compiled manually by IlexirCompile
command. See the architecture section for details.
Changes for this var are applied in runtime
:let ilexir_autocompile = 0
- "smart" omni completion
- "on-the-fly" linters
- ast (it validates the AST:) it's only usefull if autocompilation is disabled)
- compiler (compiler errors and warnings must be fixed ASAP)
- xref (it validates the runtime code for unreachable module/functions)
- app integration
- multiple applications support (with different enviroments)
- iex shell (stdio is piped to a separated buffer)
- "live" evaluation
-
jump to definition
-
open online documentation
-
for elixir packages using hexdocs.pm (respects the package version)
-
for Elixir core (also respects the version)
-
for erlang stdlib (does not respect OTP version, opens docs for the latest release)
-
core components are editor agnostic
"Hosted" app is your app that is bootstrapped with bunch of hosted components. The app is running on remote erlang node.
In case you are playing around with a simple script outside of any app,
it will be just a node with runningelixir
on it. See the demo above.
The hosted components work inside your running app enviroment, so they can inspect the app and provide the data on demand to "editor-specific" components. They talk to each other through :rpc
module.
+ +---------------------+
| +---> HOSTED COMPONENTS +--------+
| | +---------------------+ |
nvim + elixir host | | | compiler | |
| | +---------------+ |
+----------------------+ | | | linters | |
| | | | | +---------------+ |
| +----- | +----+ | | | | evaluator | |
| |-------+ | +------+ | | | +---------------+ |
| |----| | | | | | ... | |
| |----| | +-----+ | | | +---------------+ |
| |-------+ | |------+ | | | |
| +-------+ | +----+ | | +------------------+ rpc +----------------v-------+
| | | | | CORE <-------> NODES(app & hosted) |
+----------------------+ | +------------------+ +------------------------+
| +----+ | | | hosted app | | app1.dev |
| | | | manager | +------------------+
+----------------------+ | +--------------+ +------------------+
| | nvim specific| | app1.test |
| | components: | +------------------+
| | +----------+ | +------------------+
| | | quickfix | | | umbrella1.dev |
| | +----------+ | +------------------+
| | | toolwin | | +------------------+
| | +----------+ | | ... |
| +--------------+ +------------------+
|
+
Elixir core building blocks(def/defmodule/alias/use/import
) are macros that are applied directly to AST so the provided solution is "compile-first". The information provided by plugin components will be a more "accurate" if a working file is processed by the Ilexir compiler. The compiler pre-saves(in memory) useful data between compilations(such as ENV module struct) and also notifies other components during/after the compilation that they can handle the data for their own needs.
Clone the repo and add it to neovim runtime.
vim-plug example:
Plug '/home/user/Projects/ilexir'
ElixirHostLog
and ElixirReloadScript
are useful Elixir host commands for a playing with local changes.
Run tests:
mix espec
Coming soon