mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 06:58:35 +00:00
fix(diff): "nvim -d" should only diff arglist files #21829
Co-authored-by: 0xadk <0xadk@users.noreply.github.com>
This commit is contained in:
@@ -539,9 +539,11 @@ int main(int argc, char **argv)
|
|||||||
if (params.diff_mode) {
|
if (params.diff_mode) {
|
||||||
// set options in each window for "nvim -d".
|
// set options in each window for "nvim -d".
|
||||||
FOR_ALL_WINDOWS_IN_TAB(wp, curtab) {
|
FOR_ALL_WINDOWS_IN_TAB(wp, curtab) {
|
||||||
|
if (!wp->w_arg_idx_invalid) {
|
||||||
diff_win_options(wp, true);
|
diff_win_options(wp, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Shorten any of the filenames, but only when absolute.
|
// Shorten any of the filenames, but only when absolute.
|
||||||
shorten_fnames(false);
|
shorten_fnames(false);
|
||||||
|
Reference in New Issue
Block a user