diff options
author | nfnty <git@nfnty.se> | 2017-01-29 18:18:21 +0100 |
---|---|---|
committer | nfnty <git@nfnty.se> | 2017-01-29 18:18:21 +0100 |
commit | a2159459e22f24ef48910987187739c99e08d532 (patch) | |
tree | 4f956bcb4d562fa4feea293de54e76107577bd96 | |
parent | b72003856204a4101e9e123bc149ed248b13a382 (diff) | |
download | ranger-a2159459e22f24ef48910987187739c99e08d532.tar.gz |
"title bar" -> "titlebar"
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | doc/ranger.1 | 2 | ||||
-rw-r--r-- | doc/ranger.pod | 2 | ||||
-rw-r--r-- | ranger/gui/ui.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7944edab..4316a60a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ This log documents changes between stable versions. * Changed `zi` key to toggle `preview_images` option * Improved PEP8 compliance * Improved documentation -* Improved UI by separating file path in title bar with a space from the +* Improved UI by separating file path in titlebar with a space from the username/hostname for quick copy&pasting by shift+double-clicking on it. # 2015-10-04: version 1.7.2 @@ -35,7 +35,7 @@ This log documents changes between stable versions. * Fixed `examples/vim_file_chooser` to work with gvim too * Fixed some other rare crashes and bugs * Fixed downward mouse wheel scrolling -* Fixed warning about regex splits being drawn in title bar since python3.5 +* Fixed warning about regex splits being drawn in titlebar since python3.5 * Really fixed `S` key binding not working when SHELL=fish * Improved `doc/cheatsheet.svg` * Added some entries to rifle.conf diff --git a/doc/ranger.1 b/doc/ranger.1 index abe6f70b..16c7256e 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -847,7 +847,7 @@ Put the status bar at the top of the window? Show hostname in titlebar? .IP "tilde_in_titlebar [bool]" 4 .IX Item "tilde_in_titlebar [bool]" -Abbreviate \f(CW$HOME\fR with ~ in the title bar (first line) of ranger? +Abbreviate \f(CW$HOME\fR with ~ in the titlebar (first line) of ranger? .IP "unicode_ellipsis [bool]" 4 .IX Item "unicode_ellipsis [bool]" Use a unicode \*(L"...\*(R" character instead of \*(L"~\*(R" to mark cut-off filenames? diff --git a/doc/ranger.pod b/doc/ranger.pod index ba80e5e7..0a6bc2c4 100644 --- a/doc/ranger.pod +++ b/doc/ranger.pod @@ -856,7 +856,7 @@ Show hostname in titlebar? =item tilde_in_titlebar [bool] -Abbreviate $HOME with ~ in the title bar (first line) of ranger? +Abbreviate $HOME with ~ in the titlebar (first line) of ranger? =item unicode_ellipsis [bool] diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py index cb45377f..1deacc89 100644 --- a/ranger/gui/ui.py +++ b/ranger/gui/ui.py @@ -250,7 +250,7 @@ class UI( # pylint: disable=too-many-instance-attributes,too-many-public-method from ranger.gui.widgets.taskview import TaskView from ranger.gui.widgets.pager import Pager - # Create a title bar + # Create a titlebar self.titlebar = TitleBar(self.win) self.add_child(self.titlebar) |