mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
vim-patch:955652f6df9c (#26667)
runtime(doc): Update change.txt (vim/vim#13725)
Fix-up and clarify commit e06f2b498ccca921f34a1bec4464f042a5a2cabd
955652f6df
Co-authored-by: K.Takata <kentkt@csc.jp>
This commit is contained in:
parent
2ed784f385
commit
184f842349
@ -424,9 +424,12 @@ octal number.
|
|||||||
Note that when 'nrformats' includes "octal", decimal numbers with leading
|
Note that when 'nrformats' includes "octal", decimal numbers with leading
|
||||||
zeros cause mistakes, because they can be confused with octal numbers.
|
zeros cause mistakes, because they can be confused with octal numbers.
|
||||||
|
|
||||||
Note similarly, when 'nrformats' includes "bin", binary numbers with a leading
|
Note similarly, when 'nrformats' includes both "bin" and "hex", binary numbers
|
||||||
'0b' or '0B' can be interpreted as hexadecimal rather than binary since '0b'
|
with a leading '0x' or '0X' can be interpreted as hexadecimal rather than
|
||||||
are valid hexadecimal digits.
|
binary since '0b' are valid hexadecimal digits. CTRL-A on "0x0b11" results in
|
||||||
|
"0x0b12", not "0x0b100".
|
||||||
|
When 'nrformats' includes "bin" and doesn't include "hex", CTRL-A on "0b11" in
|
||||||
|
"0x0b11" results in "0x0b100".
|
||||||
|
|
||||||
When the number under the cursor is too big to fit into 64 bits, it will be
|
When the number under the cursor is too big to fit into 64 bits, it will be
|
||||||
rounded off to the nearest number that can be represented, and the
|
rounded off to the nearest number that can be represented, and the
|
||||||
|
Loading…
Reference in New Issue
Block a user