1.1.0 • Published 7 years ago

terminal-in-react-vi-plugin v1.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

Vi Plugin

Downloads Downloads NPM Version Dependencies Dev Dependencies License

Plugin to add a vi editor to terminal-in-react

Install

npm i -S terminal-in-react-vi-plugin
yarn add terminal-in-react-vi-plugin

Usage

The plugin requires a file system plugin to work. Currently terminal-in-react-pseudo-file-system-plugin is the only one available. You have to pass the name of the file system plugin as a config option.

import ViPlugin from 'terminal-in-react-vi-plugin';
import pseudoFileSystemPlugin from 'terminal-in-react-pseudo-file-system-plugin';
const FileSystemPlugin = pseudoFileSystemPlugin();

...
<Terminal
  plugins={[
    FileSystemPlugin,
    {
      class: ViPlugin,
      config: {
        filesystem: FileSystemPlugin.displayName
      }
    }
  ]}
/>
...

Commands

The commands it adds are:

  • vi

TODO

  • Edit a file
  • Vi shortcuts
  • Save temp file