Mercurial > vim
annotate runtime/ftplugin/reva.vim @ 12031:9897241c08b5 v8.0.0896
patch 8.0.0896: cannot close a terminal window when the job ends
commit https://github.com/vim/vim/commit/dd693ce28b158ff573129ee30fe5b886544a03c2
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 10 23:15:19 2017 +0200
patch 8.0.0896: cannot close a terminal window when the job ends
Problem: Cannot automaticlaly close a terminal window when the job ends.
Solution: Add the ++close argument to :term. Add the term_finish option to
term_start(). (Yasuhiro Matsumoto, closes #1950) Also add
++open.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 10 Aug 2017 23:30:05 +0200 |
parents | 82b5078be2dd |
children | 4d76b3e07c07 |
rev | line source |
---|---|
1621 | 1 " Vim ftplugin file |
2 " Language: Reva Forth | |
3 " Version: 7.1 | |
4 " Last Change: 2008/01/11 | |
5 " Maintainer: Ron Aaron <ron@ronware.org> | |
6 " URL: http://ronware.org/reva/ | |
7 " Filetypes: *.rf *.frt | |
8 " NOTE: Forth allows any non-whitespace in a name, so you need to do: | |
9 " setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255 | |
10 " | |
11 " This goes with the syntax/reva.vim file. | |
12 | |
13 " Only do this when not done yet for this buffer | |
14 if exists("b:did_ftplugin") | |
15 finish | |
16 endif | |
17 | |
18 " Don't load another plugin for this buffer | |
19 let b:did_ftplugin = 1 | |
20 | |
21 setlocal sts=4 sw=4 | |
22 setlocal com=s1:/*,mb:*,ex:*/,:\|,:\\ | |
23 setlocal fo=tcrqol | |
24 setlocal matchpairs+=\::; | |
25 setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255 |