This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-02-26
Channels
- # aleph (4)
- # announcements (3)
- # babashka (31)
- # beginners (74)
- # bitcoin (7)
- # calva (11)
- # cider (17)
- # clj-kondo (5)
- # clojars (11)
- # clojure (81)
- # clojure-australia (3)
- # clojure-dev (73)
- # clojure-europe (136)
- # clojure-nl (5)
- # clojure-spec (10)
- # clojure-uk (41)
- # clojurescript (30)
- # core-async (1)
- # cursive (19)
- # data-oriented-programming (4)
- # datascript (5)
- # datomic (6)
- # docker (6)
- # emacs (1)
- # figwheel-main (1)
- # fulcro (6)
- # jobs (1)
- # jobs-discuss (17)
- # lsp (23)
- # malli (6)
- # off-topic (35)
- # pathom (2)
- # re-frame (56)
- # reitit (2)
- # rewrite-clj (3)
- # shadow-cljs (10)
- # spacemacs (6)
- # sql (11)
- # vim (16)
- # xtdb (3)
I'm having a bit of trouble recently where I'll select a bit of text, yank it, move somewhere new, and then press p
to paste, and the entire function is pasted in instead
has anyone experienced anything like that before?
it happens rarely enough that i can't pinpoint which plug-in is causing it
you can use :registers
to confirm what was yanked
but it sounds like it's an intermittent thing
interesting, i'll try that, thanks
While we're on the subject of being sure what you yanked, I just stumbled upon this plugin today and installed it, and it's great. It solves a problem I didn't know that I had 😄 https://github.com/machakann/vim-highlightedyank
it's also great when you yanked or cut something a few edits back and want to use it again without undo
yeah, registers are great when you plan ahead, though (aside from the + register) i rarely use them anymore since i started using yankring
the key thing is that previous yanks show up in the registers automatically, though using the paste / undo cycle browses them as well
you don't need to plan ahead for them any more than you do when using the yank ring
looks like something is inserting the whole function def into the *
register, think it has to do with coc.nvim
, but i don't have the time to dig into that, so i'll just use the "
register to stay safe