]> git.phdru.name Git - dotfiles.git/commitdiff
Rename *-history to *_history
authorOleg Broytman <phd@phdru.name>
Sun, 15 May 2016 13:39:15 +0000 (16:39 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 15 May 2016 13:39:15 +0000 (16:39 +0300)
.gdbinit
.muttrc
lib/python/init.py
lib/python/pdbrc.py

index 5552f916f082654052398dbcc74af8f8202dbd7e..4c55f588b9272b1a59e5f9556d632ad6ad8894e4 100644 (file)
--- 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 fad17a91daef8f095222b552d718764b8702fa29..aa97b7c669eb8336d6ed72bcb65f5db5ea1cbee5 100644 (file)
--- 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
index 359d549e6e2544580e5677efd2640e163da78479..1313c500d7b00518e14a6bf40e7ee5149a24f526 100644 (file)
@@ -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:
index 0ebe7b513e5cf2cb8b4e0ee738e927ae148111ff..aeb3db171e85765dbca815d79251a7da4481de39 100644 (file)
@@ -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)