For example, vim can quickly select all the content within double quotes through a case like v i ". emacs How to do it? Thank you.
vim
v i "
emacs
emacs Are there any tips worth recommending?
业精于勤,荒于嬉;行成于思,毁于随。
The simple way is to write a macro:
Search forward to "
"
Set mark
Search backward to "
However, it is not very useful, so this is what you need: https://github.com/magnars/expand-region.el
The simple way is to write a macro:
Search forward to
"
Set mark
Search backward to
"
However, it is not very useful, so this is what you need: https://github.com/magnars/expand-region.el