Skip to content

Commit

Permalink
Merge pull request guillermooo#816 from my-personal-forks/fix-815-b-a…
Browse files Browse the repository at this point in the history
…s-text-object

fix guillermooo#815: 'b' as text object
  • Loading branch information
guillermooo committed Jan 23, 2015
2 parents 4a4b7a3 + e295585 commit 43cf37a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vi/text_objects.py
Expand Up @@ -60,11 +60,12 @@
'}': (('\\{', '\\}'), BRACKET),
'<': (('<', '>'), BRACKET),
'>': (('<', '>'), BRACKET),
'b': (('\\(', '\\)'), BRACKET),
'p': (None, PARAGRAPH),
's': (None, SENTENCE),
't': (None, TAG),
'w': (None, WORD),
'W': (None, BIG_WORD),
's': (None, SENTENCE),
'p': (None, PARAGRAPH),
'w': (None, WORD),
}


Expand Down

0 comments on commit 43cf37a

Please sign in to comment.