diff options
author | sefidel <contact@sefidel.net> | 2023-02-04 02:03:04 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-02-04 02:03:04 +0900 |
commit | 730aee578ed638fbec4da0c330927069c8eac44b (patch) | |
tree | a26d78d579918d6cf103a5eaf5b0a9635cd6fe54 /fnl | |
parent | 967b2337614056a9e6655da45fd375408492fcb9 (diff) | |
download | nvimrc-730aee578ed638fbec4da0c330927069c8eac44b.tar.gz nvimrc-730aee578ed638fbec4da0c330927069c8eac44b.zip |
feat(events): remove redundant comments
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/events.fnl | 3 |
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)) |