/ 设置 10 秒超时 // 每日统计清 0 runtime_set('todaycomments', 0); runtime_set('todayarticles', 0); runtime_set('todayusers', 0); if ($forumlist) { $fidarr = array(); foreach ($forumlist as $fid => $forum) { $fidarr[] = $forum['fid']; } forum_update($fidarr, array('todayposts' => 0, 'todaythreads' => 0)); } // 清理临时附件 attach_gc(); // 当天24点 $today = strtotime(date('Ymd')) + 86400; runtime_set('cron_2_last_date', $today, TRUE); // 往前推8个小时,尽量保证在前一天 升级过来和采集的数据会很卡 // table_day_cron($time - 8 * 3600); cache_delete('cron_lock_2'); } } } ?>visual studio code - Word-part cursor navigation in search boxes - Stack Overflow|Concepts Of Algorithm

visual studio code - Word-part cursor navigation in search boxes - Stack Overflow

admin2025-04-19  3

I have the following keyboard shortcuts configured in VS Code (v1.97.2):

{
  "key": "ctrl+left",
  "command": "cursorWordPartLeft",
  "when": "textInputFocus"
}
{
  "key": "ctrl+right",
  "command": "cursorWordPartRight",
  "when": "textInputFocus"
}

(plus the related word-part selection commands when adding Shift into the mix - i.e., cursorWordPartRightSelect, cursorWordPartLeftSelect)

When in an editor, or e.g. the Extension search bar, this correctly makes stops within strings that are typedInCamelCase. But in the search/replace bars (both per file and global), no stops are made within such words. Is this intended behavior, a bug, or am I likely to I have some faulty configuration?

I have removed all other shortcuts using ctrl+left/ctrl+right, but no dice.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1745014601a280011.html

最新回复(0)