annotate runtime/indent/dictconf.vim @ 31497:aa45593ec2ca v9.0.1081

patch 9.0.1081: using "->" with split lines does not always work Commit: https://github.com/vim/vim/commit/34820944ed101e1fbad16d552308f1486e715d27 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 19 20:28:38 2022 +0000 patch 9.0.1081: using "->" with split lines does not always work Problem: Using "->" with split lines does not always work. Solution: Avoid trying to get another line. (closes https://github.com/vim/vim/issues/11723)
author Bram Moolenaar <Bram@vim.org>
date Mon, 19 Dec 2022 21:30:03 +0100
parents 6dd88e45d47d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
1 " Vim indent file
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 1201
diff changeset
2 " Language: dict(1) configuration file
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 1201
diff changeset
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
28379
6dd88e45d47d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
4 " Last Change: 2022 Apr 06
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
5
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
6 if exists("b:did_indent")
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
7 finish
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
8 endif
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
9 let b:did_indent = 1
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
10
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
11 setlocal indentkeys=0{,0},!^F,o,O cinwords= autoindent smartindent
1201
4d2585cf5950 updated for version 7.1b
vimboss
parents: 839
diff changeset
12 setlocal nosmartindent
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents:
diff changeset
13 inoremap <buffer> # X#
28379
6dd88e45d47d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
14
6dd88e45d47d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
15 let b:undo_indent = "setl ai< cinw< indk< si< | silent! iunmap <buffer> #"