Skip to content

Commit

Permalink
Consistently kill line
Browse files Browse the repository at this point in the history
  • Loading branch information
Jell committed Jun 4, 2016
1 parent 321a745 commit 521a133
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion org-trello-cbx.el
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
(let* ((checkbox-title (-> (orgtrello-cbx--read-checkbox)
orgtrello-cbx--checkbox-data))
(updated-property (orgtrello-cbx--make-properties-as-string props))
(text-to-insert (format "%s %s" checkbox-title updated-property)))
(text-to-insert (format "%s %s" checkbox-title updated-property))
(kill-whole-line nil))
(beginning-of-line)
(kill-line)
(insert text-to-insert)
Expand Down

0 comments on commit 521a133

Please sign in to comment.