8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cfd5003 + c1f408a commit e56aca6Copy full SHA for e56aca6
syntax/c.vim
@@ -1,7 +1,7 @@
1
" Vim syntax file
2
" Language: C
3
" Maintainer: Bram Moolenaar <Bram@vim.org>
4
-" Last Change: 2015 Mar 1
+" Last Change: 2015 Mar 05
5
6
" Quit when a (custom) syntax file was already loaded
7
if exists("b:current_syntax")
@@ -335,6 +335,8 @@ if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu")
335
" POSIX 2001
336
syn keyword cConstant SIGBUS SIGPOLL SIGPROF SIGSYS SIGURG
337
syn keyword cConstant SIGVTALRM SIGXCPU SIGXFSZ
338
+ " non-POSIX signals
339
+ syn keyword cConstant SIGWINCH SIGINFO
340
" Add POSIX errors as well
341
syn keyword cConstant E2BIG EACCES EAGAIN EBADF EBADMSG EBUSY
342
syn keyword cConstant ECANCELED ECHILD EDEADLK EDOM EEXIST EFAULT
0 commit comments