Change tilde_space to be 0 by default

This commit is contained in:
Landon Curt Noll
2022-12-03 14:02:49 -08:00
parent 0d99ba54d8
commit 7c6723db88
4 changed files with 21 additions and 19 deletions

13
CHANGES
View File

@@ -25,17 +25,18 @@ The following are the changes from calc version 2.14.2.0 to date:
Added config("tilde_space", boolean). The "tilde_space" controls
whether or not a space (' ') is printed after leading tilde ('~').
By default, config("tilde_space") is true, which is a change
from past behavior. For example, now:
By default, config("tilde_space") is false.
; 1/3
~ 0.33333333333333333333
With config("tilde_space", 0):
For example, with the default, config("tilde_space", 0):
; 1/3
~0.33333333333333333333
With config("tilde_space", 1):
; 1/3
~ 0.33333333333333333333
To disable "tilde_space", use config("tilde_space", 0) on the
command line and/or use config("tilde_space", 0),; in your ~/.calcrc.
Thanks goes to <GitHub use ljramalho> for this suggestion.