annotate runtime/indent/scheme.vim @ 20506:aee0b72ca6d6
v8.2.0807
patch 8.2.0807: cannot easily restore a mapping
Commit: https://github.com/vim/vim/commit/4c9243f9fb708c9010867d3cc8e928f36b58509a
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri May 22 13:10:44 2020 +0200
patch 8.2.0807: cannot easily restore a mapping
Problem: Cannot easily restore a mapping.
Solution: Add mapset().
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 22 May 2020 13:15:04 +0200 |
parents |
167a030448fa |
children |
738ff39db93f |
rev |
line source |
321
|
1 " Vim indent file
|
13231
|
2 " Language: Scheme
|
|
3 " Last Change: 2018 Jan 31
|
|
4 " Maintainer: Evan Hanson <evhan@foldling.org>
|
|
5 " Previous Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
|
|
6 " URL: https://foldling.org/vim/indent/scheme.vim
|
357
|
7
|
|
8 " Only load this indent file when no other was loaded.
|
|
9 if exists("b:did_indent")
|
|
10 finish
|
|
11 endif
|
321
|
12
|
13231
|
13 " Use the Lisp indenting
|
321
|
14 runtime! indent/lisp.vim
|