Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
grierson committed Aug 16, 2023
1 parent d895004 commit 4417205
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion fnl/formedit/wrap.fnl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
(vim.api.nvim_buf_set_text 0 end-row end-col end-row end-col [")"])
(vim.api.nvim_buf_set_text 0 start-row start-col start-row start-col ["( "])
(vim.api.nvim_win_set_cursor 0
[(+ start-row 1) (+ start-col insert-offset 1)])
[(+ start-row 1)
(+ start-col insert-offset 1)])
(vim.api.nvim_feedkeys :i :n true)))

{: head}
1 change: 0 additions & 1 deletion fnl/spec/slurp_spec.fnl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
(h.feedkeys forward-keymap)
(h.expect {:content "(#{1 2})" :cursor [1 1]})))))


(describe "slurp backwards"
(fn []
(before_each (fn []
Expand Down
1 change: 0 additions & 1 deletion fnl/spec/wrap_spec.fnl
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@
(h.setup {:content "(1 (2))" :cursor [1 3]})
(h.feedkeys keymap)
(h.expect {:content "(1 ( (2)))" :cursor [1 4]})))))

0 comments on commit 4417205

Please sign in to comment.