Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k-takata/vim-teraterm
A Vim Plugin for Tera Term Language
https://github.com/k-takata/vim-teraterm
teraterm vim
Last synced: 28 days ago
JSON representation
A Vim Plugin for Tera Term Language
- Host: GitHub
- URL: https://github.com/k-takata/vim-teraterm
- Owner: k-takata
- Created: 2015-06-06T03:51:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-10-18T10:08:40.000Z (about 3 years ago)
- Last Synced: 2024-10-14T14:51:35.629Z (2 months ago)
- Topics: teraterm, vim
- Language: Vim script
- Size: 9.77 KB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-teraterm
This is a Vim plugin for Tera Term Language (TTL).
This includes an indent file and a syntax file.License: VIM License
## Supported version
* [Tera Term](http://ttssh2.osdn.jp/index.html.en) 4.100
## Requirements
* Vim 7.4 or later.
## Usage
1. Add this directory to your 'runtimepath':
```vim
:set runtimepath+=/path/to/vim-teraterm/
```2. Create a file to detect the 'teraterm' file type.
(This is not needed if you use Vim 7.4.794 or later.)Create a file that contains the following line:
```vim
au BufRead,BufNewFile *.ttl set filetype=teraterm
```Save this file as `~/.vim/ftdetect/teraterm.vim`.
See `:help ftdetect` for more detail.