Mercurial > vim
view runtime/compiler/ghc.vim @ 14556:2bee637a8edc v8.1.0291
patch 8.1.0291: 'incsearch' highlighting not used for :sort
commit https://github.com/vim/vim/commit/81f56536b1bc324eb173924a8cf4d7dbbf4f3fdb
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 18 16:19:42 2018 +0200
patch 8.1.0291: 'incsearch' highlighting not used for :sort
Problem: 'incsearch' highlighting not used for :sort.
Solution: Handle pattern in :sort command.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 18 Aug 2018 16:30:04 +0200 |
parents | 923e383fa291 |
children |
line wrap: on
line source
" Vim compiler file " Compiler: GHC Haskell Compiler " Maintainer: Daniel Campoverde <alx@sillybytes.net> " Latest Revision: 2016-11-29 if exists("current_compiler") finish endif let current_compiler = "ghc" let s:cpo_save = &cpo set cpo&vim CompilerSet errorformat= \%-G%.%#:\ build, \%-G%.%#preprocessing\ library\ %.%#, \%-G[%.%#]%.%#, \%E%f:%l:%c:\ %m, \%-G--%.%# if exists('g:compiler_ghc_ignore_unmatched_lines') CompilerSet errorformat+=%-G%.%# endif let &cpo = s:cpo_save unlet s:cpo_save