Mercurial > vim
view runtime/ftplugin/rpl.vim @ 19267:c7903f92ed75 v8.2.0192
patch 8.2.0192: build failure without +terminal feature
Commit: https://github.com/vim/vim/commit/91cd59a0a20b944f703ca65e67f2e637fbb7e812
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 1 22:18:37 2020 +0100
patch 8.2.0192: build failure without +terminal feature
Problem: Build failure without +terminal feature.
Solution: Add #ifdefs.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 01 Feb 2020 22:30:03 +0100 |
parents | 94601b379f38 |
children | 5b7ea82bc18f |
line wrap: on
line source
" Vim filetype plugin file " Language: RPL/2 " Maintainer: Joël BERTRAND <rpl2@free.fr> " Last Change: 2012 Mar 07 " Version: 0.1 " Only do this when not done yet for this buffer if exists("b:did_ftplugin") finish endif " Don't load another plugin for this buffer let b:did_ftplugin = 1 " Set 'formatoptions' to break comment lines but not other lines, " and insert the comment leader when hitting <CR> or using "o". setlocal fo-=t fo+=croql " Set 'comments' to format dashed lists in comments. setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:// let b:undo_ftplugin = "setlocal fo< comments<"