Skip to content

Commit

Permalink
Fixed editor recognition for kakoune
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed Aug 25, 2023
1 parent 6f4928f commit a23b467
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.2.2

- Fixed editor recognition for kakoune

## 1.2.1

- Fixed search results when multiple words are involved
Expand Down
2 changes: 1 addition & 1 deletion bin/docfd.ml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ let open_text_path index ~editor ~path ~search_result =
Fmt.str "%s +%d %s" editor line_num path
| "nvim" | "vim" | "vi" ->
Fmt.str "%s +%d %s" editor line_num path
| "kakoune" ->
| "kak" ->
Fmt.str "%s +%d %s" editor line_num path
| "hx" ->
Fmt.str "%s %s:%d" editor path line_num
Expand Down
2 changes: 1 addition & 1 deletion bin/version_string.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let s = "1.2.1"
let s = "1.2.2"

0 comments on commit a23b467

Please sign in to comment.