Mercurial > vim
annotate runtime/ftplugin/muttrc.vim @ 33148:7bc10151ce81 v9.0.1856
patch 9.0.1856: issues with formatting positional arguments
Commit: https://github.com/vim/vim/commit/aa90d4f031f73a34aaef5746931ea746849a2231
Author: Christ van Willegen <cvwillegen@gmail.com>
Date: Sun Sep 3 17:22:37 2023 +0200
patch 9.0.1856: issues with formatting positional arguments
Problem: issues with formatting positional arguments
Solution: fix them, add tests and documentation
closes: #12140
closes: #12985
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Christ van Willegen <cvwillegen@gmail.com>
Tentatively fix message_test. Check NULL ptr.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 03 Sep 2023 17:30:05 +0200 |
parents | 5510af40c77b |
children | c252fbfde41d |
rev | line source |
---|---|
375 | 1 " Vim filetype plugin file |
11062 | 2 " Language: mutt RC File |
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
4 " Latest Revision: 2006-04-19 | |
375 | 5 |
6 if exists("b:did_ftplugin") | |
7 finish | |
8 endif | |
9 let b:did_ftplugin = 1 | |
10 | |
1698 | 11 let s:cpo_save = &cpo |
12 set cpo&vim | |
13 | |
389 | 14 let b:undo_ftplugin = "setl com< cms< inc< fo<" |
375 | 15 |
16 setlocal comments=:# commentstring=#\ %s | |
389 | 17 setlocal formatoptions-=t formatoptions+=croql |
375 | 18 |
19 let &l:include = '^\s*source\>' | |
1698 | 20 |
32984 | 21 if has('unix') && executable('less') |
22 if !has('gui_running') | |
23 command -buffer -nargs=1 Sman | |
24 \ silent exe '!' . 'LESS= MANPAGER="less --pattern=''^\s+' . <q-args> . '\b'' --hilite-search" man ' . 'muttrc' | | |
25 \ redraw! | |
26 elseif has('terminal') | |
27 command -buffer -nargs=1 Sman | |
28 \ silent exe 'term ' . 'env LESS= MANPAGER="less --pattern=''' . escape('^\s+' . <q-args> . '\b', '\') . ''' --hilite-search" man ' . 'muttrc' | |
29 endif | |
30 if exists(':Sman') == 2 | |
31 setlocal iskeyword+=- | |
32 setlocal keywordprg=:Sman | |
33074
5510af40c77b
runtime: cleanup :Sman command via the undo_ftplugin mechanism (#12967)
Christian Brabandt <cb@256bit.org>
parents:
32984
diff
changeset
|
33 let b:undo_ftplugin .= '| setlocal keywordprg< iskeyword< | sil! delc -buffer Sman' |
32984 | 34 endif |
35 endif | |
36 | |
1698 | 37 let &cpo = s:cpo_save |
38 unlet s:cpo_save |