| /vim-8.2.3635/runtime/doc/ |
| H A D | xxd.man | 14 xxd creates a hex dump of a given file or standard input. It can also 15 convert a hex dump back to its original binary form. Like uuencode(1) 58 bytes may be changed using -g. This option only applies to hex‐ 63 Separate the output of every <bytes> bytes (two hex characters 70 Print a summary of available commands and exit. No hex dumping 108 -u Use upper case hex letters. Default is lower case. 128 umns. Here anything that looks like a pair of hex-digits is inter‐ 161 Print everything but the first three lines (hex 0x30 bytes) of file. 164 Print 3 lines (hex 0x30 bytes) from the end of file. 202 which is 'A' (hex 0x41).
|
| H A D | usr_23.txt | 297 A real binary editor shows the text in two ways: as it is and in hex format. 304 Now convert the file to a hex dump with xxd: > 315 ordinary text. Changing the hex does not cause the printable character to be 321 Only changes in the hex part are used. Changes in the printable text part on
|
| H A D | usr_06.txt | 188 You can specify #rrggbb hex colors and you can define new names for hex
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | registry.vim | 78 " line of hex values that ends in a comma. 79 "syn match registryHex "hex\(([0-9]\{0,2})\)\=:\([0-9a-fA-F]\{2},\)\{0,999}\([0-9a-fA-F]\{2}\|\\\)… 80 syn match registryHex "hex\(([0-9]\{0,2})\)\=:\([0-9a-fA-F]\{2},\)*\([0-9a-fA-F]\{2}\|\\\)$" conta…
|
| H A D | reva.vim | 98 Builtin hex# hide inline{ last lastxt lib libdir literal, makeexename mnotail ms ms@ 126 syn keyword revamath decimal hex base binary octal 128 " recognize hex and binary numbers, the '$' and '%' notation is for greva
|
| H A D | ibasic.vim | 66 syn keyword ibasicBuiltInFunction chr\$ command$ date$ environ$ erdev$ hex$ inkey$ 106 "hex number
|
| H A D | cuplsim.vim | 32 syn keyword cuplsimBaseType octal decimal hex contained
|
| H A D | ahdl.vim | 44 " valid integer number formats (decimal, binary, octal, hex)
|
| H A D | slice.vim | 35 "hex number
|
| H A D | 8th.vim | 62 Builtin gets G:gets handler G:handler header G:header help G:help hex G:hex i: G:i: i; G:i; isa? G… 114 Builtin >hex b:>hex >mpack b:>mpack @ b:@ append b:append base16> b:base16> base32> b:base32> base… 116 Builtin each! b:each! each-slice b:each-slice expand b:expand fill b:fill getb b:getb hex> b:hex> … 343 syn keyword eighthMath decimal hex base@ base! 346 " recognize hex and binary numbers, the '$' and '%' notation is for eighth
|
| H A D | mma.vim | 218 " \.xx 2 digit hex 219 " \:xxxx 4 digit hex (multibyte unicode)
|
| H A D | hex.vim | 87 let b:current_syntax = "hex"
|
| H A D | sqlj.vim | 48 syn keyword sqljOperator max min avg sum count hex
|
| H A D | expect.vim | 68 "hex number
|
| H A D | cupl.vim | 40 " Valid integer number formats (decimal, binary, octal, hex)
|
| H A D | kconfig.vim | 75 syn keyword kconfigTypeDefinition bool boolean tristate string hex int 704 syn keyword kconfigType bool boolean tristate string hex int
|
| H A D | sl.vim | 43 "hex number
|
| H A D | opl.vim | 47 syn keyword OPLStatement gxborder gxprint gy hex$ hour iabs icon if include
|
| H A D | xpm.vim | 79 " Vim cannot handle RGB codes with more than 6 hex digits
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_crypt.vim | 90 func Uncrypt_stable_xxd(method, hex, key, uncrypted_text) argument 95 call system(s:xxd_cmd .. ' -r >Xtest.txt', a:hex) 121 let hex=['00000000: 5669 6d43 7279 7074 7e30 3421 6b7d e607 vimCrypt~04!k}..', 132 …call Uncrypt_stable_xxd('xchacha20', hex, "sodium_crypt", ["abcdefghijklmnopqrstuvwxyzäöü", "ZZZ_ä…
|
| H A D | test23.in | 2 Also test backslash for hex/octal numbered character.
|
| H A D | test_increment.vim | 764 set nrformats=octal,hex 768 set nrformats=hex 882 " negative sign before a hex number should be ignored
|
| /vim-8.2.3635/READMEdir/ |
| H A D | Contents | 19 Xxd Hex dumper and reader. Can be used to view files as hex, edit
|
| /vim-8.2.3635/src/ |
| H A D | highlight.c | 2273 decode_hex_color(char_u *hex) in decode_hex_color() argument 2277 if (hex[0] != '#' || STRLEN(hex) != 7) in decode_hex_color() 2281 color = RGB(((hex_digit(hex[1]) << 4) + hex_digit(hex[2])), in decode_hex_color() 2282 ((hex_digit(hex[3]) << 4) + hex_digit(hex[4])), in decode_hex_color() 2283 ((hex_digit(hex[5]) << 4) + hex_digit(hex[6]))); in decode_hex_color()
|
| /vim-8.2.3635/src/proto/ |
| H A D | highlight.pro | 17 guicolor_T decode_hex_color(char_u *hex);
|