This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-08-24
Channels
- # adventofcode (2)
- # anglican (1)
- # announcements (4)
- # aws (2)
- # babashka (28)
- # beginners (18)
- # brompton (3)
- # calva (22)
- # clj-kondo (2)
- # cljdoc (29)
- # clojure (41)
- # clojure-europe (28)
- # clojure-gamedev (14)
- # clojure-nl (2)
- # clojure-spec (2)
- # clojure-sweden (1)
- # clojure-uk (6)
- # clojurescript (53)
- # css (3)
- # cursive (6)
- # duct (3)
- # emacs (5)
- # fulcro (29)
- # introduce-yourself (1)
- # liberator (5)
- # lsp (1)
- # malli (11)
- # meander (4)
- # nbb (11)
- # off-topic (17)
- # pathom (2)
- # polylith (8)
- # practicalli (1)
- # react (6)
- # reagent (11)
- # releases (2)
- # rewrite-clj (11)
- # shadow-cljs (59)
- # tools-deps (21)
- # vim (11)
replaying https://vim-adventures.com to polish my vi-fu and was reminded that "b" is a synonym for the "(" text object (on normal keyboards it's much easier to type) - eg.
(foo (|bar baz))
dib -> (foo (|))
(where "|" is cursor)
(foo (|bar baz))
dab -> (foo |)
it's amazing how far utilizing text-objects goes toward having lisp-friendly editing (and the fact that you can combine counts and actions with objects to form complex commands has a nice lispyness IMHO - "lots of operations on a few objects" etc.)
t
for tags is also super useful, sure beats learning a html dsl in your editor
There's more... https://github.com/hgiesel/vim-motion-sickness
iil
(from the vim-motion-sickness) for the current indented block, has become a staple of mine
also vi-adventures is worth the money, especially if you already play puzzle games