File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 5
5
** Released: WiP**
6
6
7
7
- 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 ) )
8
10
9
11
## v0.7.0
10
12
Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ class Configuration:
45
45
obsidian_vaults : str = "~/Library/Mobile Documents/iCloud~md~obsidian/Documents"
46
46
"""The path to the root of all Obsidian vaults."""
47
47
48
+ local_start_location : str = "~"
49
+ """The start location for the local file system browser."""
50
+
48
51
49
52
##############################################################################
50
53
def configuration_file () -> Path :
Original file line number Diff line number Diff line change 26
26
##############################################################################
27
27
# Local imports.
28
28
from ...commands import JumpToCommandLine
29
- from ...data import Bookmark , Bookmarks
29
+ from ...data import Bookmark , Bookmarks , load_configuration
30
30
from ...types import HikeHistory , HikeLocation
31
31
from .bookmarks_view import BookmarksView
32
32
from .history_view import HistoryView
@@ -166,7 +166,9 @@ def compose(self) -> ComposeResult:
166
166
with TabPane ("Content" , id = "content" ):
167
167
yield MarkdownTableOfContents (Markdown ())
168
168
with TabPane ("Local" , id = "local" ):
169
- yield LocalView (Path ("~" ).expanduser ())
169
+ yield LocalView (
170
+ Path (load_configuration ().local_start_location ).expanduser ()
171
+ )
170
172
with TabPane ("Bookmarks" , id = "bookmarks" ):
171
173
yield BookmarksView ()
172
174
with TabPane ("History" , id = "history" ):
You can’t perform that action at this time.
0 commit comments