annotate runtime/ftplugin/mailaliases.vim @ 15418:51b3c36b0523
v8.1.0717
patch 8.1.0717: there is no function for the ":sign jump" command
commit https://github.com/vim/vim/commit/6b7b7190aa9e5c4f51bceaebf9275aa5097cfea1
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 11 13:42:41 2019 +0100
patch 8.1.0717: there is no function for the ":sign jump" command
Problem: There is no function for the ":sign jump" command.
Solution: Add the sign_jump() function. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/3780)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 11 Jan 2019 13:45:06 +0100 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
837
|
1 " Vim filetype plugin file
|
11062
|
2 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
3 " Latest Revision: 2008-07-09
|
837
|
4
|
|
5 if exists("b:did_ftplugin")
|
|
6 finish
|
|
7 endif
|
|
8 let b:did_ftplugin = 1
|
|
9
|
1698
|
10 let s:cpo_save = &cpo
|
|
11 set cpo&vim
|
|
12
|
837
|
13 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
14
|
|
15 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
|
1698
|
16
|
|
17 let &cpo = s:cpo_save
|
|
18 unlet s:cpo_save
|