Skip to content

Commit

Permalink
Minor wording fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed May 21, 2023
1 parent 16338a3 commit 36e9349
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.8.6

- Minor wording fix

## 0.8.5

- Added check to skip re-searching if search phrase is equivalent to the previous one
Expand All @@ -12,7 +16,7 @@

## 0.8.3

- Optimized multi file view reload so it does not redo the search over all documents
- Optimized multi-file view reload so it does not redo the search over all documents

- Implemented a proper document store

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Statically linked binaries are available via

- Multiline fuzzy search of multiple files or a single file

- Swap between multi file view and single file view on the fly
- Swap between multi-file view and single file view on the fly

- Content view pane that shows the snippet surrounding the search result selected

Expand Down Expand Up @@ -49,9 +49,9 @@ current directory `.`.

If exactly one file is specified
in the list of paths, then Docfd uses **Single file view**.
Otherwise, Docfd uses **Multi file view**.
Otherwise, Docfd uses **Multi-file view**.

## Multi file view
## Multi-file view

![](screenshots/main0.png)

Expand Down Expand Up @@ -148,7 +148,7 @@ namely `Shift` is optional for scrolling through search result list.
- Open document
- `Enter`
- Docfd tries to use `$VISUAL` first, if that fails then Docfd tries `$EDITOR`
- Switch to multi file view
- Switch to multi-file view
- `Tab`
- Switch to `Search` mode
- `/`
Expand Down
2 changes: 1 addition & 1 deletion TUI_DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Root (RoCo: UI mode)
- Key binding info
- Search bar

- Multi file view (RoCo: document store)
- Multi-file view (RoCo: document store)
- Top pane (RoCo: index of document selected)
- Document list
- Right pane (RoCo: index of search result selected)
Expand Down
2 changes: 1 addition & 1 deletion src/single_file_view.ml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ module Bottom_pane = struct
navigate_line0;
[
{ label = "Tab";
msg = "switch to multi file view" };
msg = "switch to multi-file view" };
{ label = "r"; msg = "reload" };
{ label = "q"; msg = "exit" };
];
Expand Down
2 changes: 1 addition & 1 deletion src/version_string.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let s = "0.8.5"
let s = "0.8.6"

0 comments on commit 36e9349

Please sign in to comment.