Skip to content

Instantly share code, notes, and snippets.

@duff
Created October 7, 2010 19:10
Show Gist options
  • Select an option

  • Save duff/615695 to your computer and use it in GitHub Desktop.

Select an option

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.
@duff

duff commented Oct 7, 2010

Copy link
Copy Markdown
Author

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
Copy Markdown

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
Copy Markdown

@duff

duff commented Oct 7, 2010

Copy link
Copy Markdown
Author

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

duff commented Oct 7, 2010

Copy link
Copy Markdown
Author

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

@dotemacs

dotemacs commented Oct 8, 2010

Copy link
Copy Markdown

@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