From e82031618aff8c69ed09970cce66b9fcaaa939b8 Mon Sep 17 00:00:00 2001 From: ChaiShushan Date: Mon, 23 Sep 2013 11:35:17 +1000 Subject: [PATCH] misc/notepadplus: fix some number syntax highlight issue notepadplus can only support some normal golang's hex and imaginary numbers. it can't detect some special number, eg. 1./1.e/1.i/1+0.1i (omit "0" in ".0"). R=golang-dev, gvdschoot CC=ajstarks, golang-dev https://golang.org/cl/13401047 --- misc/notepadplus/userDefineLang.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/notepadplus/userDefineLang.xml b/misc/notepadplus/userDefineLang.xml index 10093db2d1..9751f7901b 100644 --- a/misc/notepadplus/userDefineLang.xml +++ b/misc/notepadplus/userDefineLang.xml @@ -7,11 +7,11 @@ 00// 01 02 03/* 04*/ - - + 0x 0X + a b c d e f A B C D E F - + i ( ) [ ] { } ... , ; & ^ % > < ! = + - * / | : -- 2.50.0