Skip to content

Commit ae77875

Browse files
authored
Increase sleep for rename to allow chaining (#1469)
The current value of 200ms means chaining consistently doesn't work for me. 300ms seems to fix it consistently. I could add a setting instead, but I still think 300ms is a better default, given it consistently breaks for me ## Checklist - [ ] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [ ] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [ ] I have not broken the cheatsheet
1 parent 4a9d0ec commit ae77875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/actions_simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
# These are actions that we don't wait for, but still want to have a post action sleep
6060
no_wait_actions_post_sleep = {
61-
"rename": 0.2,
61+
"rename": 0.3,
6262
}
6363

6464
mod = Module()

0 commit comments

Comments
 (0)