Mercurial > vim
view runtime/ftplugin/ld.vim @ 31437:ede2bd5f3426 v9.0.1051
patch 9.0.1051: after a failed CTRL-W ] next command splits window
Commit: https://github.com/vim/vim/commit/cb94c910706fdd575cc25797d7858e084f1e3524
Author: Rob Pilling <robpilling@gmail.com>
Date: Tue Dec 13 12:26:09 2022 +0000
patch 9.0.1051: after a failed CTRL-W ] next command splits window
Problem: After a failed CTRL-W ] next command splits window.
Solution: Reset postponed_split. (Rob Pilling, closes https://github.com/vim/vim/issues/11698)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 13 Dec 2022 13:30:04 +0100 |
parents | 1218c5353e2b |
children | 7c7432a53a6c |
line wrap: on
line source
" Vim filetype plugin file " Language: ld(1) script " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim let b:undo_ftplugin = "setl com< cms< inc< fo<" setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*%s*/ include=^\\s*INCLUDE setlocal formatoptions-=t formatoptions+=croql let &cpo = s:cpo_save unlet s:cpo_save