how to set a cyclical search.
if the caret is at the end, when I input the word into the search box, then I knock the key "enter", status bar says "can not find".
this "can not find" will mislead me.(actualy the word is in this file)
2) when selecting multiple lines, I toggle comments. One comment symbol will be added at the begin of every line.
Can I change the default action to do this below:
the lines which already has comment symbol will be un-comment;
the lines which has not comment symbol will be comment.
for example(comment symbol=@):
before:
Code: Select all
not comment
@already comment
after:
Code: Select all
@not comment
already comment