diff options
author | Federico Igne <undyamon@disroot.org> | 2024-01-28 01:30:55 +0100 |
---|---|---|
committer | Federico Igne <undyamon@disroot.org> | 2024-01-28 01:30:55 +0100 |
commit | f46d6661a8f33730c17cceb7e2885e789d6123d8 (patch) | |
tree | af1dae9f7f5b7eae8a161b4ea9e4392d297676f3 | |
parent | 53916fc3f7dcbefd90e3d0340a2a8f32bf331d1d (diff) | |
download | sandy-f46d6661a8f33730c17cceb7e2885e789d6123d8.tar.gz sandy-f46d6661a8f33730c17cceb7e2885e789d6123d8.zip |
feat: add goto (G key) command
-rw-r--r-- | lib/command.ml | 3 | ||||
-rw-r--r-- | lib/editor.ml | 6 | ||||
-rw-r--r-- | lib/editorBuffer.ml | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/lib/command.ml b/lib/command.ml index ac1dbf1..2d7b51b 100644 --- a/lib/command.ml +++ b/lib/command.ml | |||
@@ -16,6 +16,7 @@ type operation = | |||
16 | | Erase_after | 16 | | Erase_after |
17 | | Search | 17 | | Search |
18 | | Search_rev | 18 | | Search_rev |
19 | | Goto | ||
19 | 20 | ||
20 | type scope = Line | To_bol | To_eol | Down | Left | Right | Up | 21 | type scope = Line | To_bol | To_eol | Down | Left | Right | Up |
21 | 22 | ||
@@ -75,6 +76,7 @@ let instant_operation = | |||
75 | [ | 76 | [ |
76 | Key 'C'; | 77 | Key 'C'; |
77 | Key 'D'; | 78 | Key 'D'; |
79 | Key 'G'; | ||
78 | Key 'Y'; | 80 | Key 'Y'; |
79 | Key 'J'; | 81 | Key 'J'; |
80 | Key 'n'; | 82 | Key 'n'; |
@@ -92,6 +94,7 @@ let to_op = function | |||
92 | | Key 'c' | Key 'C' -> Change | 94 | | Key 'c' | Key 'C' -> Change |
93 | | Key 'd' | Key 'D' -> Delete | 95 | | Key 'd' | Key 'D' -> Delete |
94 | | Key 'y' | Key 'Y' -> Yank | 96 | | Key 'y' | Key 'Y' -> Yank |
97 | | Key 'G' -> Goto | ||
95 | | Key 'n' -> Search | 98 | | Key 'n' -> Search |
96 | | Key 'N' -> Search_rev | 99 | | Key 'N' -> Search_rev |
97 | | Key 'p' -> Paste_after | 100 | | Key 'p' -> Paste_after |
diff --git a/lib/editor.ml b/lib/editor.ml index 5a68e53..ea2e68a 100644 --- a/lib/editor.ml +++ b/lib/editor.ml | |||
@@ -244,7 +244,7 @@ module Action = struct | |||
244 | | None -> | 244 | | None -> |
245 | let word = word |> Sequence.to_list |> String.of_list in | 245 | let word = word |> Sequence.to_list |> String.of_list in |
246 | set_message (Printf.sprintf "Pattern not found: %s" word) | 246 | set_message (Printf.sprintf "Pattern not found: %s" word) |
247 | | Some (r, c) -> Buffer.Action.goto r c |> on_focused_buffer | 247 | | Some (r, c) -> Buffer.Action.goto ~r ~c |> on_focused_buffer |
248 | 248 | ||
249 | (* Debug *) | 249 | (* Debug *) |
250 | let get_rendered e = (e.rendered, e) | 250 | let get_rendered e = (e.rendered, e) |
@@ -331,6 +331,10 @@ let handle_normal_command c = | |||
331 | | Simple (Ctrl 'U') -> | 331 | | Simple (Ctrl 'U') -> |
332 | let* r, _ = get_terminal_size in | 332 | let* r, _ = get_terminal_size in |
333 | Buffer.Action.move_up ~n:(r / 2) |> on_focused_buffer | 333 | Buffer.Action.move_up ~n:(r / 2) |> on_focused_buffer |
334 | | Shortcut (_, n, Goto) -> ( | ||
335 | match n with | ||
336 | | None -> Buffer.Action.eof |> on_focused_buffer | ||
337 | | Some n -> Buffer.Action.goto ~r:n |> on_focused_buffer) | ||
334 | (* Yank *) | 338 | (* Yank *) |
335 | | Shortcut (r, n, Yank) -> | 339 | | Shortcut (r, n, Yank) -> |
336 | let n = Option.value ~default:1 n - 1 in | 340 | let n = Option.value ~default:1 n - 1 in |
diff --git a/lib/editorBuffer.ml b/lib/editorBuffer.ml index 1f363ef..959c04a 100644 --- a/lib/editorBuffer.ml +++ b/lib/editorBuffer.ml | |||
@@ -145,7 +145,7 @@ module Action = struct | |||
145 | in | 145 | in |
146 | (horizontal left, horizontal right) | 146 | (horizontal left, horizontal right) |
147 | 147 | ||
148 | let goto r c = | 148 | let goto ~r ?(c = 0) = |
149 | let change_content = Zipper.(goto r &> map_focus (goto c)) |> on_content | 149 | let change_content = Zipper.(goto r &> map_focus (goto c)) |> on_content |
150 | and change_rendered = Zipper.goto r |> on_rendered in | 150 | and change_rendered = Zipper.goto r |> on_rendered in |
151 | change_content *> change_rendered | 151 | change_content *> change_rendered |