Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation about #1634 #1652

Merged
merged 3 commits into from
Jan 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions website/docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,15 @@

- If you recieve errors complaining about DRI3 settings, please reference issue
[#44](https://github.com/neovide/neovide/issues/44#issuecomment-578618052).

- If your scroling is very stutter

- Add flag "--novsync" before startup as a quickfix.
fecet marked this conversation as resolved.
Show resolved Hide resolved
- Check if the value of `g:neovide_refresh_rate` and the refresh rate of your monitor are matched.

If your `g:neovide_refresh_rate` is correct, then check if you are using dual monitors with mixed refresh rate, say `144` and `60`, if so, that's because [PSA: X11 does support mixed refresh rate monitors!](https://www.reddit.com/r/linux/comments/yaatyo/psa_x11_does_support_mixed_refresh_rate_monitors/) and X11 force it to the lower one, you can set
```
export __GL_SYNC_DISPLAY_DEVICE=DP-0
fecet marked this conversation as resolved.
Show resolved Hide resolved
```
before starting neovide, where `DP-0` is the monitor with high refresh rate.