about summary refs log tree commit diff
path: root/fnl/nvrc/events.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-02-04 02:03:04 +0900
committersefidel <contact@sefidel.net>2023-02-04 02:03:04 +0900
commit730aee578ed638fbec4da0c330927069c8eac44b (patch)
treea26d78d579918d6cf103a5eaf5b0a9635cd6fe54 /fnl/nvrc/events.fnl
parent967b2337614056a9e6655da45fd375408492fcb9 (diff)
downloadnvimrc-730aee578ed638fbec4da0c330927069c8eac44b.tar.gz
nvimrc-730aee578ed638fbec4da0c330927069c8eac44b.zip
feat(events): remove redundant comments
Diffstat (limited to 'fnl/nvrc/events.fnl')
-rw-r--r--fnl/nvrc/events.fnl3
1 files changed, 0 insertions, 3 deletions
diff --git a/fnl/nvrc/events.fnl b/fnl/nvrc/events.fnl
index 2809ba4..64559dd 100644
--- a/fnl/nvrc/events.fnl
+++ b/fnl/nvrc/events.fnl
@@ -13,17 +13,14 @@
 ;; (ag! restore-cursor
 ;;           (au! VimLeave * (set! guicursor ["a:ver75-blinkon0"])))
 
-; Restore the last cursor line
 (ag! restore-last-cursor-line
           (au! BufReadPost * (if (and (> (line "'\"") 1)
                                        (<= (line "'\"") (line "$")))
                                   (cmd! "normal! g`\""))))
 
-; Resize splits on window resize
 (ag! resize-splits-on-resize
           (au! VimResized * "wincmd ="))
 
-;; Read file when it changes on disk
 (ag! read-file-on-disk-change
           (au! [FocusGained BufEnter CursorHold CursorHoldI] *
                     (if (and (not= :c (mode))