Skip to content

Instantly share code, notes, and snippets.

@duff
Created October 7, 2010 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duff/615695 to your computer and use it in GitHub Desktop.
Save duff/615695 to your computer and use it in GitHub Desktop.
In your editor of choice,
Convert the following line:
context "when the transaction is successful", :focused => true do
To:
context "when the transaction is successful" do
Assume the cursor is on the comma.
@jjthrash
Copy link

jjthrash commented Oct 7, 2010

Well, assuming the cursor wasn't on the comma. Just wrote what sprang to mind.

@duff
Copy link
Author

duff commented Oct 7, 2010

Austin - I (like many people) use , as . I don't think that would confuse it, would it?

lojic - I dig it. Thanks!

@duff
Copy link
Author

duff commented Oct 7, 2010

jjthrash - dtd would delete up to the first d, right?

@austintaylor
Copy link

Shadowing is only a problem for prefixes. Since text objects are always prefixed with an action, they essentially have their own key space.

@duff
Copy link
Author

duff commented Oct 7, 2010

austin - excellent. I wonder if a plugin would be a good way to distribute it. Also wonder if your cool indent text object could be in a plugin to pull it out of my .vimrc.

@jjthrash
Copy link

jjthrash commented Oct 7, 2010

D'oh. That's why I often use visual mode so I don't have to think. Counting words doesn't work.

I might also do:
dtd.
after I noticed I didn't actually delete to the d that I wanted. :) I love the period operator.

@duff
Copy link
Author

duff commented Oct 7, 2010

Jimmy - Yup. I use visual mode a bunch as well. I learned the / trick when deleting something on the same line from @spicycode. It's nice because it acts a bit like visual mode and works even if there's more than one of the thing you're looking for (since you can keep typing what you're looking at and it'll eventually be highlighted).

I haven't done much counting of things either, but I'm going to experiment with the WORD counting a bit since I haven't tried it. I'm wondering if my brain'll just know how many WORDS there are (when there's only a few).

@austintaylor
Copy link

My first pass at the text object: http://github.com/austintaylor/vim-commaobject

It handles the case you show (da, will work anywhere between the comma, and the end), but it's still pretty easy to confuse it with nested lists. There's a list of caveats in the readme.

@austintaylor
Copy link

@duff
Copy link
Author

duff commented Oct 7, 2010

NICE. Your indent object plugin helped me delete a ton of stuff. I love it.

http://github.com/duff/dot_vim_directory/commit/2cb175deaa1f6a6a10e0dad26292a0b6d4e59424

@duff
Copy link
Author

duff commented Oct 7, 2010

Austin - OK. The commaobject is outstanding. I just sent you a pull request.

@dotemacs
Copy link

dotemacs commented Oct 8, 2010

@lojic even simpler:

M-d M-d

Thats 3 key presses too, meta held down

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment