Skip to content

Commit dfc778b

Browse files
authored
🔀 Merge pull request #59 from davep/local-here
Allow configuration of the local fs browser start location
2 parents d6a3613 + 3348a7e commit dfc778b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

ChangeLog.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
**Released: WiP**
66

77
- Unpinned Textual. ([#50](https://github.com/davep/hike/pull/50))
8+
- Added `local_start_location` to the configuration file.
9+
([#59](https://github.com/davep/hike/pull/59))
810

911
## v0.7.0
1012

src/hike/data/config.py

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ class Configuration:
4545
obsidian_vaults: str = "~/Library/Mobile Documents/iCloud~md~obsidian/Documents"
4646
"""The path to the root of all Obsidian vaults."""
4747

48+
local_start_location: str = "~"
49+
"""The start location for the local file system browser."""
50+
4851

4952
##############################################################################
5053
def configuration_file() -> Path:

src/hike/widgets/navigation/widget.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
##############################################################################
2727
# Local imports.
2828
from ...commands import JumpToCommandLine
29-
from ...data import Bookmark, Bookmarks
29+
from ...data import Bookmark, Bookmarks, load_configuration
3030
from ...types import HikeHistory, HikeLocation
3131
from .bookmarks_view import BookmarksView
3232
from .history_view import HistoryView
@@ -166,7 +166,9 @@ def compose(self) -> ComposeResult:
166166
with TabPane("Content", id="content"):
167167
yield MarkdownTableOfContents(Markdown())
168168
with TabPane("Local", id="local"):
169-
yield LocalView(Path("~").expanduser())
169+
yield LocalView(
170+
Path(load_configuration().local_start_location).expanduser()
171+
)
170172
with TabPane("Bookmarks", id="bookmarks"):
171173
yield BookmarksView()
172174
with TabPane("History", id="history"):

0 commit comments

Comments
 (0)