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: about 1 year 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 (about 11 years ago)
- Default Branch: master
- Last Pushed: 2021-10-18T10:08:40.000Z (over 4 years ago)
- Last Synced: 2025-04-06T07:44:09.428Z (about 1 year ago)
- Topics: teraterm, vim
- Language: Vim script
- Size: 9.77 KB
- Stars: 3
- Watchers: 3
- 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.