最近在使用 sublime 的时候发现,不能选择后 Ctrl + F 直接搜索,需要复制到搜索框里才能搜,直接按 Ctrl + F 出来的是上次搜索的词,无论怎么选中其他的都不管用。大家遇到过吗?在 windows 上是好的。。。 mac 上 sublime text 2 和 3 都这样了。。我记得以前不是这样的,不知道我改了什么了。。。
1
zpd2009 OP 好了,搞好了
// If true, the selected text will be copied into the find panel when it's // shown. // On OS X, this value is overridden in the platform specific settings, so // you'll need to place this line in your user settings to override it. "find_selected_text": true, // When auto_find_in_selection is enabled, the "Find in Selection" flag // will be enabled automatically when multiple lines of text are selected "auto_find_in_selection": false, 把"find_selected_text": true,从 setting default 复制到 setting user 就好了。。。 |