xonsh/docs/editors.rst

81 lines
2 KiB
ReStructuredText
Raw Normal View History

2020-03-03 12:30:33 -05:00
2020-10-07 15:00:33 +03:00
======================
Editor and IDE Support
======================
2020-03-03 12:30:33 -05:00
.. contents::
:local:
2020-10-07 15:00:33 +03:00
Visual Studio Code (VSCode)
===========================
There is `xonsh extension for VSCode`_. To install search "xonsh" using extensions
menu or just press ``F1`` and run without `>` preceding:
.. code-block::
ext install jnoortheen.xonsh
.. _xonsh extension for VSCode: https://marketplace.visualstudio.com/items?itemName=jnoortheen.xonsh
2020-03-03 12:30:33 -05:00
Emacs
=====
2020-08-20 01:32:04 -04:00
Emacs Xonsh mode
----------------
2020-03-03 12:30:33 -05:00
There is an emacs mode for editing xonsh scripts available from the
`MELPA repository`_. If you are not familiar see the installation
instructions there.
Then just add this line to your emacs configuration file:
.. code-block:: emacs-lisp
(require 'xonsh-mode)
.. _MELPA repository: https://melpa.org/#/xonsh-mode
2020-08-20 01:32:04 -04:00
Xonsh Comint buffer
-------------------
You can use xonsh as your `interactive shell in Emacs
<https://www.gnu.org/software/emacs/manual/html_node/emacs/Interactive-Shell.html>`_
in a Comint buffer. This way you keep all the Emacs editing power
in the shell, but you loose xonsh's completion feature.
Make sure you install xonsh with readline support and in your
``.xonshrc`` file define
.. code-block:: xonsh
$SHELL_TYPE = 'readline'
Also, in Emacs set ``explicit-shell-file-name`` to your xonsh executable.
Xonsh Ansi-term buffer
----------------------
The second option is to run xonsh in an Ansi-term buffer inside
Emacs. This way you have to switch modes if you want do Emacs-style
editing, but you keep xonsh's impressive completion.
For this it is preferred to have xonsh installed with the
prompt-toolkit. Then you can leave ``$SHELL_TYPE`` at its default.
2020-10-03 23:25:27 -04:00
Emacs will prompt you for the path of the xonsh executable when you
2020-08-20 01:32:04 -04:00
start up ``ansi-term``.
2020-10-07 15:00:33 +03:00
Vim
===
There is `xonsh syntax file for vim`_. To install run:
.. code-block::
git clone --depth 1 https://github.com/linkinpark342/xonsh-vim ~/.vim
.. _xonsh syntax file for vim: https://github.com/linkinpark342/xonsh-vim