forked from aniani/vim
		
	updated for version 7.2-052
This commit is contained in:
		| @@ -5348,10 +5348,12 @@ synIDattr({synID}, {what} [, {mode}])			*synIDattr()* | |||||||
| 		"fg"		foreground color (GUI: color name used to set | 		"fg"		foreground color (GUI: color name used to set | ||||||
| 				the color, cterm: color number as a string, | 				the color, cterm: color number as a string, | ||||||
| 				term: empty string) | 				term: empty string) | ||||||
| 		"bg"		background color (like "fg") | 		"bg"		background color (as with "fg") | ||||||
|  | 		"sp"		special color (as with "fg") |highlight-guisp| | ||||||
| 		"fg#"		like "fg", but for the GUI and the GUI is | 		"fg#"		like "fg", but for the GUI and the GUI is | ||||||
| 				running the name in "#RRGGBB" form | 				running the name in "#RRGGBB" form | ||||||
| 		"bg#"		like "fg#" for "bg" | 		"bg#"		like "fg#" for "bg" | ||||||
|  | 		"sp#"		like "fg#" for "sp" | ||||||
| 		"bold"		"1" if bold | 		"bold"		"1" if bold | ||||||
| 		"italic"	"1" if italic | 		"italic"	"1" if italic | ||||||
| 		"reverse"	"1" if reverse | 		"reverse"	"1" if reverse | ||||||
|   | |||||||
| @@ -16648,8 +16648,11 @@ f_synIDattr(argvars, rettv) | |||||||
| 		p = highlight_has_attr(id, HL_INVERSE, modec); | 		p = highlight_has_attr(id, HL_INVERSE, modec); | ||||||
| 		break; | 		break; | ||||||
|  |  | ||||||
| 	case 's':					/* standout */ | 	case 's': | ||||||
| 		p = highlight_has_attr(id, HL_STANDOUT, modec); | 		if (TOLOWER_ASC(what[1]) == 'p')	/* sp[#] */ | ||||||
|  | 		    p = highlight_color(id, what, modec); | ||||||
|  | 		else					/* standout */ | ||||||
|  | 		    p = highlight_has_attr(id, HL_STANDOUT, modec); | ||||||
| 		break; | 		break; | ||||||
|  |  | ||||||
| 	case 'u': | 	case 'u': | ||||||
|   | |||||||
| @@ -676,6 +676,8 @@ static char *(features[]) = | |||||||
|  |  | ||||||
| static int included_patches[] = | static int included_patches[] = | ||||||
| {   /* Add new patch number below this line */ | {   /* Add new patch number below this line */ | ||||||
|  | /**/ | ||||||
|  |     52, | ||||||
| /**/ | /**/ | ||||||
|     51, |     51, | ||||||
| /**/ | /**/ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user