tetra 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/template/bashrc +6 -3
- data/lib/tetra/version.rb +1 -1
- metadata +1 -1
data/lib/template/bashrc
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
# use a temporary file for history
|
2
2
|
HISTFILE=<%= history_file %>
|
3
3
|
|
4
|
-
# don't
|
4
|
+
# don't truncate the history file on exit
|
5
5
|
HISTFILESIZE=-1
|
6
6
|
|
7
|
-
#
|
8
|
-
|
7
|
+
# keep a very long history in memory, that will
|
8
|
+
# be copied to HISTFILE on exit
|
9
|
+
# Negative values (do not limit) will not work
|
10
|
+
# in some Bash versions
|
11
|
+
HISTSIZE=10000
|
9
12
|
|
10
13
|
# don't keep timestamps in history
|
11
14
|
unset HISTTIMEFORMAT
|
data/lib/tetra/version.rb
CHANGED