Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 25 of 109) sorted by relevance

12345

/vim-8.2.3635/runtime/doc/
H A Dxxd.man14 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 Dusr_23.txt297 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 Dusr_06.txt188 You can specify #rrggbb hex colors and you can define new names for hex
/vim-8.2.3635/runtime/syntax/
H A Dregistry.vim78 " 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 Dreva.vim98 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 Dibasic.vim66 syn keyword ibasicBuiltInFunction chr\$ command$ date$ environ$ erdev$ hex$ inkey$
106 "hex number
H A Dcuplsim.vim32 syn keyword cuplsimBaseType octal decimal hex contained
H A Dahdl.vim44 " valid integer number formats (decimal, binary, octal, hex)
H A Dslice.vim35 "hex number
H A D8th.vim62 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 Dmma.vim218 " \.xx 2 digit hex
219 " \:xxxx 4 digit hex (multibyte unicode)
H A Dhex.vim87 let b:current_syntax = "hex"
H A Dsqlj.vim48 syn keyword sqljOperator max min avg sum count hex
H A Dexpect.vim68 "hex number
H A Dcupl.vim40 " Valid integer number formats (decimal, binary, octal, hex)
H A Dkconfig.vim75 syn keyword kconfigTypeDefinition bool boolean tristate string hex int
704 syn keyword kconfigType bool boolean tristate string hex int
H A Dsl.vim43 "hex number
H A Dopl.vim47 syn keyword OPLStatement gxborder gxprint gy hex$ hour iabs icon if include
H A Dxpm.vim79 " Vim cannot handle RGB codes with more than 6 hex digits
/vim-8.2.3635/src/testdir/
H A Dtest_crypt.vim90 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 Dtest23.in2 Also test backslash for hex/octal numbered character.
H A Dtest_increment.vim764 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 DContents19 Xxd Hex dumper and reader. Can be used to view files as hex, edit
/vim-8.2.3635/src/
H A Dhighlight.c2273 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 Dhighlight.pro17 guicolor_T decode_hex_color(char_u *hex);

12345