aboutsummaryrefslogtreecommitdiff
path: root/runtime/ftplugin
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-29 06:21:37 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-10-29 06:38:10 +0100
commitc7513368f0e84da7ff3968c5b2912fa6ad15ab05 (patch)
treed05f68dab9cc99cd48b280b56d64b040c03b27e8 /runtime/ftplugin
parentfb8f822d9c6271e42f5a80516f8e972b43977c33 (diff)
downloadrneovim-c7513368f0e84da7ff3968c5b2912fa6ad15ab05.tar.gz
rneovim-c7513368f0e84da7ff3968c5b2912fa6ad15ab05.tar.bz2
rneovim-c7513368f0e84da7ff3968c5b2912fa6ad15ab05.zip
vim-patch:b5b7562475ad
Update runtime files. https://github.com/vim/vim/commit/b5b7562475ad032a174b893286172de0d2c157cd --- NA patch (Nvim does not ship with spell files): vim-patch:3ad8772ef02e Include Serbian spell input files https://github.com/vim/vim/commit/3ad8772ef02e4352b0fa4e2697abc357734b62e1
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r--runtime/ftplugin/chicken.vim17
-rw-r--r--runtime/ftplugin/scheme.vim11
2 files changed, 13 insertions, 15 deletions
diff --git a/runtime/ftplugin/chicken.vim b/runtime/ftplugin/chicken.vim
index 8daa04c774..4dc1e57d0a 100644
--- a/runtime/ftplugin/chicken.vim
+++ b/runtime/ftplugin/chicken.vim
@@ -1,5 +1,5 @@
" CHICKEN-specific Vim customizations
-" Last Change: 2018-01-06
+" Last Change: 2018-03-05
" Author: Evan Hanson <evhan@foldling.org>
" Maintainer: Evan Hanson <evhan@foldling.org>
" URL: https://foldling.org/vim/ftplugin/chicken.vim
@@ -14,34 +14,37 @@ endif
setl keywordprg=chicken-doc
setl lispwords+=and-let*
-setl lispwords+=begin-for-syntax
setl lispwords+=compiler-typecase
setl lispwords+=condition-case
setl lispwords+=define-compiler-syntax
setl lispwords+=define-constant
setl lispwords+=define-external
setl lispwords+=define-for-syntax
+setl lispwords+=define-foreign-type
setl lispwords+=define-inline
+setl lispwords+=define-location
setl lispwords+=define-record
setl lispwords+=define-record-printer
setl lispwords+=define-specialization
-setl lispwords+=define-syntax-rule
-setl lispwords+=eval-when
setl lispwords+=fluid-let
+setl lispwords+=foreign-lambda*
+setl lispwords+=foreign-primitive
+setl lispwords+=foreign-safe-lambda*
+setl lispwords+=functor
setl lispwords+=handle-exceptions
setl lispwords+=let-compiler-syntax
+setl lispwords+=let-location
setl lispwords+=let-optionals
setl lispwords+=let-optionals*
setl lispwords+=letrec-values
setl lispwords+=match
-setl lispwords+=match-lambda
-setl lispwords+=match-lambda*
setl lispwords+=match-let
setl lispwords+=match-let*
+setl lispwords+=match-letrec
setl lispwords+=module
setl lispwords+=receive
-setl lispwords+=select
setl lispwords+=set!-values
+setl lispwords+=test-group
let b:undo_ftplugin = b:undo_ftplugin . ' keywordprg<'
diff --git a/runtime/ftplugin/scheme.vim b/runtime/ftplugin/scheme.vim
index b7f8e8bbe7..62fd327e07 100644
--- a/runtime/ftplugin/scheme.vim
+++ b/runtime/ftplugin/scheme.vim
@@ -1,6 +1,6 @@
" Vim filetype plugin file
" Language: Scheme (R7RS)
-" Last Change: 2018-01-20
+" Last Change: 2018-03-05
" Author: Evan Hanson <evhan@foldling.org>
" Maintainer: Evan Hanson <evhan@foldling.org>
" Previous Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
@@ -14,25 +14,20 @@ let s:cpo = &cpo
set cpo&vim
setl lisp
-setl comments=:;;;;,:;;;,:;;,:;,sr:#\|,ex:\|#
+setl comments=:;;;;,:;;;,:;;,:;,sr:#\|,mb:\|,ex:\|#
setl commentstring=;%s
setl define=^\\s*(def\\k*
setl iskeyword=33,35-39,42-43,45-58,60-90,94,95,97-122,126
let b:undo_ftplugin = 'setl lisp< comments< commentstring< define< iskeyword<'
-setl lispwords=begin
-setl lispwords+=case
-setl lispwords+=case-lambda
-setl lispwords+=cond
-setl lispwords+=cond-expand
+setl lispwords=case
setl lispwords+=define
setl lispwords+=define-record-type
setl lispwords+=define-syntax
setl lispwords+=define-values
setl lispwords+=do
setl lispwords+=guard
-setl lispwords+=import
setl lispwords+=lambda
setl lispwords+=let
setl lispwords+=let*