From ec8bbed229d0fd6e3306bd1a947a141e313a0032 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 15 May 2016 16:39:15 +0300 Subject: [PATCH] Rename *-history to *_history --- .gdbinit | 2 +- .muttrc | 4 ++-- lib/python/init.py | 2 +- lib/python/pdbrc.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gdbinit b/.gdbinit index 5552f91..4c55f58 100644 --- a/.gdbinit +++ b/.gdbinit @@ -1,4 +1,4 @@ set history expansion on set history save on -set history filename ~/.gdb-history +set history filename ~/.gdb_history set print pretty diff --git a/.muttrc b/.muttrc index fad17a9..aa97b7c 100644 --- a/.muttrc +++ b/.muttrc @@ -52,7 +52,7 @@ set sort_alias=unsorted set sort_browser=alpha set history=1000 # Number of lines of history in memory -set history_file==tmp/.mutt-history +set history_file==tmp/.mutt_history set save_history=1000 # Number of lines of history in file set read_inc=10 # Progress indicator when reading folders. @@ -79,7 +79,7 @@ set move=no # Do not move read messages to ~/mbox set pager_context=1 # No. of lines of context to give when scrolling set pager_index_lines=6 # How many index lines to show in the pager set pager_stop # Don't move to the next message on next-page -set postponed==tmp/.mutt-postponed +set postponed==tmp/.mutt_postponed set print=ask-no # Don't waste paper set recall=no # When I say "compose", ask me whether I want to continue composing a postponed message. set reply_regexp="^((re([\\[0-9\\]+])*|aw|ÎÁ):[ \t]*)+[ \t]*" # A regular expression to detect replies diff --git a/lib/python/init.py b/lib/python/init.py index 359d549..1313c50 100644 --- a/lib/python/init.py +++ b/lib/python/init.py @@ -36,7 +36,7 @@ def init(): or os.path.expanduser('~/.inputrc') readline.read_init_file(initfile) - histfile = os.path.expanduser('~/.python-history') + histfile = os.path.expanduser('~/.python_history') try: readline.read_history_file(histfile) except IOError: diff --git a/lib/python/pdbrc.py b/lib/python/pdbrc.py index 0ebe7b5..aeb3db1 100644 --- a/lib/python/pdbrc.py +++ b/lib/python/pdbrc.py @@ -4,7 +4,7 @@ import sys import readline # Command line history: -histfile = os.path.expanduser("~/.pdb-history") +histfile = os.path.expanduser("~/.pdb_history") try: readline.read_history_file(histfile) -- 2.39.2